Finally external files working

This commit is contained in:
Florian Hoss 2022-07-25 16:01:07 +02:00
parent 2d36e41641
commit 0422eeeb9a
6 changed files with 31 additions and 28 deletions

7
ESPTest/src/lwip_hooks.c Normal file
View file

@ -0,0 +1,7 @@
#include "lwip_hooks.h"
int lwip_hook_ip4_input(struct pbuf *pbuf, struct netif *input_netif)
{
ESP_LOGI("Hook", "Testing...");
return 0;
}