Search Results

Search results 1-6 of 6.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Hello, I am struggling with getting EmbOS thread-aware debugging working in Eclipse. I have previously had this working, but since my development PC has been replaced and everything reinstalled, I cannot make it work now. I have updated JLink to the latest version 7.84c. The target application is still EmbOS 5.02, and linked with libosT7LDP.a. I have added the option "-rtos GDBServer/RTOSPlugin_embOS.dll" to the GDB server configuration, but when I attach to the running target, I do not see othe…

  • Thank you Til. I will look into the option of upgrading. Best regards Mikkel Holm Olsen

  • Hello. I am using EmbOS CortexM GCC V5.02 on an ATSAM4E8C. I have a function which I would like to take different code paths if called from a thread or from a timer or interrupt handler. Basically my function is normally called from a task, but because it uses a MUTEX, this will fail with OS Error 161 if called from a timer handler or 160 if called from an ISR. Is it possible to determine if my function is called from a timer or interrupt handler, so I can take a different code path, avoiding tr…

  • Dear Fabian, Thank you for the quick reply. I have just done a little testing, and it appears I can make it work with the following command line: Source Code (1 line) Thank you for also adding it to the JLink Commander feature request list. Best regards, Mikkel Holm Olsen

  • The MCU I am using has a 128-bit unique identifier, which I would like to read out during production programming. Unfortunately the UID is not mapped into the normal memory space. My initial idea was to make a Flash Loader (ramcode/applet) to read out the UID, but I am not quite clear on how to do this because the write-function is mandatory, but writing to the UID area is of course not possible. Also, as explained in my other thread: forum.segger.com/index.php/Thr…for-SAM4E-user-signature/ read…

  • I need to program the User Signature Area on SAM4E (store production data, serial number, calibration, etc.) I found this thread with a person requesting writing the user signature area on a different SAM4 MCU, but there is no reply and the thread is 3 years old: forum.segger.com/index.php/Thr…e-programming-via-J-Link/ I have written a Flash Loader (ramcode/applet) and included it in JLinkDevices.xml. I can erase the User Signature area using J-Link commander: Source Code (8 lines) I can write t…