Hi All,I'm working on creating a standalone application that has many matrix multiplications and one softmax operation. It seems softmax operation was consuming more time in the application. The ideal behavior of my application is that the softmax ...
Hi have a simpler STM32 application which includes below simpler code in main.c file.#include <stdio.h>
int main(){
int a=10, b=20;
printf("Sum=%d \n", a+b);
return 0;
}Later i build the project in RELEASE mode and ran the application then it ...
Hi All,I have created a STM32 application using STM32CUBDEIDE. I'm using STM32F469IH6 for this project.I have declared few uninitialized variables in one file. I know this affects ".bss" section but it is required in my code. This causes an error say...
Hi all,I'm trying to profile my application which running on STM32F469IH6 micro-controller. I'm able to run the application in debug mode and able to see the timings of the applications.But In generally running application in release mode will have m...
Hello Everyone,I'm new to application development with micro-controllers. Currently I'm using STM32F469IH6 for my project with the help of STM32CUBEIDE.Can anyone suggest how to measure execution time of a certain piece of code. In traditional linux...
Hi @TDK ,Please let me know, What additional iinformation you required to understand this problem.This is very simpler example to add two numbers. I have not taken a look at STM32CUBDEIDE examples.
Hi @TDK ,I am new to micro-controller programming. Also, I'm not sure why i'm seeing "Debugger connection lost.Shutting down..." at the end.It would be very helpful if you respond with some explaination/resource.Also I'm not seeing printf output any...
Hi @TDK , @Community member , @Rados?aw Particularly for this problem i have created a STM32 Project by including below simpler code in main.c file.[@TDK I found no issues in actual source project thats way i have created simpler project to show...
Hi @TDK ,I have not used any attribute and I have default linker script only. Not changed explicitly anything.Also, Did you get a chance to look at map and linker filers in above mentioned link?If you see the map file, it has .bss sections creat...