mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 08:06:46 +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
11 lines
285 B
C
11 lines
285 B
C
#include <Arduino.h>
|
|
|
|
#define TRANSPORT_USB 0
|
|
#define TRANSPORT_TCP 1
|
|
|
|
#ifdef HAS_USB
|
|
void usbFlasherTask(void* parameter);
|
|
#endif
|
|
void flasherDataHandler(uint8_t* data, size_t len, uint8_t transportType);
|
|
void processFlasherCommand(struct flasherCommand* cmd, uint8_t transportType);
|