We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ae721f4 + af52fb2 commit 2ce10acCopy full SHA for 2ce10ac
2 files changed
Firmware/Behavior/app.c
@@ -36,7 +36,7 @@ void hwbp_app_initialize(void)
36
uint8_t hwH = 2;
37
uint8_t hwL = 0;
38
uint8_t fwH = 3;
39
- uint8_t fwL = 2;
+ uint8_t fwL = 3;
40
uint8_t ass = 0;
41
42
/* Start core */
Firmware/Behavior/app_funcs.c
@@ -217,6 +217,7 @@ void app_read_REG_PORT_DIS(void)
217
app_regs.REG_PORT_DIS = (read_POKE0_IR) ? B_DI0 : 0;
218
app_regs.REG_PORT_DIS |= (read_POKE1_IR) ? B_DI1 : 0;
219
app_regs.REG_PORT_DIS |= (read_POKE2_IR) ? B_DI2 : 0;
220
+ app_regs.REG_PORT_DIS |= (read_DI3) ? B_DI3 : 0;
221
}
222
bool app_write_REG_PORT_DIS(void *a) { return false; }
223
0 commit comments