当前位置: 首页 > news >正文

如何做发卡网站温州seo公司排名

如何做发卡网站,温州seo公司排名,大连网络公司报价,网站后台看不到部分内容单片机外部晶振故障后自动切换内部晶振——以STM32为例 作者日期版本说明Dog Tao2023.08.02V1.0发布初始版本 文章目录 单片机外部晶振故障后自动切换内部晶振——以STM32为例背景外部晶振与内部振荡器STM32F103时钟系统STM32F407时钟系统 代码实现系统时钟设置流程时钟源检测…单片机外部晶振故障后自动切换内部晶振——以STM32为例 作者日期版本说明Dog Tao2023.08.02V1.0发布初始版本 文章目录 单片机外部晶振故障后自动切换内部晶振——以STM32为例背景外部晶振与内部振荡器STM32F103时钟系统STM32F407时钟系统 代码实现系统时钟设置流程时钟源检测与切换使用内部振荡器 总结 背景 时钟信号是单片机的心跳对嵌入式系统的长期稳定运行有着至关重要的作用。现代单片机的时钟信号一般都支持外部时钟、外部晶体振荡器、内部RC振荡器等形式的输入。外部晶体振荡器晶振由于其高精度、高稳定性、低温飘、低成本的特性广泛应用于各类对通讯、时间、性能要求严格的场合。 外部晶振与内部振荡器 外部晶振这种时钟源来自于微控制器外部的晶振或者振荡器。晶振是一种机械振动器件利用压电效应或反压电效应产生精确的频率。外部晶振的主要优点是精度高稳定性好。但是他们可能需要额外的电路空间并且可能更容易受到环境因素如温度和震动的影响。 内部振荡器这是一种集成在微控制器内部的时钟源。它通常是基于RC电阻-电容网络的振荡器。内部振荡器的优点是它们不需要额外的硬件更便宜更节省空间。但是他们的频率精度和稳定性通常较低。 在实际应用中选择哪种时钟源取决于具体的设计需求。对于需要高精度和稳定性的应用通常会选择外部晶振。对于成本和空间更为重要的应用内部振荡器可能是一个更好的选择。 STM32F103时钟系统 STM32F103的时钟系统相当复杂主要有四种时钟源高速内部HSI时钟高速外部HSE时钟低速内部LSI时钟以及低速外部LSE时钟。 高速内部HSI时钟一个自校准的内部RC振荡器提供8MHz的时钟。高速外部HSE时钟可以连接到一个外部4-16 MHz的晶振或者用户提供的时钟源。低速内部LSI时钟一个内部RC振荡器提供40kHz的时钟主要供独立看门狗和自动唤醒单元使用。低速外部LSE时钟可以连接到一个外部32.768 kHz的晶振主要用于RTC实时时钟和LCD。 如果使用外部晶振HSESTM32F103的最大系统时钟频率可以达到72 MHz。如果使用内部振荡器HSISTM32F103的最大系统时钟频率可以达到64 MHz。 STM32F407时钟系统 STM32F407的时钟系统与STM32F103的类似也包括HSIHSELSI和LSE四种时钟。但是其高速内部时钟频率达到了16MHz。 在STM32F407中无论是16 MHz的HSI还是最高可以到24 MHz的HSE都可以通过PLL倍频到168 MHz作为系统时钟频率。 STM32F103的时钟系统 代码实现 系统时钟设置流程 在STM32F103的标准库函数中“system_stm32f10x.c”文件提供了多个不同频率的系统时钟设置方法可以通过宏定义的方式条件编译指定时钟频率的设置函数如下图所示 基于标准库函数的系统时钟设置调用路径依次为 启动文件“startup_stm32f103x8.s”调用位于“system_stm32f10x.c”文件中的 SystemInit()函数。SystemInit()函数调用SetSysClock()函数。SetSysClock()函数根据上述宏定义调用不同的时钟设置函数将系统时钟设置为指定频率。使用全局变量SystemCoreClock可获取当前系统的时钟频率。 #mermaid-svg-l2Zu03cOOnJS7qn0 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .error-icon{fill:#552222;}#mermaid-svg-l2Zu03cOOnJS7qn0 .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-l2Zu03cOOnJS7qn0 .marker{fill:#333333;stroke:#333333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .marker.cross{stroke:#333333;}#mermaid-svg-l2Zu03cOOnJS7qn0 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-l2Zu03cOOnJS7qn0 .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .cluster-label text{fill:#333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .cluster-label span{color:#333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .label text,#mermaid-svg-l2Zu03cOOnJS7qn0 span{fill:#333;color:#333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .node rect,#mermaid-svg-l2Zu03cOOnJS7qn0 .node circle,#mermaid-svg-l2Zu03cOOnJS7qn0 .node ellipse,#mermaid-svg-l2Zu03cOOnJS7qn0 .node polygon,#mermaid-svg-l2Zu03cOOnJS7qn0 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-svg-l2Zu03cOOnJS7qn0 .node .label{text-align:center;}#mermaid-svg-l2Zu03cOOnJS7qn0 .node.clickable{cursor:pointer;}#mermaid-svg-l2Zu03cOOnJS7qn0 .arrowheadPath{fill:#333333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-svg-l2Zu03cOOnJS7qn0 .flowchart-link{stroke:#333333;fill:none;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edgeLabel{background-color:#e8e8e8;text-align:center;}#mermaid-svg-l2Zu03cOOnJS7qn0 .edgeLabel rect{opacity:0.5;background-color:#e8e8e8;fill:#e8e8e8;}#mermaid-svg-l2Zu03cOOnJS7qn0 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-svg-l2Zu03cOOnJS7qn0 .cluster text{fill:#333;}#mermaid-svg-l2Zu03cOOnJS7qn0 .cluster span{color:#333;}#mermaid-svg-l2Zu03cOOnJS7qn0 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-svg-l2Zu03cOOnJS7qn0 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;} startup_stm32f103x8.s SystemInit SetSysClock SetSysClockToHSE SetSysClockTo36 SetSysClockTo72 Global variable: SystemCoreClock 时钟源检测与切换 在上述位于“system_stm32f10x.c”文件中系统时钟设置函数中已经内置了相关功能的模板以SetSysClockTo72()函数为例 /*** brief Sets System clock frequency to 72MHz and configure HCLK, PCLK2 * and PCLK1 prescalers. * note This function should be used only after reset.* param None* retval None*/ static void SetSysClockTo72(void) {__IO uint32_t StartUpCounter 0, HSEStatus 0;/* SYSCLK, HCLK, PCLK2 and PCLK1 configuration ---------------------------*/ /* Enable HSE */ RCC-CR | ((uint32_t)RCC_CR_HSEON);/* Wait till HSE is ready and if Time out is reached exit */do{HSEStatus RCC-CR RCC_CR_HSERDY;StartUpCounter; } while((HSEStatus 0) (StartUpCounter ! HSE_STARTUP_TIMEOUT));if ((RCC-CR RCC_CR_HSERDY) ! RESET){HSEStatus (uint32_t)0x01;}else{HSEStatus (uint32_t)0x00;} if (HSEStatus (uint32_t)0x01){/* Enable Prefetch Buffer */FLASH-ACR | FLASH_ACR_PRFTBE;/* Flash 2 wait state */FLASH-ACR (uint32_t)((uint32_t)~FLASH_ACR_LATENCY);FLASH-ACR | (uint32_t)FLASH_ACR_LATENCY_2; /* HCLK SYSCLK */RCC-CFGR | (uint32_t)RCC_CFGR_HPRE_DIV1;/* PCLK2 HCLK */RCC-CFGR | (uint32_t)RCC_CFGR_PPRE2_DIV1;/* PCLK1 HCLK */RCC-CFGR | (uint32_t)RCC_CFGR_PPRE1_DIV2;#ifdef STM32F10X_CL/* Configure PLLs ------------------------------------------------------*//* PLL2 configuration: PLL2CLK (HSE / 5) * 8 40 MHz *//* PREDIV1 configuration: PREDIV1CLK PLL2 / 5 8 MHz */RCC-CFGR2 (uint32_t)~(RCC_CFGR2_PREDIV2 | RCC_CFGR2_PLL2MUL |RCC_CFGR2_PREDIV1 | RCC_CFGR2_PREDIV1SRC);RCC-CFGR2 | (uint32_t)(RCC_CFGR2_PREDIV2_DIV5 | RCC_CFGR2_PLL2MUL8 |RCC_CFGR2_PREDIV1SRC_PLL2 | RCC_CFGR2_PREDIV1_DIV5);/* Enable PLL2 */RCC-CR | RCC_CR_PLL2ON;/* Wait till PLL2 is ready */while((RCC-CR RCC_CR_PLL2RDY) 0){}/* PLL configuration: PLLCLK PREDIV1 * 9 72 MHz */ RCC-CFGR (uint32_t)~(RCC_CFGR_PLLXTPRE | RCC_CFGR_PLLSRC | RCC_CFGR_PLLMULL);RCC-CFGR | (uint32_t)(RCC_CFGR_PLLXTPRE_PREDIV1 | RCC_CFGR_PLLSRC_PREDIV1 | RCC_CFGR_PLLMULL9); #else /* PLL configuration: PLLCLK HSE * 9 72 MHz */RCC-CFGR (uint32_t)((uint32_t)~(RCC_CFGR_PLLSRC | RCC_CFGR_PLLXTPRE |RCC_CFGR_PLLMULL));RCC-CFGR | (uint32_t)(RCC_CFGR_PLLSRC_HSE | RCC_CFGR_PLLMULL9); #endif /* STM32F10X_CL *//* Enable PLL */RCC-CR | RCC_CR_PLLON;/* Wait till PLL is ready */while((RCC-CR RCC_CR_PLLRDY) 0){}/* Select PLL as system clock source */RCC-CFGR (uint32_t)((uint32_t)~(RCC_CFGR_SW));RCC-CFGR | (uint32_t)RCC_CFGR_SW_PLL; /* Wait till PLL is used as system clock source */while ((RCC-CFGR (uint32_t)RCC_CFGR_SWS) ! (uint32_t)0x08){}}else{ /* If HSE fails to start-up, the application will have wrong clock configuration. User can add here some code to deal with this error */} }因此只需要设计实现当外部晶振启动失败后的情况即可函数框架如下 static void SetSysClockTo72(void) {__IO uint32_t StartUpCounter 0, HSEStatus 0;/* 省略无关内容 */ if (HSEStatus (uint32_t)0x01){/* HSE启动成功 */}else{ /* 自定内容HSE启动失败尝试启动内部振荡器并更新系统时钟 */SetSysClockTo48_HSI();SystemCoreClockUpdate();} }使用内部振荡器 HSE启动失败尝试启动内部振荡器并更新系统时钟的自定义代码示例如下 static void SetSysClockTo48_HSI() {/* 开启HSI 即内部晶振时钟 */RCC-CR | (uint32_t)0x00000001; /*选择HSI为PLL的时钟源HSI必须2分频给PLL*/RCC-CFGR | (uint32_t)RCC_CFGR_PLLSRC_HSI_Div2; /*PLLCLK8/2*1248MHz 设置倍频得到时钟源PLL的频率*/RCC-CFGR | (uint32_t)RCC_CFGR_PLLMULL12;/* PLL不分频输出 */RCC-CFGR | (uint32_t)RCC_CFGR_HPRE_DIV1;/* 使能 PLL时钟 */RCC-CR | RCC_CR_PLLON;/* 等待PLL时钟就绪*/while((RCC-CR RCC_CR_PLLRDY) 0){}/* 选择PLL为系统时钟的时钟源 */RCC-CFGR (uint32_t)((uint32_t)~(RCC_CFGR_SW));RCC-CFGR | (uint32_t)RCC_CFGR_SW_PLL; /* 等到PLL成为系统时钟的时钟源*/while ((RCC-CFGR (uint32_t)RCC_CFGR_SWS) ! (uint32_t)0x08){} }使用内部振荡器设置系统时钟之后需要调用预设的SystemCoreClockUpdate()完成时钟频率的更新更新全局变量SystemCoreClock的值。 /*** brief Update SystemCoreClock variable according to Clock Register Values.* The SystemCoreClock variable contains the core clock (HCLK), it can* be used by the user application to setup the SysTick timer or configure* other parameters.* * note Each time the core clock (HCLK) changes, this function must be called* to update SystemCoreClock variable value. Otherwise, any configuration* based on this variable will be incorrect. * * note - The system frequency computed by this function is not the real * frequency in the chip. It is calculated based on the predefined * constant and the selected clock source:* * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*)* * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**)* * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**) * or HSI_VALUE(*) multiplied by the PLL factors.* * (*) HSI_VALUE is a constant defined in stm32f1xx.h file (default value* 8 MHz) but the real value may vary depending on the variations* in voltage and temperature. * * (**) HSE_VALUE is a constant defined in stm32f1xx.h file (default value* 8 MHz or 25 MHz, depedning on the product used), user has to ensure* that HSE_VALUE is same as the real frequency of the crystal used.* Otherwise, this function may have wrong result.* * - The result of this function could be not correct when using fractional* value for HSE crystal.* param None* retval None*/ void SystemCoreClockUpdate (void) {uint32_t tmp 0, pllmull 0, pllsource 0;#ifdef STM32F10X_CLuint32_t prediv1source 0, prediv1factor 0, prediv2factor 0, pll2mull 0; #endif /* STM32F10X_CL */#if defined (STM32F10X_LD_VL) || defined (STM32F10X_MD_VL) || (defined STM32F10X_HD_VL)uint32_t prediv1factor 0; #endif /* STM32F10X_LD_VL or STM32F10X_MD_VL or STM32F10X_HD_VL *//* Get SYSCLK source -------------------------------------------------------*/tmp RCC-CFGR RCC_CFGR_SWS;switch (tmp){case 0x00: /* HSI used as system clock */SystemCoreClock HSI_VALUE;break;case 0x04: /* HSE used as system clock */SystemCoreClock HSE_VALUE;break;case 0x08: /* PLL used as system clock *//* Get PLL clock source and multiplication factor ----------------------*/pllmull RCC-CFGR RCC_CFGR_PLLMULL;pllsource RCC-CFGR RCC_CFGR_PLLSRC;#ifndef STM32F10X_CL pllmull ( pllmull 18) 2;if (pllsource 0x00){/* HSI oscillator clock divided by 2 selected as PLL clock entry */SystemCoreClock (HSI_VALUE 1) * pllmull;}else{#if defined (STM32F10X_LD_VL) || defined (STM32F10X_MD_VL) || (defined STM32F10X_HD_VL)prediv1factor (RCC-CFGR2 RCC_CFGR2_PREDIV1) 1;/* HSE oscillator clock selected as PREDIV1 clock entry */SystemCoreClock (HSE_VALUE / prediv1factor) * pllmull; #else/* HSE selected as PLL clock entry */if ((RCC-CFGR RCC_CFGR_PLLXTPRE) ! (uint32_t)RESET){/* HSE oscillator clock divided by 2 */SystemCoreClock (HSE_VALUE 1) * pllmull;}else{SystemCoreClock HSE_VALUE * pllmull;}#endif} #elsepllmull pllmull 18;if (pllmull ! 0x0D){pllmull 2;}else{ /* PLL multiplication factor PLL input clock * 6.5 */pllmull 13 / 2; }if (pllsource 0x00){/* HSI oscillator clock divided by 2 selected as PLL clock entry */SystemCoreClock (HSI_VALUE 1) * pllmull;}else{/* PREDIV1 selected as PLL clock entry *//* Get PREDIV1 clock source and division factor */prediv1source RCC-CFGR2 RCC_CFGR2_PREDIV1SRC;prediv1factor (RCC-CFGR2 RCC_CFGR2_PREDIV1) 1;if (prediv1source 0){ /* HSE oscillator clock selected as PREDIV1 clock entry */SystemCoreClock (HSE_VALUE / prediv1factor) * pllmull; }else{/* PLL2 clock selected as PREDIV1 clock entry *//* Get PREDIV2 division factor and PLL2 multiplication factor */prediv2factor ((RCC-CFGR2 RCC_CFGR2_PREDIV2) 4) 1;pll2mull ((RCC-CFGR2 RCC_CFGR2_PLL2MUL) 8 ) 2; SystemCoreClock (((HSE_VALUE / prediv2factor) * pll2mull) / prediv1factor) * pllmull; }} #endif /* STM32F10X_CL */ break;default:SystemCoreClock HSI_VALUE;break;}/* Compute HCLK clock frequency ----------------*//* Get HCLK prescaler */tmp AHBPrescTable[((RCC-CFGR RCC_CFGR_HPRE) 4)];/* HCLK clock frequency */SystemCoreClock tmp; }总结 本文所述的设计方法能够在外部晶振故障后自动切换到内部晶振提高系统的可靠性与稳定性。注意上述示例只在单片机启动时进行时钟源检测因此如果是处理运行时的突发时钟故障需要设计配套的看门狗在系统陷入异常状态后自动重启系统。
http://www.w-s-a.com/news/133911/

