Reset and clock control (RCC) STM32L

Reset:

1、系统复位:A system reset sets all registers to their reset values except for the RTC, RTC backup

registers and control/status register, RCC_CSR

复位源查看:RCC_CSR

Option byte loader:STM32L15xxx Flash programming manual (PM0062)

2、Power Reset:A power reset sets all registers to their reset values including for the RTC domain

3、RTC and backup registers reset:

复位源:A software reset, triggered by setting the RTCRST bit in the RCC_CSR register

Power reset (BOR/POR/PDR)

Clocks:

各时钟的特点:

1、HSE:高精度

2、HSI:低成本,比HSE具有更快的启动时间

3、MSI:复位、唤醒时。MSI为系统时钟。

降低功耗和唤醒时间

4、PLL:provide a 48 MHz clock to the USB or SDIO。为VCORE的各个range进行倍频

5、LSE:低功耗,高精度。用于RTC/日历、定时等

6、LSI:低功耗。停止待机模式下为IWDG提供时钟

系统时钟源:HSI,HSE,PLL,MSI

时钟安全系统:当外部时钟失效时採取对应措施以保护应用的执行

RTC与LCD的时钟源:LSE或LSI

Watchdog clock:LSI

MCO:时钟输出pin(PA8)

时钟的測量:TIM9/TIM10/TIM11

时间: 2024-10-26 09:56:20

Reset and clock control (RCC) STM32L的相关文章

STM32L0 复位和时钟控制 Reset and clock control (RCC)

时钟源: HSE:外部时钟 HSI16:可以直接用于系统时钟或者作为PLL输入.一般是1%精度 HSI48:The HSI48 clock signal is generated from an internal 48 MHz RC oscillator and can be useddirectly for USB and for random number generator (RNG) MSI:内部RC提供,频率有:65.536KHz,131.072KHz,262.144KHz,524.0

STM32F103X datasheet学习笔记---RCC(reset and clock control)

1.前言 本文主要记录stm32 关于reset 和 clock部分 datasheet的内容. 2.reset 有三种类型的reset:system reset, power reset, backup domain reset system reset 系统reset会将所有的寄存器变成reset值(除clock控制寄存器中的标志位及backup domain中的寄存器) power reset //TODO backup domain reset //todo 3. clocks 3.1

STM32 System and Timer Clock Configurations

STM32 System and Timer Clock Configurations I've started writing some software to drive a series of TLC5940 16 Channel LED Driver chips on an ST STM32F407 Microcontroller. I previously had code working on an Atmel microcontroller, but obviously with

stm32时钟初探

stm32时钟初探 在STM32中,有五个时钟源,为HSI.HSE.LSI.LSE.PLL. ①HSI是高速内部时钟,RC振荡器,频率为8MHz. ②HSE是高速外部时钟,可接石英/陶瓷谐振器,或者接外部时钟源,频率范围为4MHz~16MHz. ③LSI是低速内部时钟,RC振荡器,频率为40kHz. ④LSE是低速外部时钟,接频率为32.768kHz的石英晶体. ⑤PLL为锁相环倍频输出,其时钟输入源可选择为HSI/2.HSE或者HSE/2.倍频可选择为2~16倍,但是其输出频率最大不得超过72

STM32F4 SPI with DMA

STM32F4 SPI with DMA A few people have requested code, so I thought I’d post the code showing how I’ve configured my GPIO, timer, SPI, DMA and NVIC modules, along with some explanation of how the system works.Note that I’m using the STM32F4 Standard

stm32f407使用Keil uV5建立工程日志

目录结构 Common           ——包括延时函数等公用函数 STM32F4_FWLIB     ——固件库 Project             ——UV5工程相关文件 Main                ——主函数 USER                ——用户定义的各种函数,LED等 Startup_config         ——启动配置,好像所有ARM核的都需要这个,配置时钟等信息 Project下有LIST和OBJ目录,将obj文件放在OBJ目录下,将list文件

RCC—使用 HSE/HSI 配置时钟 ---时钟树

本章参考资料:< STM32F4xx 中文参考手册> RCC 章节.学习本章时,配合< STM32F4xx 中文参考手册> RCC 章节一起阅读,效果会更佳,特别是涉及到寄存器说明的部分.RCC : reset clock control 复位和时钟控制器.本章我们主要讲解时钟部分,特别是要着重理解时钟树,理解了时钟树, F429 的一切时钟的来龙去脉都会了如指掌. HSE时钟 HSE:High Speed External Clock signal,即高速的外部时钟.来源:有源晶

第15章 RCC—使用HSE/HSI配置时钟

本章参考资料:<STM32F7xx参考手册>RCC章节. 学习本章时,配合<STM32F7xx参考手册>RCC章节一起阅读,效果会更佳,特别是涉及到寄存器说明的部分. RCC :reset clock control  复位和时钟控制器.本章我们主要讲解时钟部分,特别是要着重理解时钟树,理解了时钟树,F767的一切时钟的来龙去脉都会了如指掌. 15.1  RCC主要作用-时钟部分 设置系统时钟SYSCLK.设置AHB分频因子(决定HCLK等于多少).设置APB2分频因子(决定PCL

程序运行时间测试 - 使用libc 中 clock 函数

我们运行程序的时候,可以简单使用clock函数测试程序的运行时间:(本示例中以微秒为单位输出) https://github.com/yaowenxu/Workplace/blob/master/timer/clocktimer.c /** * Author: Yaowen Xu * Github: https://github.com/yaowenxu * Organization: 北航系统结构研究所 * Date: 2019-08-18 11:59:54 * LastEditTime: 2