Questions tagged [truestudio]

Atollic TrueSTUDIO is a C/C++ IDE dedicated for STM32 microcontrollers.

IDE specific for STM32 microcontrollers, especially STM32 and is based on the Eclipse IDE.

Website: Atollic TrueSTUDIO

47 questions
0
votes
1 answer

How to convert hex to float using C#

I'm get data from ST MCU via UART and display value to PC screen but its result is different with what I expected in float type. I'm using TrueStudio for ST MCU and C# to display values in screen. I'm using float value at MCU and send data to…
Louiey
  • 19
  • 1
  • 7
0
votes
3 answers

How to fix 'Unable to open file' when uploading to STM32 in TrueStudio

I am attempting to upload my written program for the STM32F411RE from my TrueStudio for STM32 IDE to the board itself. The board is connected via the mini USB b cable and the intent is to program it via SWD. Setup Atollic provides a nice tutorial on…
Nanne118
  • 125
  • 1
  • 13
0
votes
1 answer

How to fix, "Breakpoint installation failed: unmatched quote" when setting breakpoints in TrueSTUDIO for STM32

After setting breakpoints in my code and then debugging, I am given the error stated in the question title and manually interrupting the program results in a console message, "No source available for "__muldf3() at 0x80006be" (as an example),…
Milo Fan
  • 1
  • 1
0
votes
1 answer

Fixing a Memory Overwrite errors likely due to malloc on an STM32 Nucleo-F334R8

I hope this is a clear explanation of my issue I've been runnign around various manuals for a little over a week now tryign to solve this: Recently I have been redesigning a software design for a class project after feedback and testing on the STM32…
Ezra .M
  • 11
  • 5
0
votes
1 answer

How to load the examples given by st on an IDB008V2 board?

I need to develop software on a bluenrg-2. I use the IDB008V2 development board. I would like to use the chat example provided by ST: https://www.st.com/en/embedded-software/stsw-bluenrg-dk.html The compilation works correctly but it is impossible…
Marc
  • 3
  • 3
0
votes
1 answer

TrueStudio - Why does the link static library fail?

I am using TrueStudio for my own stm32 project. I create 2 file foo.h and foo.c includes 2 functions //foo.h int add(int a, int b); int sub(int a, int b); and the implementation of timeout //foo.c #include "foo.h" int add(int a, int b) { return…
Chinh Nguyen Huu
  • 123
  • 3
  • 11
0
votes
1 answer

Fatal error: stm32f4xx_syscfg.h: No such file or directory

I am trying to compile this code on my STM32F4Discovery board using Atollic True Studio. When I launch the debug of the main, I get this error: ../lib/driver/src/stm32f4xx_syscfg.c:50:30: fatal error: stm32f4xx_syscfg.h: No such file or…
Nbhtm
  • 1
  • 1
  • 1
0
votes
1 answer

Incorrect real baudrate for a UART communication on a stm32f4 microcontroller when programming it "bare-metal"

I'm trying to transmit a char array using the usart2 configuring the associated registers directly: RCC, GPIO, USART2 and I obtain a bad baud rate when measuring with the oscilloscope (about 8k baud when expecting 9600.) I'm coding it using atollic…
Jubeor
  • 83
  • 1
  • 9
0
votes
1 answer

Truestudio compilation error for FreeRTOS compilation on STM32

I am facing compilation error for FreeRTOS compilation on STM32 using Truestudio. /home/dd/Atollic/TrueSTUDIO/STM32_workspace_9.0/STM32L071KZ_RTOS/Debug/../Src/main.c:236: undefined reference to…
0
votes
2 answers

Macro visibility in CubeMx&Atollic bare project

I've created a simple CubeMx project from scratch and opened it up on Atollic TrueStudio. Of course, its compilation gets out successfully. I've been looking around in project's directories and files to better understand the bare structure upon…
MFrancone
  • 161
  • 1
  • 10
0
votes
2 answers

STM32 SPI Transmit

I've been using an STM32F103C8, trying for a while to get the SPI interface. Been using Atollic TrueStudio. I'm still new at this so if this is a dumb question I hope you'll forgive me. I can't seem to transmit anything on the SPI interface no…
0
votes
1 answer

Two different Eclipse instances working in same path

Due to plugin compatibility problems between the Eclipse applications Atollic TrueStudio 9.0 and Cantata 7.2 (Testframework) i have to use both eclipse versions at the same time as single instances instead of having one Eclipse with plugins of…
Nickan
  • 15
  • 4
0
votes
1 answer

Unable to use CMSIS library in Atollic

I am trying to use CFFT function for my STM32 microcontroller in Atollic TrueStudio. But I am unable to use any of the DSP functions. I get the error - undefined reference to `arm_cfft_f32' and undefined reference to 'arm_cfft_sR_f32_len16'. I…
-1
votes
1 answer

How can I restore the old STM32 files to new

There is a TrueStudio project which is written in 2014. How can I use this project? I can show main.c file on STM32IDE but IDE can not see headers and another files. All file locations are different. Is there a program for this?
-1
votes
1 answer

STM32 debugging issue

I am using a Nucleo F303RE board. And whenever I try to debug in STM32cubemxIDE. It always shows an error for failed to start GDB error. I have attached the screenshot I have updated the ST-Link firmware and also checked my device manager. I have…