mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
19 lines
311 B
C
19 lines
311 B
C
// Common platform functions
|
|
|
|
#ifndef __COMMON_H__
|
|
#define __COMMON_H__
|
|
|
|
#include "platform.h"
|
|
|
|
// Functions exported by the common platform layer
|
|
void cmn_platform_init(void);
|
|
|
|
// Timer-specific functions
|
|
|
|
// System timer generic implemenation
|
|
|
|
// Filesystem-related functions
|
|
|
|
#endif // #ifndef __COMMON_H__
|
|
|