ESP8266_RTOS_SDK
v1.4.0
|
misc APIs More...
Data Structures | |
struct | dhcps_lease |
Macros | |
#define | MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5] |
#define | MACSTR "%02x:%02x:%02x:%02x:%02x:%02x" |
#define | IP2STR(ipaddr) |
#define | IPSTR "%d.%d.%d.%d" |
Enumerations | |
enum | dhcp_status { DHCP_STOPPED, DHCP_STARTED } |
enum | dhcps_offer_option { OFFER_START = 0x00, OFFER_ROUTER = 0x01, OFFER_END } |
Functions | |
void | os_delay_us (uint16 us) |
Delay function, maximum value: 65535 us. More... | |
void | os_install_putc1 (void(*p)(char c)) |
Register the print output function. More... | |
void | os_putc (char c) |
Print a character. Start from from UART0 by default. More... | |
misc APIs
#define IP2STR | ( | ipaddr | ) |
enum dhcp_status |
enum dhcps_offer_option |
void os_delay_us | ( | uint16 | us | ) |
Delay function, maximum value: 65535 us.
uint16 | us : delay time, uint: us, maximum value: 65535 us |
void os_install_putc1 | ( | void(*)(char c) | p | ) |
Register the print output function.
void(*p)(char | c) - pointer of print function |
void os_putc | ( | char | c | ) |
Print a character. Start from from UART0 by default.
char | c - character to be printed |