Initial commit

This commit is contained in:
Michael Smith
2018-03-09 14:21:54 +01:00
commit c3ff7276a9
28 changed files with 8779 additions and 0 deletions

13
user/sys_time.h Normal file
View File

@@ -0,0 +1,13 @@
#include "c_types.h"
// returns time until boot in us
uint64_t ICACHE_FLASH_ATTR
get_long_systime();
// returns lower half of time until boot in us
uint64_t ICACHE_FLASH_ATTR
get_low_systime();
// initializes the timer
void
init_long_systime();