2024-05-13 15:21:22 +03:00
|
|
|
#include "../bsp/bsp.h"
|
2024-06-10 18:46:02 +03:00
|
|
|
#include "app.h"
|
2024-05-13 15:21:22 +03:00
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2024-05-15 02:15:03 +03:00
|
|
|
boardInit();
|
2024-05-13 15:21:22 +03:00
|
|
|
udpServer_init();
|
|
|
|
while (1)
|
|
|
|
{
|
2024-06-10 13:56:17 +03:00
|
|
|
lwipProcess();
|
2024-06-11 20:47:55 +03:00
|
|
|
app();
|
2024-05-13 15:21:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemClock_Config()
|
|
|
|
{
|
|
|
|
SystemCoreClock = 180000000;
|
|
|
|
}
|
|
|
|
|