最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

STM32使用內(nèi)部時(shí)鐘

2023-02-17 08:37 作者:文某9  | 我要投稿

首先說(shuō)明一下芯片內(nèi)部并沒(méi)有時(shí)鐘, 而是內(nèi)部振蕩。
使用內(nèi)部振蕩的好處是外部無(wú)需設(shè)計(jì)晶振電路 ,再說(shuō)的簡(jiǎn)單點(diǎn) ,不用外部晶振依然可以讓單片機(jī)正常運(yùn)轉(zhuǎn)。
打開(kāi)任意keli工程

打開(kāi)system_stm32f10x.c


找到systeminit函數(shù) 全部注釋掉

然后在下面粘貼以下代碼,直接替換就可以用了


#define? USE_HSI? ?1 // 是否使用內(nèi)部晶振? 0 不使用? 1使用

void SystemInit ( void )

{


#if USE_HSI

? ? {

//設(shè)置使用內(nèi)部晶振

? ? ? ? /* 開(kāi)啟HSI 即內(nèi)部晶振時(shí)鐘 */

? ? ? ? RCC->CR |= ( uint32_t ) 0x00000001;

? ? ? ? /*選擇HSI為PLL的時(shí)鐘源HSI必須2分頻給PLL*/

? ? ? ? RCC->CFGR |= ( uint32_t ) RCC_CFGR_PLLSRC_HSI_Div2;

? ? ? ? /*PLLCLK=8/2*9=36MHz? 設(shè)置倍頻得到時(shí)鐘源PLL的頻率*/

? ? ? ? RCC->CFGR |= ( uint32_t ) RCC_CFGR_PLLMULL6; //設(shè)置倍頻后的頻率

? ? ? ? /* PLL不分頻輸出 ?*/

? ? ? ? RCC->CFGR |= ( uint32_t ) RCC_CFGR_HPRE_DIV1;

? ? ? ? /* 使能 PLL時(shí)鐘 */

? ? ? ? RCC->CR |= RCC_CR_PLLON;

? ? ? ? /* 等待PLL時(shí)鐘就緒*/

? ? ? ? while ( ( RCC->CR & RCC_CR_PLLRDY ) == 0 )

? ? ? ? {

? ? ? ? }

? ? ? ? /* 選擇PLL為系統(tǒng)時(shí)鐘的時(shí)鐘源 */

? ? ? ? RCC->CFGR &= ( uint32_t ) ( ( uint32_t ) ~ ( RCC_CFGR_SW ) );

? ? ? ? RCC->CFGR |= ( uint32_t ) RCC_CFGR_SW_PLL;

? ? ? ? /* 等到PLL成為系統(tǒng)時(shí)鐘的時(shí)鐘源*/

? ? ? ? while ( ( RCC->CFGR & ( uint32_t ) RCC_CFGR_SWS ) != ( uint32_t ) 0x08 )

? ? ? ? { }

? ? }

#else

? ? {

//設(shè)置使用外部8M晶振

? ? ? ? /* Reset the RCC clock configuration to the default reset state(for debug purpose) */

? ? ? ? /* Set HSION bit */

? ? ? ? RCC->CR |= ( uint32_t ) 0x00000001;


? ? ? ? /* Reset SW, HPRE, PPRE1, PPRE2, ADCPRE and MCO bits */

#ifndef STM32F10X_CL

? ? ? ? RCC->CFGR &= ( uint32_t ) 0xF8FF0000;

#else

? ? ? ? RCC->CFGR &= ( uint32_t ) 0xF0FF0000;

#endif /* STM32F10X_CL */


? ? ? ? /* Reset HSEON, CSSON and PLLON bits */

? ? ? ? RCC->CR &= ( uint32_t ) 0xFEF6FFFF;


? ? ? ? /* Reset HSEBYP bit */

? ? ? ? RCC->CR &= ( uint32_t ) 0xFFFBFFFF;


? ? ? ? /* Reset PLLSRC, PLLXTPRE, PLLMUL and USBPRE/OTGFSPRE bits */

? ? ? ? RCC->CFGR &= ( uint32_t ) 0xFF80FFFF;


#ifdef STM32F10X_CL

? ? ? ? /* Reset PLL2ON and PLL3ON bits */

? ? ? ? RCC->CR &= ( uint32_t ) 0xEBFFFFFF;


? ? ? ? /* Disable all interrupts and clear pending bits? */

? ? ? ? RCC->CIR = 0x00FF0000;


? ? ? ? /* Reset CFGR2 register */

? ? ? ? RCC->CFGR2 = 0x00000000;

#elif defined (STM32F10X_LD_VL) || defined (STM32F10X_MD_VL) || (defined STM32F10X_HD_VL)

? ? ? ? /* Disable all interrupts and clear pending bits? */

? ? ? ? RCC->CIR = 0x009F0000;


? ? ? ? /* Reset CFGR2 register */

? ? ? ? RCC->CFGR2 = 0x00000000;

#else

? ? ? ? /* Disable all interrupts and clear pending bits? */

? ? ? ? RCC->CIR = 0x009F0000;

#endif /* STM32F10X_CL */


#if defined (STM32F10X_HD) || (defined STM32F10X_XL) || (defined STM32F10X_HD_VL)

#ifdef DATA_IN_ExtSRAM

? ? ? ? SystemInit_ExtMemCtl();

#endif /* DATA_IN_ExtSRAM */

#endif


? ? ? ? /* Configure the System clock frequency, HCLK, PCLK2 and PCLK1 prescalers */

? ? ? ? /* Configure the Flash Latency cycles and enable prefetch buffer */

? ? ? ? SetSysClock();


#ifdef VECT_TAB_SRAM

? ? ? ? SCB->VTOR = SRAM_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM. */

#else

? ? ? ? SCB->VTOR = FLASH_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal FLASH. */

#endif

? ? }


#endif

}


然后我簡(jiǎn)單拉高/低是試了一下引腳的電壓 是正常的 大家可以去試試 有問(wèn)題歡迎指正

最后有興趣大家可以關(guān)注我的公眾號(hào)文子嵌入式或Q交流群獲取更多資料

Q交流群 721421120 讓我們一起進(jìn)步


STM32使用內(nèi)部時(shí)鐘的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
平顺县| 云南省| 金乡县| 辰溪县| 中超| 鄯善县| 比如县| 荔波县| 合江县| 罗山县| 连州市| 石渠县| 和政县| 柳州市| 凌云县| 海口市| 合川市| 凤台县| 东阳市| 宝山区| 西乌珠穆沁旗| 高安市| 繁昌县| 辉南县| 米易县| 临江市| 崇明县| 武安市| 舞阳县| 靖安县| 渑池县| 日照市| 南雄市| 涡阳县| 手机| 类乌齐县| 溧阳市| 新乡市| 高平市| 旌德县| 澄城县|