Files
OpenEPaperLink/ESP32_AP-Flasher/include/settings.h
Nic Limper 59e2a5eeb8 Various fixes
- bugfix not recognizing identical image
https://github.com/jjwbruijn/OpenEPaperLink/issues/255
- Count number of updates
https://github.com/jjwbruijn/OpenEPaperLink/issues/247
- Optionally align interval of RSS/calendar/etc
https://github.com/jjwbruijn/OpenEPaperLink/issues/106
2024-03-18 16:39:44 +01:00

17 lines
439 B
C

#include <Arduino.h>
#define FLASHER_AP_PORT 0
#ifdef HAS_EXT_FLASHER
#define FLASHER_EXT_PORT 1
#define FLASHER_ALTRADIO_PORT 2
#endif
// Which port we should use for the AP process
// (useful for testing, can only be FLASHER_AP_PORT for any other board than the OpenEPaperLinkPCB board)
#define AP_PROCESS_PORT FLASHER_AP_PORT
// flasher options
#define CUSTOM_MAC_HDR 0x0000
#define MAX_XFER_ATTEMPTS 20
#define MAX_WRITE_ATTEMPTS 5