btstack/platform/lwip/sys_arch.c
Matthias Ringwald 97dc5e692c new pan_lwip_http_server example
- add lwIP sources commit b3a939417 (after STABLE-2.1.1) as 3rd-party/lwip/core
- add small DHCP server as 3rd-party/lwip/dhcp-server
- add BNEP lwIP adapter that handles BNEP events and forwards packets between BNEP and lwIP (only tested for NO_SYS == 1)
- add pan_lwip_http_server example that provides lwIP http server on http://192.168.7.1
- example is added to port/libusb
2019-06-07 16:57:00 +02:00

24 lines
296 B
C

/* lwIP includes. */
#include "lwip/debug.h"
#include "lwip/def.h"
#include "lwip/sys.h"
#include "lwip/mem.h"
#include "lwip/stats.h"
#include "btstack_run_loop.h"
u32_t
sys_now(void){
return btstack_run_loop_get_time_ms();
}
#if 0
void
sys_init(void)
{
}
u32_t
sys_jiffies(void){
}
#endif