2015-04-30 04:00:03 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 -2014 Espressif System
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ESP_MISC_H__
|
|
|
|
#define __ESP_MISC_H__
|
|
|
|
|
|
|
|
#include "lwip/ip_addr.h"
|
|
|
|
|
|
|
|
#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) ip4_addr1_16(ipaddr), \
|
|
|
|
ip4_addr2_16(ipaddr), \
|
|
|
|
ip4_addr3_16(ipaddr), \
|
|
|
|
ip4_addr4_16(ipaddr)
|
|
|
|
|
|
|
|
#define IPSTR "%d.%d.%d.%d"
|
|
|
|
|
2015-05-30 09:11:04 +00:00
|
|
|
void sdk_os_delay_us(uint16_t us);
|
2015-04-30 04:00:03 +00:00
|
|
|
|
2015-05-30 09:11:04 +00:00
|
|
|
void sdk_os_install_putc1(void (*p)(char c));
|
|
|
|
void sdk_os_putc(char c);
|
2015-04-30 04:00:03 +00:00
|
|
|
|
|
|
|
#endif
|