force check and failures

This commit is contained in:
Sergio R. Caprile 2023-02-27 10:54:32 -03:00
parent 112bd61a25
commit 4e7584167b
2 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ int main(void) {
.mask = mg_htonl(MG_U32(255, 255, 255, 0)), .mask = mg_htonl(MG_U32(255, 255, 255, 0)),
.enable_dhcp_server = true, .enable_dhcp_server = true,
.driver = &driver, .driver = &driver,
.queue.len = 4096}; .recv_queue.size = 4096};
s_ifp = &mif; s_ifp = &mif;
mg_tcpip_init(&mgr, &mif); mg_tcpip_init(&mgr, &mif);
mg_timer_add(&mgr, 500, MG_TIMER_REPEAT, blink_cb, &mgr); mg_timer_add(&mgr, 500, MG_TIMER_REPEAT, blink_cb, &mgr);

View File

@ -64,8 +64,8 @@ struct mg_tcpip_spi {
#if MG_ENABLE_TCPIP #if MG_ENABLE_TCPIP
#if !defined(MG_ENABLE_DRIVER_STM32H) && !defined(MG_ENABLE_DRIVER_TM4C) #if !defined(MG_ENABLE_DRIVER_STM32H) && !defined(MG_ENABLE_DRIVER_TM4C)
#define MG_ENABLE_DRIVER_STM32 1 #define MG_ENABLE_DRIVER_STM32 1
#else #else
#define MG_ENABLE_DRIVER_STM32 0 #define MG_ENABLE_DRIVER_STM32 0
#endif #endif
#endif #endif