stm32_serDes_protobuf_project/app/app.c
2024-05-04 17:20:57 +03:00

14 lines
166 B
C

#include "app.h"
void app() {
init_LWIP();
while(1) {
process_LWIP();
// GPIO_ToggleBits(GPIOB, GPIO_Pin_7);
delay(400);
};
}