刚用STM32,一个小的IO闪灯程序。
想读回运行的时钟源和频率,打算用RCC_GetSYSCLKSource(),但是一直提示tmp未使用,加了volatile定义也不行,不知道是什么问题。
以下是部分代码,闪灯运行正常
#include "stm32f10x.h"
#include "stm32f10x_rcc.h"
int main()
{
uint8_t tmp;
IO_Init();
tmp=RCC_GetSYSCLKSource();
while(1)
{
ledon();
delay;
ledoff;
delay;
}
}
此帖出自
小平头技术问答
2.想知道tmp的值,把while(1)改成while(tmp)试试
一周热门 更多>