mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 16:06:54 +01:00
- added webinterface for tag flasher - added tcp transport for communicating with tag flasher (OTG USB also still works) - added content 'timestamp', makes use of preloaded images and buttons on the 2.9" M3 - webinterface is now aware of C6 and flasher capabilities - AP can run without ieee801.15.4 radio (i.e. flasher only) by shorting FLASHER_AP_TXD and FLASHER_AP_RXD - added tcp transport option to OEPL-Flasher.py (serial also still works) - added new environment OpenEPaperLink_Mini_AP_v4 - lots of finetuning and bug fixes
16 lines
410 B
C
16 lines
410 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_WRITE_ATTEMPTS 5 |