17 lines
285 B
C
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, ®value);
|
|
delay(500);
|
|
printf("Test: %d\r\n", regvalue);
|
|
// process_LWIP();
|
|
};
|
|
}
|
|
|