我 - 一个嵌入式初学者 - 我正在通过嵌入式编程的黑魔法世界奋斗。到目前为止,我已经赢了一堆战斗,但这个新的错误似乎很难。
首先,我的嵌入式设置:
使用许多教程和Q&在那里,我能够设置makefile,链接器和启动代码,并使用STM的标准库(经典的blinky,使用按钮和中断等)运行一些简单的示例。然而,一旦我开始玩SysTick中断,事情变得混乱。
如果将SysTick_Config()调用添加到我的代码中(即使使用空的SysTick_Handler),...
int main(void)
{
/*!< At this stage the microcontroller clock setting is already configured,
[...]
*/
if (SysTick_Config(SystemCoreClock / 120000))
{
// Catch config error
while(1);
}
[...]
...然后我的调试器从(内联)函数NVIC_SetPriority()开始,一旦我点击“run”,我最终进入HardFault_Handler()。 只有在使用调试器时才会发生这种情况。否则代码运行正常(从闪烁的LED指示)。
我已经阅读了很多并尝试了很多(修改编译器选项,链接器,启动,尝试使用SysTick_Config()调用其他代码),但没有解决这个问题。
有一件事可能是暗示: 编译器在两种情况下启动(使用和不使用SysTick_Config调用),位于0x00000184。在没有SysTick_Config调用的情况下,这指向main()的beginnig。使用SysTick_Config这个pionts在NVIC_SetPriority()。
有人知道发生了什么吗?关于我可以继续寻找解决方案的任何提示?
我不知道有什么进一步的信息可以帮助解决这个谜题。请告诉我,我很乐意提供缺失的部分。
非常感谢!
/ edit1:添加了arm-none-eabi-readelf,-objdump和-size的结果。
/ edit2:我删除了代码信息,为实际代码腾出空间。使用这个新的简化版本,调试从
开始08000184: stmdaeq r0, {r4, r6, r8, r9, r10, r11, sp}
readelf:
[ 2] .text PROGBITS 08000184 008184 002dcc 00 AX 0 0 4
...
2: 08000184 0 SECTION LOCAL DEFAULT 2
...
46: 08000184 0 NOTYPE LOCAL DEFAULT 2 $d
的main.c
/* Includes ------------------------------------------------------------------*/
#include "stm32f2xx.h"
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
uint16_t counter = 0;
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
void assert_failed(uint8_t* file, uint32_t line);
void Delay(__IO uint32_t nCount);
void SysTick_Handler(void);
/**
* @brief Main program
* @param None
* @retval None
*/
int main(void)
{
if (SysTick_Config(SystemCoreClock / 12000))
{
// Catch config error
while(1);
}
/*
* Configure the LEDs
*/
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE); // LEDs
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7 | GPIO_Pin_8 | GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOF, &GPIO_InitStructure);
GPIOF->BSRRL = GPIO_Pin_6;
while (1)
{
if (GPIO_ReadInputDataBit(GPIOF, GPIO_Pin_9) == SET)
{
GPIOF->BSRRH = GPIO_Pin_9;
}
else
{
GPIOF->BSRRL = GPIO_Pin_9;
}
Delay(500000);
}
return 0;
}
#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 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) */
/* Infinite loop */
while (1)
{
}
}
#endif
/**
* @brief Delay Function.
* @param nCount:specifies the Delay time length.
* @retval None
*/
void Delay(__IO uint32_t nCount)
{
while (nCount > 0)
{
nCount--;
}
}
/**
* @brief This function handles Hard Fault exception.
* @param None
* @retval None
*/
void HardFault_Handler(void)
{
/* Go to infinite loop when Hard Fault exception occurs */
while (1)
{
}
}
/**
* @brief This function handles SysTick Handler.
* @param None
* @retval None
*/
void SysTick_Handler(void)
{
if (counter > 10000 )
{
if (GPIO_ReadInputDataBit(GPIOF, GPIO_Pin_8) == SET)
{
GPIOF->BSRRH = GPIO_Pin_8;
}
else
{
GPIOF->BSRRL = GPIO_Pin_8;
}
counter = 0;
}
else
{
counter++;
}
}
/ EDIT3:
Soultion : 因为解决方案在评论中被挖掘出来,所以我把它放在这里:
我的链接器文件缺少 ENTRY(your_function_of_choice);
(例如Reset_Handler)。添加这个使我的调试器再次工作(它现在从正确的点开始)。
谢谢大家!
答案 0 :(得分:3)
我强烈感觉在编译器选项或链接描述文件中没有正确指定入口点......
无论代码在".text"
部分的链接时间首先出现,它都会有入口点。
然而,入口点应指向一个特殊的“ init ”函数,该函数将设置堆栈,初始化".bss"
部分(也可能是其他部分),在将控制实际转移到main()
之前,初始化基本操作所需的任何硬件(例如中断控制器和某些系统计时器)以及标准库的任何剩余部分。
我不熟悉这些工具和你的硬件,所以我不能确切地说出那个特殊的“ init ”功能是什么,但这几乎就是问题所在。编译程序的入口点没有指出它。 NVIC_SetPriority()
在那里没有任何意义。