在线时间1 小时
UID305680
ST金币0
蝴蝶豆0
注册时间2011-7-14
中级会员
- 最后登录
- 1970-1-1
|
发表于 2011-7-29 10:40:17
|
显示全部楼层
a0a.1 0b0c
RE:编译程序时,遇到下列提示,是什么问题?
我在工程里的system_stm32l1xx.c找到了下面的函数。。你搜一下你的工程,然后编译相应的文件。。。
void SystemInit (void)
{
/*!< Set MSION bit */
RCC->CR |= (uint32_t)0x00000100;
/*!< Reset SW[1:0], HPRE[3:0], PPRE1[2:0], PPRE2[2:0], MCOSEL[2:0] and MCOPRE[2:0] bits */
RCC->CFGR &= (uint32_t)0x88FFC00C;
/*!< Reset HSION, HSEON, CSSON and PLLON bits */
RCC->CR &= (uint32_t)0xEEFEFFFE;
/*!< Reset HSEBYP bit */
RCC->CR &= (uint32_t)0xFFFBFFFF;
/*!< Reset PLLSRC, PLLMUL[3:0] and PLLDIV[1:0] bits */
RCC->CFGR &= (uint32_t)0xFF02FFFF;
/*!< Disable all interrupts */
RCC->CIR = 0x00000000;
/*!< Configure the System clock frequency, HCLK, PCLK2 and PCLK1 prescalers */
/*!< Configure the Flash Latency cycles and enable prefetch buffer */
SetSysClock();
} |
|