SEGGER - Nino Administrator
- Member since Jan 2nd 2017
- Last Activity
- , Viewing forum index
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
SEGGER - Nino -
Replied to the thread SystemView Heap Define message clarifications.
PostHello, Thank you for your inquiry. Which version of SystemView are you using exactly? Could you try the latest one? There was a fix related to heap and swapped information. Best regards, Nino -
SEGGER - Nino -
Replied to the thread Systemview with dual core.
PostHello, Thank you for your inquiry. Currently SystemView does not have any build in way to handle multi core systems. You can of course let the cores dump the SystemView data into the same RTT buffer, but you have to do all resource handling and… -
SEGGER - Nino -
Replied to the thread Trace count doesn't display in Ozone "Download & Reset Program" mode, but does when in "Attach to Running Program" or "Attach & Halt Program" modes.
PostHello Huw, No problem. Let me know once you have news. Best regards, Nino -
SEGGER - Nino -
Replied to the thread [SOLVED] Encoding problems with RRX assembly instruction.
PostHello Paolo, Thank you for clarifying. There are different syntax requirements in the wild for ARM and Thumb which are differently implemented in gcc or clang. That is why Arm at some point has added unified syntax to simplify things. We recommend to… -
SEGGER - Nino -
Replied to the thread CMSIS DSP LIB.
PostHello Max, I just gave it a try on a nRF52840-DK and everything is working as expected. You can find the example project attached. I assume you project setup is not correct and the error message is correct as the requested library does not exist on… -
SEGGER - Nino -
Replied to the thread embedded studio or STM32CubeMX?.
PostHello, Thank you for your inquiry. Both tools are not really comparable as they do different things. Embedded Studio is an IDE and CubeMX is simply a code generator. So if you are looking for an IDE that seamlessly integrates with embOS and is well… -
SEGGER - Nino -
Replied to the thread Add an assert if SEGGER_RTT_MAX_INTERRUPT_PRIORITY is not set correctly.
PostHi, Unfortunately an assert in SystemView itself would not be possible. What we could do maybe is add something to SEGGER_SYSVIEW_Config_FreeRTOS.c as this is FreeRTOS specific. Do you have a proposal? Best regards, Nino -
SEGGER - Nino -
Replied to the thread Why can't I view the information for these tasks? Did I miss anything?.
PostHello, Did you follow the following guide when setting up SystemView with FreeRTOS? wiki.segger.com/FreeRTOS_with_SystemView See especially the troubleshooting section. Best regards, Nino -
SEGGER - Nino -
Replied to the thread [SOLVED] SystemView does not show any data.
PostHello, See the other thread where you posted for an example setup explanation: SEGGER/SEGGER_RTT_ASM_ARMv7M.S bad instruction on Atmel SAM4E16E Getting SystemView running is usually straightforward. Best regards, Nino -
SEGGER - Nino -
Replied to the thread SEGGER/SEGGER_RTT_ASM_ARMv7M.S bad instruction on Atmel SAM4E16E.
PostHello, Not sure what your issue is. It is a simple gcc/clang compatible assembly file. If you have your general toolchain setup correctly all you have to do is add the file to your project and build it. If this does not simply work your general setup is… -
SEGGER - Nino -
Replied to the thread Why are there multiple QueueGenericReceive and QueueGenericSend being incorrectly shown?.
PostHello, Thank you for your inquiry. Which version of SystemView are you using exactly? Could you give the latest version a try? Do you see the same behaviour? Best regards, Nino -
SEGGER - Nino -
Replied to the thread How to make Reset_Handler function to the specified RAM address?.
PostHello, Thank you for your inquiry. You have a typo in your linker script. Instead of Reset_Handler, you use Resset_Handler with two "s". That is why the linker is not placing that symbol at the wanted address as the symbol does not exist. Best… -
SEGGER - Nino -
Replied to the thread [SOLVED] Encoding problems with RRX assembly instruction.
PostHello, Thank you for your inquiry. Such an issue is not known to us. Could you clarify your setup? What assembler do you set exactly in project options under Code > Assembler > Assembler? Could you share your example project for reproduction? What ES… -
SEGGER - Nino -
Replied to the thread Reading backspace from debug terminal.
PostHello, Thank you for your inquiry. With backspace you mean the Delete key in this case right? In that case ES does not use ASCII encoding for the input terminal as there is no symbol representation for that key. Instead it uses ANSI Escape… -
SEGGER - Nino -
Replied to the thread [SOLVED] I am unable to create an application that can run on imx6ull, and all the bin files I generate cannot run on imx6ull.
PostHello, Thank you for your inquiry. The project generation process with the ES project wizard is straightforward. Simply select the project template for Cortex-A devices. Select the correct target device name and create the project. Please note that the… -
SEGGER - Nino -
Replied to the thread Code-Folding and rectangle-selection.
PostHello, Thank you for the video. Unfortunately not reproducible for me as I can't seem to select the three lines with the mouse as you did in the video without marking everything between the two endpoints. How did you achieve this? Did you change some… -
SEGGER - Nino -
Replied to the thread CMSIS DSP LIB.
PostHello, Thank you for your inquiry. Which ES version are you using exactly? Do you see the same issue with the latest version? Best regards, Nino -
SEGGER - Nino -
Replied to the thread Section definition by Linker.
PostHello, Thank you for your inquiry. You are using invalid linker syntax. If you want to place data you first need to define it in your targetapplication so a symbol gets assigned to it which then you can place in your linker script. It looks like you… -
SEGGER - Nino -
Replied to the thread SystemView and dual core monitoring.
PostHello Hardy, currently SystemView does not have any build in way to handle multi core systems. You can of course let the cores dump the SystemView data into the same RTT buffer, but you have to do all resource handling and individual core and API… -
SEGGER - Nino -
Replied to the thread [SOLVED] syntax highligting ino files.
PostHello, Thank you for your inquiry. You could try to set the file type to C/C++ by right clicking it in the project explorer window, select Options and go to Code > File > File Type I assume you are looking to debug Arduino sketch files, correct? If yes…