stm32_serDes_protobuf_project/app/app.c
2024-05-02 17:19:55 +03:00

17 lines
285 B
C

#include "app.h"
void app() {
init_LWIP();
while(1) {
// process_LWIP();
uint32_t regvalue = 0;
HAL_ETH_ReadPHYRegister(getEthStruct(), 1, &regvalue);
delay(500);
printf("Test: %d\r\n", regvalue);
// process_LWIP();
};
}