Hi Team
I am using STM32F401RE I wanted to print the message using the printf on the console
But I am not able to see any prints Can you please let me know what is the settings that I have to change to enable printf on the console Kindly please help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-08-31 6:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 12:29 AM
Hi @DRAME.1​
Please have a look to AN4989 STM32 Debug Toolbox chapter 7 Printf Debugging
Hope it help
Olivier
In order to give better visibility on the answered topics, please click on 'Accept as Solution' on the reply which solved your issue or answered your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 12:59 AM
What is "console" here? What's your hardware?
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 3:57 PM
Hi Oliver
Thanks for your response I have done the following settings.
I am trying to add the code below in the main file ,But i see that its giving an error
.\Objects\esfree_deepak_abhi.axf: Error: L6218E: Undefined symbol ITM_SendChar (referred from main.o).
I am not sure How to include this call Please let me know what files/library i have to enable to get this working
What are the other files to enable to get this working Screen shot shows the module enabled in my project
#include "stdio.h"
int fputc(int ch, FILE *f)
{
ITM_SendChar(ch);
return(ch);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 4:15 PM
Usually pulled in via stm32f4xx.h (compiler command line define for CPU STM32F401xE)
STM32Cube_FW_F4_V1.25.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f401xe.h
STM32Cube_FW_F4_V1.25.0\Drivers\CMSIS\Core\Include\core_cm4.h
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 4:16 PM
Dupe https://community.st.com/s/question/0D53W00000GX0QPSA1
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 4:33 PM - edited ‎2023-11-20 9:28 AM
Hi Clive
Thanks for your swift reply!
we resolved the error related to compilation adding headers
we see that there is no printf coming on the serial window I have attached the screen shot where we see the function getting called but no print appears in serail window
Kindly help us we are in final stage to get the output prints
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 5:30 PM
Guessing you have the NUCLEO-F401RE
​
The Core Speed needs to accurately reflect how you have the chip running.​
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 5:35 PM
Hi Clive,
Yes the hardware is stm NUCLEOF401RE board. and the core clock speed is 10.000000 Mhz , whats the maximum core clock frequency we can set and whether its safe to change the core clock frequency from the tool and flash the code , hope that doesn't trouble the functioning of the board.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-09-01 5:42 PM
The part typically runs at 84 MHz if the PLL is set up, if you don't program the clock it will be at 16 MHz via HSI clock
You're using Port 0, so those need checked. Other functionality does not
Up vote any posts that you find helpful, it shows what's working..
