SpriteHTTPD - embedded HTTP server with read-only filesystem and templating, originally developed for ESP8266, now stand-alone and POSIX compatible.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
spritehttpd/spritehttpd/todo/uptime.h

22 lines
408 B

#ifndef UPTIME_H
#define UPTIME_H
#include <esp8266.h>
extern volatile uint32_t uptime;
/**
* Initialize the virtual timer for uptime counter.
*/
void uptime_timer_init(void);
/**
* Print uptime to a buffer in user-friendly format.
* Should be at least 20 bytes long.
*/
void uptime_str(char *buf);
/** Print uptime to stdout in user-friendly format */
void uptime_print(void);
#endif // UPTIME_H