Compare commits
No commits in common. "c4f18c671275fbc3dd8bc3dd6afa7168dc03d1ab" and "e8a133c627c818ae1bb3531e1881c704140b9c84" have entirely different histories.
c4f18c6712
...
e8a133c627
|
@ -171,9 +171,6 @@ void setup()
|
|||
Wire.setClock(400000);
|
||||
#endif
|
||||
io_begin();
|
||||
#ifdef VIRTUAL_INTERRUPT_PRELOAD
|
||||
virtual_interrupt_preload();
|
||||
#endif
|
||||
eeprom_retrieve_init();
|
||||
user_pre_init();
|
||||
#ifdef ENABLE_INTERNAL_LCD
|
||||
|
@ -2189,9 +2186,3 @@ bool dac_get_state(int id)
|
|||
}
|
||||
|
||||
#endif
|
||||
|
||||
void virtual_interrupt_preload() {
|
||||
for (int i = 0; i < 16; i++) {
|
||||
virtual_interupt_state[i] = ESPMega_digitalRead(virtual_interrupt_pins[i]);
|
||||
}
|
||||
}
|
|
@ -46,7 +46,6 @@
|
|||
void mqtt_callback(char* topic, byte* payload, unsigned int length);
|
||||
void virtual_interrupt_loop();
|
||||
void virtual_interrupt_callback(int pin, int state);
|
||||
void virtual_interrupt_preload();
|
||||
void network_begin();
|
||||
void mqtt_connect();
|
||||
void mqtt_subscribe();
|
||||
|
|
|
@ -15,9 +15,6 @@
|
|||
//#define OVERCLOCK_FM
|
||||
//#define OVERCLOCK_FM2
|
||||
|
||||
// I/O Configuration
|
||||
#define VIRTUAL_INTERRUPT_PRELOAD // Preload Virtual Interrupts buffer
|
||||
|
||||
// Enable Software Module(s)
|
||||
#define ENABLE_INTERNAL_LCD
|
||||
#define ENABLE_IR_MODULE
|
||||
|
|
Loading…
Reference in New Issue