HiIm trying to set the speed for ethernet to 10Mbps, usingHAL_ETH_SetMACConfig()static void MX_ETH_Init(void)
{
/* USER CODE BEGIN ETH_Init 0 */
/* USER CODE END ETH_Init 0 */
static uint8_t MACAddr[6];
/* USER CODE BEGIN ETH_Init 1 */
...
HiReading this post https://community.st.com/t5/stm32-mcus-security/x-cube-azure-h7-hw-cryptographic-acceleration/m-p/634818/highlight/true#M6417 it seems like ST employee is saying STM chips will not support Azure RTOS going forward? Has any decisio...
Hi
I'm trying to setup TLSv1.3 using STM32H63 Nucleo board. I followed the steps in https://github.com/eclipse-threadx/rtos-docs/blob/main/rtos-docs/netx-duo/netx-duo-secure-tls/chapter3.md to enable TLSv1.3 in STM32CubeMX. But all I get from the Ope...
I was able to get the speed to 10Mbps by modifyingstatic VOID _nx_driver_enable(NX_IP_DRIVER *driver_req_ptr) in nx_stm32_eth_driver.cif (nx_eth_phy_init() != ETH_PHY_STATUS_OK)
{
driver_req_ptr -> nx_ip_driver_status = NX_DRIVER_ERROR;
re...
I found nx_eth_phy_set_link_state() which sets the speed. But not sure where to call it from. Calling it in _nx_driver_enable() sets the link down for some reason. Is there no way to set this in CubeMX ?
HiThanks for the reply. Why should the NIC on the PC be set to 10Mbps? Shouldn't the device auto negotiate by itself to 10Mbps after MACConfig is set? Maybe I'm wrong but wouldn't this situation work:Ethernet NIC on PC (Auto Negotiate) <-> STM32H5 (1...
Hi thanks for the reply but this reply from ST employee sounded different to me@Bubbleswould you mind adding some information you have?The thing is I'm looking for hardware support for TLS crypto in STM32H573 series and wondering how this will be goi...