0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內(nèi)不再提示

Event Recoder調(diào)試組件在stm32上的使用

CHANBAEK ? 來源:嵌入式記錄 ? 作者: 獨處東漢 ? 2023-05-15 10:49 ? 次閱讀

Event Recoder調(diào)試組件在stm32上的使用

本文目標:Event_Recoder調(diào)試組件在stm32上的使用

按照本文的描述,應該可以在你所處的硬件上跑通代碼。

先決條件:裝有編譯和集成的開發(fā)環(huán)境,比如:Keil uVision5。

板子硬件要求:無,屬于調(diào)試功能。

起源

因為做產(chǎn)品開發(fā),設計東西有時候考慮得多,mcu的并沒有多余的串口供使用調(diào)試,在調(diào)試一些初期進行驗證時,必要的調(diào)試的打印信息是需要的。

Event Recoder調(diào)試組件簡介

嵌入式的Event_Recoder調(diào)試組件是一種可以在MDK開發(fā)環(huán)境下使用的高級調(diào)試工具,它可以記錄軟件運行的一些標志信息,并以圖形化的形式顯示出來。它可以幫助你了解和分析內(nèi)部操作,支持Keil RTX操作系統(tǒng)調(diào)試以及MDK自帶的中間件的調(diào)試。它還可以測量代碼運行的時間和功耗。它不需要占用芯片的外設資源,也不會影響代碼的執(zhí)行速度。

Event Recoder調(diào)試組件是MDK開發(fā)環(huán)境的一部分,官網(wǎng)是https://www.keil.com/??梢栽谶@里找到更多關于Event Recoder調(diào)試組件的信息,比如使用教程,API文檔,示例代碼等。

使用

第1步:準備好一個工程模板,這里我使用的stm32cubemx生成的工程,大致配置如下:

圖片

第2步:使用MDK打開工程,創(chuàng)建RTE環(huán)境,并勾選對應Event Recoder功能的,如下:

圖片

第3步:工程添加的文件 EventRecorderConf.h,按照如下進行配置:

圖片

第4步:編寫必要的代碼進行驗證

這里我在main.c中編寫一些必要代碼,代碼片段如下:

/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file           : main.c
  * @brief          : Main program body
  ******************************************************************************
  * @attention
  *
  * ? Copyright (c) 2021 STMicroelectronics.
  * All rights reserved.
  *
  * This software component is licensed by ST under BSD 3-Clause license,
  * the "License"; You may not use this file except in compliance with the
  * License. You may obtain a copy of the License at:
  *                        opensource.org/licenses/BSD-3-Clause
  *
  ******************************************************************************
  */
/* USER CODE END Header */


/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "usart.h"
#include "gpio.h"


/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include 
#include "SEGGER_RTT.h"
#include "SEGGER_RTT_Conf.h"


#include "EventRecorder.h"
#include "EventRecorderConf.h"
/* 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 */
//int fputc( int ch, FILE *f )
//{
//  USART_TypeDef* USARTx = USART1;
//  while ((USARTx->SR & (1<<7)) == 0);
//  USARTx->DR = ch;
//  return ch;
//}


void Get_ChipID(uint32_t *ChipUniqueID)
{
  ChipUniqueID[0] = *(__IO uint32_t *)(0X1FFFF7F0); // 高字節(jié)
  ChipUniqueID[1] = *(__IO uint32_t *)(0X1FFFF7EC); // 
  ChipUniqueID[2] = *(__IO uint32_t *)(0X1FFFF7E8); // 低字節(jié)
}


/* USER CODE END 0 */


/**
  * @brief  The application entry point.
  * @retval int
  */
