1

我一直在研究 Geoffrey Brown 的《发现 STM32 微控制器》一书发现 STM32,其中一个练习(第 60 页)是修改闪烁的 LED 程序以导致断言违规并使用 gdb 在发生这种情况的代码。我真的不知道该怎么做。任何帮助将不胜感激,一两个晚上。

修改您的程序以导致断言冲突——例如,在初始化引脚时将 GPIOC 替换为 66——并使用 GDB 在库源代码中查找断言失败的位置。

#include <stm32f10x.h>
#include <stm32f10x_rcc.h>
#include <stm32f10x_gpio.h>

int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;

//Enable Peripheral Clocks (1)
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
//Configure Pins (2)
GPIO_StructInit(&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
//GPIO_Init(GPIOC, &GPIO_InitStructure);
//Exercise for blinking light program
GPIO_Init(66, &GPIO_InitStructure);

//Configure SysTick Timer (3)
if(SysTick_Config(SystemCoreClock / 1000))
    while(1);
while(1){
    static int ledval = 0;

    //Toggle led (4)
    GPIO_WriteBit(GPIOC, GPIO_Pin_8, (ledval) ? Bit_SET : Bit_RESET);
    ledval = 1 - ledval;
    Delay(250); //Wait 250ms
 }
}

//Timer code (5)
static __IO uint32_t TimingDelay;

void Delay(uint32_t nTime){
   TimingDelay = nTime;
    while(TimingDelay != 0);
}

void SysTick_Handler(void){
    if(TimingDelay != 0x00)
        TimingDelay--;
}

#ifdef USE_FULL_ASSERT
void assert_failed(uint8_t* file, uint32_t line){
    /* Infinite loop*/
    /* Use GDB to find out why we're here*/
    while(1);
}
#endif
4

1 回答 1

1

你试过了吗:

(gdb) break __assert

编辑

stm32f10x_conf.h文件中有一个名为assert_failed.

所以尝试break assert_failed改用,看看是否有效。

于 2014-02-10T22:37:37.293 回答