相关文章:

  • 微商城科技淄博网站建设优化seo
  • 杭州 网站设计制作东圃手机网站开发
  • 网站文章页内链结构不好可以改吗微信平台如何开发
  • 炫酷业务网站课程网站如何建设方案
  • 网站建设服务器可以租吗wordpress微信打赏
  • 网站制作的重要流程图大连网站优化快速排名
  • 河南省住房建设厅官方网站注册公司邮箱需要什么
  • 美橙网站注册华为手机网站建设策划方案论文
  • 河南省和建设厅网站首页在线图片翻译
  • 关于备案空壳网站清理通知去别人网站挂黑链
  • 做网站待遇世界购物平台排行榜
  • 售后服务网站什么网站免费做简历模板
  • 网站模板怎么修改成都网站优化seo
  • 给装修公司做推广的网站wordpress站点的根目录
  • 怎么创建企业网站wordpress怎么做404页面跳转
  • 福建省住房和建设厅网站网站做著作权
  • 编程代码网站网站搭建的注意事项
  • 音乐网站排名公司如何做自己的网站
  • 网站设计模式三网合一网站源代码
  • 珠海市品牌网站建设哪家好宛城区网站制作
  • 网站维护工程师代写文章兼职
  • 贵州城乡和建设厅网站企业网站备案名称窍门
  • .cc后缀网站湛江霞山
  • 青岛制作网站软件ui设计培训哪里好
  • 网站建设的构思环保公司宣传册设计样本
  • 如何做微网站网站和网店的区别
  • 免费下载建设银行官方网站下载天河区做网站
  • 中文网站建设开发北京网站建设公司升上去
  • 邯郸网站设计 贝壳下拉服务器绑定网站打不开
  • 重庆网站建设帝玖科技手机网站建设价钱是多少