mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-09-21 16:23:43 +08:00
Start implementing unit tests for timers
This commit is contained in:
@@ -42,14 +42,16 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
u32_t lwip_sys_now;
|
||||
|
||||
u32_t sys_jiffies(void)
|
||||
{
|
||||
return (u32_t)0; /* todo */
|
||||
return lwip_sys_now;
|
||||
}
|
||||
|
||||
u32_t sys_now(void)
|
||||
{
|
||||
return (u32_t)0; /* todo */
|
||||
return lwip_sys_now;
|
||||
}
|
||||
|
||||
void sys_init(void)
|
||||
|
||||
Reference in New Issue
Block a user