stm32_serDes_protobuf_project/app/main.c

21 lines
231 B
C

#include "../bsp/bsp.h"
#include "app.h"
int main(void)
{
boardInit();
udpServer_init();
while (1)
{
lwipProcess();
app();
}
}
void SystemClock_Config()
{
SystemCoreClock = 180000000;
}