高级 ARM Cortex-M 系列 MCU 错误追踪库
中文页 | English
CmBacktrace (Cortex Microcontroller Backtrace) is an open source library that automatically tracks and locates error codes for ARM Cortex-M series MCUs, and automatically analyzes the causes of errors. The main features are as follows:
Beginner Newcomer: For newcomers who switch from simple microcontrollers such as C51 and MSP430 to more complex ARM, the chance of "hard falut" death from time to time makes newcomers instantly stunned. The method of locating errors is often to connect to the emulator, step by step F10/F11, locate the specific error code, and then guess, eliminate, and deliberate on the cause of the error. This process is very painful.
Skilled veteran: Slowly everyone knows that the fault cause and fault code address can be located through the fault register information. Although this can solve a small part of the problem, the repeated and tedious analysis process will also delay a lot of time. Moreover, for some complex problems, it is impossible to solve only by the code address, and the function call logic relationship of the wrong scene must be restored. Although the function call stack can be viewed by connecting to the emulator, it cannot be displayed in the fault state, so it is necessary to step by step F10/F11 to locate the error code. In addition, there are two scenarios,
So locating such problems is even more difficult.
Use this library: All the above problems can be solved easily. The error message can be output to the console, and the error message can also be saved using the Log function of EasyFlash In Flash, the last error message can still be read after the device crashes and restarts. The information output by CmBacktrace includes function call stack, fault diagnosis result, stack, fault register and product firmware information, which greatly improves the efficiency and accuracy of error location.
As the saying goes, a worker must first sharpen his tools if he wants to do his job well. So sometimes the reason for the low efficiency may be that you will use too few types of tools.
Cooperation, Contribution: The development of open source software is inseparable from everyone's support. You are welcome to make more suggestions and hope that more people will join in and improve together. If you think this open source project is great, you can click Project Homepage (Github|OSChina|Coding) Star** in the upper right corner, At the same time recommend it to more friends in need.
The demonstration is divided into the following steps:
\demos\non_os\stm32f10x
bare metal STM32 Cortex-M3
click to view
\demos\os\rtthread\stm32f4xx
RT-Thread STM32 Cortex-M4
Click to view
\demos\os\\ucosii\stm32f10x
UCOSII STM32 Cortex-M3
Click to view
\demos\os\freertos\stm32f10x
FreeRTOS STM32 Cortex-M3
Click to view
\demos directory, if there is a similar, it is recommended to modify it on the basis of it\src to the product project, and ensure that the source code directory is added to the header file pathHardFault_Handler comment outcm_backtrace_init function in the project initialization place for executioncm_backtrace_assert in the assertion function of the project for execution. For specific usage, please refer to the API description belowcm_backtrace_fault in the fault handling function (for example: HardFault_Handler) for execution. For details, refer to the API description belowConfiguration file name: cmb_cfg.h, users need to manually configure themselves for different platforms and scenarios. Common configurations are as follows:
Note: The content of the above configuration can be selected in
cmb_def.h, please read the source code for more flexible configuration
void cm_backtrace_init(const char *firmware_name, const char *hardware_ver, const char *software_ver)
Parameter
Description
firmware_name
firmware name, which must correspond to the firmware name generated by the compiler
hardware_ver
The hardware version number corresponding to the firmware
software_ver
Software version number of the firmware
Note: The above input parameters will be output in case of assertion or failure, mainly for retrospective purposes
size_t cm_backtrace_call_stack(uint32_t *buffer, size_t size, uint32_t sp)
Parameter
Description
buffer
Buffer for storing function call stack
size
Buffer size
sp
Stack pointer to be obtained
Example:
…
void cm_backtrace_assert(uint32_t sp)
Parameter
Description
sp
Stack pointer when asserting environment
Note: The input parameter SP should be obtained inside the assertion function as much as possible, and as close as possible to the beginning of the assertion function. When used in the sub-function of the assertion function (for example: in the assertion hook method of RT-Thread), due to the nesting of the function, there will be the operation of registering the stack, and the SP will be changed at this time, and manual adjustment is required ( Add and subtract a fixed deviation value) into the parameter value, so as a novice, it is not recommended to use this function in the sub-function of the assertion.
void cm_backtrace_fault(uint32_t fault_handler_lr, uint32_t fault_handler_sp)
Parameter
Description
fault_handler_lr
LR register value under fault handling function environment
fault_handler_sp
SP register value under fault handling function environment
This function can be called in the fault handling function (for example: HardFault_Handler). In addition, the library itself provides assembly files processed by HardFault (click to view, you need to choose according to your own compiler), The cm_backtrace_fault method is automatically called in the event of a fault. So when transplanting, the easiest way is to use the assembly file directly.
Click to view the tutorial: Open Keil/IAR/GCC C99 support in one step
Click to view the tutorial: How to use the addr2line tool to get the function call stack details
When the cmb_fault.s assembly file provided by this library is used, because HardFault_Handler is already defined in the assembly file, if this function is defined elsewhere in the project, an error that HardFault_Handler is repeatedly defined will be prompted. There are two solutions at this time:
HardFault_Handler function defined in other files, and only keep the cmb_fault.s;cm_backtrace_fault function to the existing fault handling function, but it should be noted that you must ** ensure the readiness of the function to enter the parameters**, otherwise it may cause The fault diagnosis function and stack printing function cannot operate normally. So if you are a novice, the second solution is not recommended.The default main stack configuration is defined in cmd_def.h, roughly as follows:
…
For example, under the Keil-MDK compiler, STACK will be selected as the name of the main stack block by default, but under some special platforms, the name of the main stack block of the project may not be called `ST
暂无开放 Issues,或尚未同步最近议题。