mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-02 23:29:49 +01:00
components: lwip/tcpip_adapter/freertos/esp32
Replace os_printf with printf
This commit is contained in:
@@ -88,8 +88,8 @@ bool dhcp_search_ip_on_mac(u8_t *mac, ip4_addr_t *ip);
|
||||
#define DHCPS_DEBUG 1
|
||||
#if DHCPS_DEBUG
|
||||
#define log_info(message, ...) do { \
|
||||
os_printf((message), ##__VA_ARGS__); \
|
||||
os_printf("\n"); \
|
||||
printf((message), ##__VA_ARGS__); \
|
||||
printf("\n"); \
|
||||
} while(0);
|
||||
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user