Skip to main content
Visitor II
May 16, 2024
Solved

Assistance Required for SWV ITM Data Console Configuration on STM32F407VET6 with STM32CubeIDE

  • May 16, 2024
  • 2 replies
  • 2601 views

Hello,

I recently purchased STM32 F4VE  trying to print text on SWV but noting shows at port 0, shared all the necessary information below.

Here's what i did :

  • I am using generic st-linkv2 (version : 3.14.5) and STM32F407VET6 is in Normal mode (not DFU)
  • Using STM32CubeIDE, I created a project by selecting the STM32F407VET6TR board.
  • In the .ioc device configuration, I changed the clock to 84 MHz.
  • In main.c, inside the int main -> while loop, I added a printf statement to print "Hello."
  • In syscalls.c added required code for ITM.
  • In the debugger configuration, I enabled SWV (84 MHz).
  • Before starting debugging, I opened the SWV ITM Data Console, selected port 0 in the settings, and clicked on the red button to start.
  • Nothing prints on ITM console.

Despite these steps, nothing prints on the ITM console. Could you please help me identify what might be going wrong?

Thanks in advance :smiling_face_with_smiling_eyes:

// syscalls.c

//Debug Exception and Monitor Control Register base address
#define DEMCR 			*((volatile uint32_t*) 0xE000EDFCU )

/* ITM register addresses */
#define ITM_STIMULUS_PORT0 	*((volatile uint32_t*) 0xE0000000 )
#define ITM_TRACE_EN 	*((volatile uint32_t*) 0xE0000E00 )

void ITM_SendChar(uint8_t ch)
{

	//Enable TRCENA
	DEMCR |= ( 1 << 24);

	//enable stimulus port 0
	ITM_TRACE_EN |= ( 1 << 0);

	// read FIFO status in bit [0]:
	while(!(ITM_STIMULUS_PORT0 & 1));

	//Write to ITM stimulus port0
	ITM_STIMULUS_PORT0 = ch;
}

__attribute__((weak)) int _write(int file, char *ptr, int len)
{
 (void)file;
 int DataIdx;

 for (DataIdx = 0; DataIdx < len; DataIdx++)
 {
 //__io_putchar(*ptr++);
	ITM_SendChar(*ptr++);
 }
 return len;
}

main.c

/* USER CODE BEGIN Header */
/**
 ******************************************************************************
 * @file : main.c
 * @brief : Main program body
 ******************************************************************************
 * @attention
 *
 * Copyright (c) 2024 STMicroelectronics.
 * All rights reserved.
 *
 * This software is licensed under terms that can be found in the LICENSE file
 * in the root directory of this software component.
 * If no LICENSE file comes with this software, it is provided AS-IS.
 *
 ******************************************************************************
 */
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include <stdio.h>

/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */

/* USER CODE END Includes */

/* Private typedef -----------------------------------------------------------*/
/* USER CODE BEGIN PTD */

/* USER CODE END PTD */

/* Private define ------------------------------------------------------------*/
/* USER CODE BEGIN PD */

/* USER CODE END PD */

/* Private macro -------------------------------------------------------------*/
/* USER CODE BEGIN PM */

/* USER CODE END PM */

/* Private variables ---------------------------------------------------------*/

/* USER CODE BEGIN PV */

/* USER CODE END PV */

/* Private function prototypes -----------------------------------------------*/
void SystemClock_Config(void);
/* USER CODE BEGIN PFP */

/* USER CODE END PFP */

/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */

/* USER CODE END 0 */

/**
 * @brief The application entry point.
 * @retval int
 */
