Christian Frey

Results 3 comments of Christian Frey

By the way, another solution seems to be calling `exec_command` with the J-Link Commandstring JLinkDevicesXMLPath (inspired by [this link](https://wiki.segger.com/Open_Flashloader#General_Procedure)): ``` jlink = pylink.JLink() jlink.open() jlink.exec_command('JLinkDevicesXMLPath /opt/SEGGER/JLink/JLinkDevices.xml') ``` With this solution,...

Is it possible that this is an issue with the cpu-specific port? If we look at the implementation of `TX_RESTORE` in threadx/ports/cortex_r5/gnu/inc/tx_port.h, it is implemented like this: ```c #define TX_RESTORE...

It seems that the root-cause for this issue is a missing memory-clobber/compiler-barrier in the TX_DISABLE and TX_RESTORE macros (https://github.com/eclipse-threadx/threadx/issues/334#issuecomment-2068839866). I would suggest fixing this issue in the cpu-specific ports instead....