int main(void)
{
  /* USER CODE BEGIN 1 */
  uint32_t ChipUniqueID[3] = {0};
  /* 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 */
  MX_GPIO_Init();
  MX_USART1_UART_Init();
  MX_USART2_UART_Init();
  /* USER CODE BEGIN 2 */
  EventRecorderInitialize(EventRecordAll, 1U);
  EventRecorderStart();
  Get_ChipID(ChipUniqueID);
  printf("\\r\\n芯片的唯一ID為: \\r\\n");

//  SEGGER_RTT_printf(0,"#define id_buff_0 0X%08X\\r\\n#define id_buff_1 0X%08X \\r\\n#define id_buff_2 0X%08X\\r\\n",
//          ChipUniqueID[2],ChipUniqueID[1],ChipUniqueID[0]);
//  SEGGER_RTT_printf(0,"\\r\\n芯片flash的容量為: %dK \\r\\n", *(__IO uint16_t *)(0X1FFFF7E0));

  printf("#define id_buff_0 0X%08X\\r\\n#define id_buff_1 0X%08X \\r\\n#define id_buff_2 0X%08X\\r\\n",
          ChipUniqueID[2],ChipUniqueID[1],ChipUniqueID[0]);
  printf("系統(tǒng)時鐘:%d\\r\\n",SystemCoreClock);
 /* USER CODE END 2 */


  /* Infinite loop */
  /* USER CODE BEGIN WHILE */
  while (1)
  {
    /* USER CODE END WHILE */


    /* USER CODE BEGIN 3 */
  HAL_Delay(500);
  HAL_GPIO_TogglePin(LED_B_GPIO_Port,LED_B_Pin);


  }
  /* USER CODE END 3 */
}


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


  /** Initializes the CPU, AHB and APB busses clocks 
  */
  RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  {
    Error_Handler();
  }
  /** Initializes the CPU, AHB and APB busses 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 */


  /* 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,
     tex: printf("Wrong parameters value: file %s on line %d\\r\\n", file, line) */
  /* USER CODE END 6 */
}
#endif /* USE_FULL_ASSERT */


/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
實驗結果

按照代碼的邏輯,使用MDK自帶的仿真功能,已經(jīng)可以在調(diào)試的窗口中出現(xiàn)實驗現(xiàn)象了,我這里主要是測試了一下必要的打印,上面的代碼片段現(xiàn)象如下:

圖片

注意事項:

工程代碼中不應該有對硬件串口的重映射,因為這里輸出的內(nèi)容是在控制臺,而不是真實的串口。我在代碼片段中就屏蔽了相關代碼


//int fputc( int ch, FILE *f )
//{
//  USART_TypeDef* USARTx = USART1;
//  while ((USARTx->SR & (1<<7)) == 0);
//  USARTx->DR = ch;
//  return ch;
//}

我這里MDK的版本是5.28,如果版本太低的話,可能也沒有實驗現(xiàn)象,建議MDK的版本在5.22以上來跑,Compiler組件要在1.4.0以上。測試了一下,使用Jlink、CMSIS-DAP下載器均有實驗現(xiàn)象,ST-Link理論上也支持,沒測試。

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學習之用,如有內(nèi)容侵權或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • mcu
    mcu
    +關注

    關注

    146

    文章

    17173

    瀏覽量

    351656
  • STM32
    +關注

    關注

    2270

    文章

    10906

    瀏覽量

    356553
  • 調(diào)試
    +關注

    關注

    7

    文章

    582

    瀏覽量

    33973
  • 串口
    +關注

    關注

    14

    文章

    1555

    瀏覽量

    76658
  • keil
    +關注

    關注

    68

    文章

    1213

    瀏覽量

    166974
