Files
OpenEPaperLink/zbs243_AP_FW/board/boardCommon.h
2023-03-23 09:51:50 +01:00

21 lines
405 B
C

#ifndef _BOARD_COMMON_H_
#define _BOARD_COMMON_H_
#include <stdint.h>
#pragma callee_saves powerPortsDownForSleep
void powerPortsDownForSleep(void);
#pragma callee_saves boardInit
void boardInit(void);
//early - before most things
#pragma callee_saves boardInitStage2
void boardInitStage2(void);
//late, after eeprom
#pragma callee_saves boardInit
__bit boardGetOwnMac(uint8_t __xdata *mac);
#endif