Files
ch32v203-eth-node/include/system_init.h
2024-11-11 01:31:19 +06:00

12 lines
157 B
C

#ifndef SYSTEM_INIT_H
#define SYSTEM_INIT_H
#include <stdbool.h>
#define W5500_INIT_DELAY_MS 55
void init_system(void);
bool wait_for_dhcp(void);
#endif