_frank_ Community Member
- Member since Feb 1st 2023
- Last Activity
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
_frank_ -
Replied to the thread external library (gsl) is not linked properly.
Post> I have added the include path of the gsl library to the preprocessor user include directories and have added the path to the actual libraries (gsl.a and gslcblas.a) to the linker_additional_files option. This should be the proper way, at least it had… -
_frank_ -
Replied to the thread Reading backspace from debug terminal.
PostI am assuming the special key characters (including backspace) are already consumed by Segger's (?) host driver for the debug pod. In this case, there would hardly be any chance to get such characters to the debuggee via this route. Perhaps the Segger… -
_frank_ -
Replied to the thread import freertos STM32Cube project fails, reent.h not found.
PostI suppose the missing "reent.h" file is part of FreeRTOS. And thus you would need to include this manually in your SES project. Reentrance would be a possible issue if you call newlib functions from different threads (including interrupts). -
_frank_ -
Replied to the thread SES - Multiple HEX output variations.
PostI am not sure if we mean the same. Post-build steps happen after the build, not involving any build tools (compiler, linker). This are usually external tools, or batches/scripts. In the example I mentioned, this is a self-written tool that reads/parses… -
_frank_ -
Replied to the thread SES - Multiple HEX output variations.
PostI would use a post-build command. This can be found in Code->User Build Step in the project options. Her a screenshot from a private project of mine: forum.segger.com/index.php/Att…eac1b90050284db3715730f43 Basically all modern toolchains have such an…