How can we enable C++ language development on the AzureRTOS RZ/A1H IAR sample project?
We have a similar question, but in addition, we are trying to build a development environment based on the AzureRTOS RZ/A1H IAR sample project, and we would like to be able to develop in C++ in that environment as well. The sample project we…
Azure RTOS
Developer technologies | C++
AzureRTOS(ThreadX) TX_ENABLE_IAR_LIBRARY_SUPPORT compile option
It seems that ThreadX of Azure RTOS has a compile option called "TX_ENABLE_IAR_LIBRARY_SUPPORT". Let me ask you a few questions about that. What is the effect of enabling this? Also, are there any conditions or restrictions when using…
Azure RTOS
FileX: "_fx_ram_driver" for atsame54 xplained pro
Hi. I was wondering if anyone has implemented the FileX api using the same54p20a xplained pro device. I want to run the demo application example but I dont know how to go about defining a function for the _fx_ram_driver. Guides, links, examples…
Azure RTOS
How to measure FPS and CPU Usage on Azure RTOS GUIX with STM32H750B-Disco board
Hello, After this question that I asked few weeks ago, now my GUI is ready, but I need to measure how good its performance is on my board, eg. FPS, CPU usage and stuffs like that; I searched in the GUIX documentation but didn't found anything…
Azure RTOS
LevelX source code in file lx_nand_flash_open.c, twice write same page, how to calculate ECC and save ECC?
this operation will cause problems in NAND ECC calculation. ECC code will be stored in the first write, and problems will occur in the second write,then LevelX only use for none ECC case? /* Write the initial erase count for the block. */ …
Azure RTOS
Does the Azure RTOS support Intel X64 Multicore CPU?
I want to port Azure RTOS to intel X64 Multicore CPU, Could you provide some support?
Azure RTOS
Question about LevelX source code in file lx_nand_flash_open.c.
LevelX version 6.1.3 could not understand file lx_nand_flash_open.c, between line 282 to 297 why do the _lx_nand_flash_driver_write() twice? /* Setup the initial erase count to 1. */ page_word_ptr[0] = (((ULONG) 1) | LX_BLOCK_ERASED); /* Write…
Azure RTOS
How to Obtain IP Destination Address from UDP Packet
I am using Azure RTOS (formerly Express Logic) NetX v. 5 on a Reneasas S7G2 platform with Synergy SSP. In our application, we receive UDP packets - both directed at our IP address and directed at the IP Broadcast address - and I need to differentiate…
Azure RTOS
ThreadX module
Hello, is there any example of ThreadX module manager calling the txm_module_manager_file_load() possibly running on ARM M7 ? Thank you, best regards
Azure RTOS
Azure Function - HTTP trigger - Intermittent 502 errors
I have a Azure Function app with a HTTP trigger endpoint that intermittently returns 502 errors. I've not been able to see anyting in the Application Insights logs that would point to the endpoint exceeding the 430 second limit. Max request time is…
Azure RTOS
Azure Functions

netxDuo http method
The NetX Duo HTTP user guide says that it supports GET, POST, HEAD, PUT, and DELETE methods. Are there any other CONNECT, OPTIONS, TRACE, and PATCH methods supported?
Azure RTOS
Nand Flash that can be used by LevelX
I have some Samsung Nand Flash, models that are K9F1G08U0E. In the chip manual, it is emphasized that each Page can only be Program once after Block Erase. I carefully studied the implementation process of LevelX, it seems that this kind…
Azure RTOS
Asure RTOS threadX Support for ARM processors
Hi I have few questions: Is ThreadX can be run over ARM Cortex R7 as RTOS automotive certified ? Is Threadx supports BSP of Renesas V3H platform ? Is Threadx supports SOME/IP and UDS protocol stuck
Azure RTOS
About the limite of the message_size of queue
hi, I'm just curious why the kernel limits the message_size of queue to upper 16 32-bit word. What can I choose to do if the msg size is bigger than 16 32-bit word size? It looks that simply disabling the size check code in _txe_queue_create dose not…
Azure RTOS
Device Controller Driver for SAMD21
Hi, I want to use USBX with SAMD21. USBX seems to support SAMD21, but I cannot find the Device Controller Driver for SAMD21. Could you tell me where Device Controller Driver and/or sample code is? Supports most popular architectures
Azure RTOS

USBX HOST support customer defined class
I'm working with USBX HOST , need to drive an LTE cellular module who has customer defined class\PID\VID, how could I start with that? I found UX_HOST_CLASS_DPUMP related API which may help but when I register such class and modify following with ours, I…
Azure RTOS
Azure RTOS webserver, CGI callback table
I am new to Azure RTOS, it seems like a very nice package with a lot of built-in features. I am especially looking into the webserver part of Netx duo. From the examples I have been able to find, it seems that the implementation of the webserver is…
Azure RTOS
About the maximum core number that threadX can support
Hi, Just want to confirm the upper limit of core number that the current release 6.1.3 can support in terms of ARMv8 version. I noticed the marco TX_THREAD_SMP_MAX_CORES and TX_THREAD_SMP_CORE_MASK in code base but not sure if they are the only two…
Azure RTOS
AZURE RTOS NetX DUO debug packets
see issue #22 in the github Netx Duo repo. I am trying to debug incoming packets but not how to build a "debug" version to examine rx packet
Azure RTOS
Unable to receive more data from UART High Level App and to calculate size of data in ISU ports
How can I receive more data instead of only 12 bytes? I also want to know if there is any way to calculate the length of data present in the ISU ports? I have been trying to receive the data from click boards using RTApp and transfer it to shared buffer…