收藏 人收藏

    評論

    相關推薦

    【原創(chuàng)專題教程第7期】終極調(diào)試組件Event Recorder,各種Link通吃,支持時間和功耗測量,printf打印,RTX5及中間件調(diào)試

    STM32F429BIT6開發(fā)板: 教程目錄: 串口打?。?Event Statistics時間測量功能的動態(tài)效果: Event Recorder動態(tài)效果展示: RTX5調(diào)試
    發(fā)表于 06-19 18:54

    Event Recoder是什么

    第8章 STM32H7的終極調(diào)試組件Event Recorder本章節(jié)為大家介紹終極調(diào)試方案Event
    發(fā)表于 08-03 06:59

    STM32F407的終極調(diào)試組件Event Recorder

    第8章 STM32F407的終極調(diào)試組件Event Recorder本章節(jié)為大家介紹終極調(diào)試方案Even
    發(fā)表于 08-03 08:22

    介紹終極調(diào)試方案Event Recoder

    第8章 STM32H7的終極調(diào)試組件Event Recorder本章節(jié)為大家介紹終極調(diào)試方案Event
    發(fā)表于 08-03 08:00

    STM32H7的終極調(diào)試組件Event Recorder是什么

    STM32H7的終極調(diào)試組件Event Recorder是什么
    發(fā)表于 10-13 07:32

    淺析基于GD32F427適配RTX4+調(diào)試組件Event Recorder

    PendSV_Handler(void) void SysTick_Handler(void)三個中斷函數(shù)5.main.c中增加頭文件#include "RTL.h"6.建立調(diào)度任務移植調(diào)試組件
    發(fā)表于 12-21 09:39

    可以將終端控制臺定向為調(diào)試器的Real Time Transfer或Event Recoder嗎?如何操作?

    接手一個項目,發(fā)現(xiàn)板子的串口全用完了(或被用做他用),SWO引腳也不行,如果我進行程序重構, 1、可以將終端控制臺定向為調(diào)試器的Real Time Transfer或Event Recode
    發(fā)表于 09-03 10:51

    stm32固件庫stm3210e-eval開發(fā)板的移植

    本內(nèi)容記錄下stm32固件庫3.3版本stm3210e-eval開發(fā)板的移植,以及結合MDKram下
    發(fā)表于 05-11 09:56 ?5949次閱讀
    <b class='flag-5'>stm32</b>固件庫<b class='flag-5'>在</b><b class='flag-5'>stm32</b>10e-eval開發(fā)板<b class='flag-5'>上</b>的移植

    STM32F103VCRAM中調(diào)試方法

    STM32F103VCRAM中調(diào)試方法講解,很好的資料下載吧。
    發(fā)表于 01-11 09:34 ?27次下載

    STM32F429開發(fā)板用戶手冊】第8章 STM32F429的終極調(diào)試組件Event Recorder

    STM32F429開發(fā)板用戶手冊】第8章 STM32F429的終極調(diào)試組件Event Recorder
    發(fā)表于 12-04 14:06 ?17次下載
    【<b class='flag-5'>STM32</b>F429開發(fā)板用戶手冊】第8章 <b class='flag-5'>STM32</b>F429的終極<b class='flag-5'>調(diào)試</b><b class='flag-5'>組件</b><b class='flag-5'>Event</b> Recorder

    STM32F407開發(fā)板用戶手冊】第8章 STM32F407的終極調(diào)試組件Event Recorder

    STM32F407開發(fā)板用戶手冊】第8章 STM32F407的終極調(diào)試組件Event Recorder
    發(fā)表于 12-04 14:21 ?19次下載
    【<b class='flag-5'>STM32</b>F407開發(fā)板用戶手冊】第8章 <b class='flag-5'>STM32</b>F407的終極<b class='flag-5'>調(diào)試</b><b class='flag-5'>組件</b><b class='flag-5'>Event</b> Recorder

    RT-Thread文件系統(tǒng)組件STM32H743的應用

    RT-Thread(后文簡稱RT)提供的DFS組件、Fatfs組件和SDIO驅(qū)動組合起來可用于操作SD卡,但RT的底層驅(qū)動目前對STM32H743(后文簡稱H743)適配不是很好,
    發(fā)表于 12-05 18:36 ?4次下載
    RT-Thread文件系統(tǒng)<b class='flag-5'>組件</b><b class='flag-5'>在</b><b class='flag-5'>STM32</b>H743<b class='flag-5'>上</b>的應用

    STM32H7教程】第8章 STM32H7的終極調(diào)試組件Event Recorder

    STM32H7教程】第8章 STM32H7的終極調(diào)試組件Event Recorder
    發(fā)表于 12-05 20:06 ?7次下載
    【<b class='flag-5'>STM32</b>H7教程】第8章 <b class='flag-5'>STM32</b>H7的終極<b class='flag-5'>調(diào)試</b><b class='flag-5'>組件</b><b class='flag-5'>Event</b> Recorder

    ThreadX(八)------事件集Event

    事件集Event
    發(fā)表于 12-28 19:26 ?9次下載
    ThreadX(八)------事件集<b class='flag-5'>Event</b>

    STM32 低功耗睡眠模式(SLEEP)事件(EVENT)喚醒實現(xiàn)及優(yōu)化

    STM32 低功耗睡眠模式(SLEEP)事件(EVENT)喚醒實現(xiàn)及優(yōu)化1. 介紹STM32具有多種低功耗模式,當前以STM32L4系列的低功耗模式最為豐富,此處基于
    發(fā)表于 12-31 19:08 ?36次下載
    <b class='flag-5'>STM32</b> 低功耗睡眠模式(SLEEP)事件(<b class='flag-5'>EVENT</b>)喚醒實現(xiàn)及優(yōu)化