STM32H7_PTP Connection through Ethernet
Hello,
I have managed to generate a IP through the LWIP in the STM32 IDE and establish a connection via Ethernet, although now when I upload the files from hasseb/stm32h7_atsame70_ptpd: IEEE 1588 PTP daemon for STM32H7 and ATSAME70 (github.com)
I seem to have a large portion of the code in the main.c file greyed out.
As well, I'm not sure if it is concerning that there is a warning saying "_gettimeofday is not implemented and will always fail". I found some documentation stating this is not too much of a concern, as it's only a warning and not an Error.
Furthermore, I have tried getting an output using this function just as a test and no luck:
__weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority)
{
/*configuring the SysTick to have an interrupt in 1ms time basis*/
HAL_SYSTICK_Config(SystemCoreClock /1000);
/*Configure the SysTick IRQ priority */
HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority ,0);
/* Return function status */
return HAL_OK;
}
Thank you!
