/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file app_netxduo.c * @author MCD Application Team * @brief NetXDuo applicative file ****************************************************************************** * @attention * * Copyright (c) 2024 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ /* USER CODE END Header */ /* Includes ------------------------------------------------------------------*/ #include "app_netxduo.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ #include "main.h" /* USER CODE END Includes */ /* Private typedef -----------------------------------------------------------*/ /* USER CODE BEGIN PTD */ /* USER CODE END PTD */ /* Private define ------------------------------------------------------------*/ /* USER CODE BEGIN PD */ #define PRINT_IP_ADDRESS(addr) do { \ printf("STM32 %s: %lu.%lu.%lu.%lu \n", #addr, \ (addr >> 24) & 0xff, \ (addr >> 16) & 0xff, \ (addr >> 8) & 0xff, \ (addr & 0xff)); \ } while(0) /* USER CODE END PD */ /* Private macro -------------------------------------------------------------*/ /* USER CODE BEGIN PM */ /* USER CODE END PM */ /* Private variables ---------------------------------------------------------*/ TX_THREAD NxAppThread; NX_PACKET_POOL NxAppPool; NX_IP NetXDuoEthIpInstance; /* USER CODE BEGIN PV */ NX_UDP_SOCKET UDPSocket; ULONG IpAddress; ULONG NetMask; extern UART_HandleTypeDef huart3; /* USER CODE END PV */ /* Private function prototypes -----------------------------------------------*/ static VOID nx_app_thread_entry (ULONG thread_input); /* USER CODE BEGIN PFP */ /* USER CODE END PFP */ /** * @brief Application NetXDuo Initialization. * @param memory_ptr: memory pointer * @retval int */ UINT MX_NetXDuo_Init(VOID *memory_ptr) { UINT ret = NX_SUCCESS; TX_BYTE_POOL *byte_pool = (TX_BYTE_POOL*)memory_ptr; /* USER CODE BEGIN App_NetXDuo_MEM_POOL */ (void)byte_pool; /* USER CODE END App_NetXDuo_MEM_POOL */ /* USER CODE BEGIN 0 */ /* USER CODE END 0 */ /* Initialize the NetXDuo system. */ CHAR *pointer; nx_system_initialize(); /* Allocate the memory for packet_pool. */ if (tx_byte_allocate(byte_pool, (VOID **) &pointer, NX_APP_PACKET_POOL_SIZE, TX_NO_WAIT) != TX_SUCCESS) { return TX_POOL_ERROR; } /* Create the Packet pool to be used for packet allocation, * If extra NX_PACKET are to be used the NX_APP_PACKET_POOL_SIZE should be increased */ ret = nx_packet_pool_create(&NxAppPool, "NetXDuo App Pool", DEFAULT_PAYLOAD_SIZE, pointer, NX_APP_PACKET_POOL_SIZE); if (ret != NX_SUCCESS) { return NX_POOL_ERROR; } /* Allocate the memory for Ip_Instance */ if (tx_byte_allocate(byte_pool, (VOID **) &pointer, Nx_IP_INSTANCE_THREAD_SIZE, TX_NO_WAIT) != TX_SUCCESS) { return TX_POOL_ERROR; } /* Create the main NX_IP instance */ ret = nx_ip_create(&NetXDuoEthIpInstance, "NetX Ip instance", NX_APP_DEFAULT_IP_ADDRESS, NX_APP_DEFAULT_NET_MASK, &NxAppPool, nx_stm32_eth_driver, pointer, Nx_IP_INSTANCE_THREAD_SIZE, NX_APP_INSTANCE_PRIORITY); if (ret != NX_SUCCESS) { return NX_NOT_SUCCESSFUL; } /* Allocate the memory for ARP */ if (tx_byte_allocate(byte_pool, (VOID **) &pointer, DEFAULT_ARP_CACHE_SIZE, TX_NO_WAIT) != TX_SUCCESS) { return TX_POOL_ERROR; } /* Enable the ARP protocol and provide the ARP cache size for the IP instance */ /* USER CODE BEGIN ARP_Protocol_Initialization */ /* USER CODE END ARP_Protocol_Initialization */ ret = nx_arp_enable(&NetXDuoEthIpInstance, (VOID *)pointer, DEFAULT_ARP_CACHE_SIZE); if (ret != NX_SUCCESS) { return NX_NOT_SUCCESSFUL; } /* Enable the ICMP */ /* USER CODE BEGIN ICMP_Protocol_Initialization */ /* USER CODE END ICMP_Protocol_Initialization */ ret = nx_icmp_enable(&NetXDuoEthIpInstance); if (ret != NX_SUCCESS) { return NX_NOT_SUCCESSFUL; } /* Enable TCP Protocol */ /* USER CODE BEGIN TCP_Protocol_Initialization */ /* USER CODE END TCP_Protocol_Initialization */ ret = nx_tcp_enable(&NetXDuoEthIpInstance); if (ret != NX_SUCCESS) { return NX_NOT_SUCCESSFUL; } /* Enable the UDP protocol required for DHCP communication */ /* USER CODE BEGIN UDP_Protocol_Initialization */ /* USER CODE END UDP_Protocol_Initialization */ ret = nx_udp_enable(&NetXDuoEthIpInstance); if (ret != NX_SUCCESS) { return NX_NOT_SUCCESSFUL; } /* Allocate the memory for main thread */ if (tx_byte_allocate(byte_pool, (VOID **) &pointer, NX_APP_THREAD_STACK_SIZE, TX_NO_WAIT) != TX_SUCCESS) { return TX_POOL_ERROR; } /* Create the main thread */ ret = tx_thread_create(&NxAppThread, "NetXDuo App thread", nx_app_thread_entry , 0, pointer, NX_APP_THREAD_STACK_SIZE, NX_APP_THREAD_PRIORITY, NX_APP_THREAD_PRIORITY, TX_NO_TIME_SLICE, TX_AUTO_START); if (ret != TX_SUCCESS) { return TX_THREAD_ERROR; } /* USER CODE BEGIN MX_NetXDuo_Init */ /* USER CODE END MX_NetXDuo_Init */ return ret; } /** * @brief Main thread entry. * @param thread_input: ULONG user argument used by the thread entry * @retval none */ static VOID nx_app_thread_entry (ULONG thread_input) { /* USER CODE BEGIN Nx_App_Thread_Entry 0 */ UINT ret; ULONG bytes_read; UCHAR data_buffer[512]; NX_PACKET *data_packet; /* * Print IPv4 */ ret = nx_ip_address_get(&NetXDuoEthIpInstance, &IpAddress, &NetMask); if (ret != TX_SUCCESS) { Error_Handler(); } else { PRINT_IP_ADDRESS(IpAddress); } /* * Create a UDP Socket and bind to it */ ret = nx_udp_socket_create(&NetXDuoEthIpInstance, &UDPSocket, "UDP Server Socket", NX_IP_NORMAL, NX_FRAGMENT_OKAY, NX_IP_TIME_TO_LIVE, 512); if (ret != NX_SUCCESS) { Error_Handler(); } /* Bind to port 6000 */ ret = nx_udp_socket_bind(&UDPSocket, 6000, TX_WAIT_FOREVER); if (ret != NX_SUCCESS) { Error_Handler(); } else { printf("UDP Server listening on PORT 6000.. \r\n"); } /* * Main Task Loop * Waits 1 second (100 centiseconds) for each UDP packet. If received, print out message */ while (1) { TX_MEMSET(data_buffer, '\0', sizeof(data_buffer)); /* wait for data for 1 sec */ ret = nx_udp_socket_receive(&UDPSocket, &data_packet, 100); if (ret == NX_SUCCESS) { nx_packet_data_retrieve(data_packet, data_buffer, &bytes_read); /* Print our received data on UART com port*/ HAL_UART_Transmit(&huart3, (uint8_t *)data_buffer, bytes_read, 0xFFFF); printf("\r\n"); // new line to make print out more readable } } /* USER CODE END Nx_App_Thread_Entry 0 */ } /* USER CODE BEGIN 1 */ /* USER CODE END 1 */