int main(void)
{

 /* USER CODE BEGIN 1 */

 /* USER CODE END 1 */

 /* MCU Configuration--------------------------------------------------------*/

 /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
 HAL_Init();

 /* USER CODE BEGIN Init */

 /* USER CODE END Init */

 /* Configure the system clock */
 SystemClock_Config();

 /* USER CODE BEGIN SysInit */

 /* USER CODE END SysInit */

 /* Initialize all configured peripherals */
 /* USER CODE BEGIN 2 */

 /* USER CODE END 2 */

 /* Infinite loop */
 /* USER CODE BEGIN WHILE */
 while (1)
 {
 /* USER CODE END WHILE */
	 printf("Hello\n");

 /* USER CODE BEGIN 3 */
 }
 /* USER CODE END 3 */
}

/**
 * @brief System Clock Configuration
 * @retval None
 */
void SystemClock_Config(void)
{
 RCC_OscInitTypeDef RCC_OscInitStruct = {0};
 RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};

 /** Configure the main internal regulator output voltage
 */
 __HAL_RCC_PWR_CLK_ENABLE();
 __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);

 /** Initializes the RCC Oscillators according to the specified parameters
 * in the RCC_OscInitTypeDef structure.
 */
 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
 RCC_OscInitStruct.HSIState = RCC_HSI_ON;
 RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
 RCC_OscInitStruct.PLL.PLLM = 8;
 RCC_OscInitStruct.PLL.PLLN = 84;
 RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
 RCC_OscInitStruct.PLL.PLLQ = 4;
 if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
 {
 Error_Handler();
 }

 /** Initializes the CPU, AHB and APB buses clocks
 */
 RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
 |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
 RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
 RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
 RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
 RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;

 if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
 {
 Error_Handler();
 }
}

/* USER CODE BEGIN 4 */

/* USER CODE END 4 */

/**
 * @brief This function is executed in case of error occurrence.
 * @retval None
 */
void Error_Handler(void)
{
 /* USER CODE BEGIN Error_Handler_Debug */
 /* User can add his own implementation to report the HAL error return state */
 __disable_irq();
 while (1)
 {
 }
 /* USER CODE END Error_Handler_Debug */
}

#ifdef USE_FULL_ASSERT
/**
 * @brief Reports the name of the source file and the source line number
 * where the assert_param error has occurred.
 * @PAram file: pointer to the source file name
 * @PAram line: assert_param error line source number
 * @retval None
 */
void assert_failed(uint8_t *file, uint32_t line)
{
 /* USER CODE BEGIN 6 */
 /* User can add his own implementation to report the file name and line number,
 ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
 /* USER CODE END 6 */
}
#endif /* USE_FULL_ASSERT */

 

image.png

image.png

 

 

    This topic has been closed for replies.
    Best answer by kali7989

    Hi @Tesla DeLorean thank you for the quick response,

    I just debugged the problem with the PB3/SWO pin. It turns out that this ST-Link USB stick doesn't have an SWO pin to connect. I followed a YouTube tutorial on how to extract the SWO connection from the ST-Link and now the STM32f407VET6 able to use print the printf statements.

    Here is a picture of my ST-Link with the SWO connection I made.

    Hope this helps others facing the same issue.

    shared image.jpg

    Result :-

    image.png

    2 replies

    Graduate II
    May 16, 2024

    Why couldn't you have just used the standard ITM_SendChar() from core_cm3.h ?

    Enabling on each call?

    Can you use ITM_SendChar() directly?

    Does the UART output method work? Can you print the SystemCoreClock value?

    Check PB3/SWO gets all the way from the chip to the ST-LINK

    Authentic ST-LINK/V2, show connectivity in STM32 Cube Programmer, and SWV pane

    kali7989AuthorAnswer
    Visitor II
    May 17, 2024

    Hi @Tesla DeLorean thank you for the quick response,

    I just debugged the problem with the PB3/SWO pin. It turns out that this ST-Link USB stick doesn't have an SWO pin to connect. I followed a YouTube tutorial on how to extract the SWO connection from the ST-Link and now the STM32f407VET6 able to use print the printf statements.

    Here is a picture of my ST-Link with the SWO connection I made.

    Hope this helps others facing the same issue.

    shared image.jpg

    Result :-

    image.png