mirror of
https://github.com/tsl0922/EPD-nRF5.git
synced 2026-03-15 11:23:17 +08:00
12 lines
184 B
C
12 lines
184 B
C
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t timestamp(void);
|
|
void set_timestamp(uint32_t timestamp);
|
|
void sleep_mode_enter(void);
|
|
void app_feed_wdt(void);
|
|
|
|
#endif
|