mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-26 11:07:51 +01:00
13 lines
382 B
C
13 lines
382 B
C
#include <Arduino.h>
|
|
|
|
// how long the we should keep the transfer metadata
|
|
#define PENDING_TIMEOUT 24 * 3600
|
|
// this determines how long images will be cached;
|
|
#define PENDING_DATA_TIMEOUT 60
|
|
// maximum time (in minutes) that a tag is put to sleep if no update is expected.
|
|
#define MIN_RESPONSE_TIME 10
|
|
|
|
// flasher options
|
|
#define CUSTOM_MAC_HDR 0x0000
|
|
|
|
#define MAX_WRITE_ATTEMPTS 5 |