This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/ext/picotcp/test/dummy.c

13 lines
209 B
C
Raw Normal View History

#include "pico_stack.h"
#if defined(PICO_SUPPORT_RTOS) || defined (PICO_SUPPORT_PTHREAD)
volatile uint32_t pico_ms_tick;
#endif
int main(void)
{
pico_stack_init();
pico_stack_tick();
return 0;
}