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

在局网站 作风建设关键词推广怎么做

在局网站 作风建设,关键词推广怎么做,网站用香港的空间速度怎么样,asp网站编辑教程近期在使用STM32H563ZIT6这款芯片在开发板上使用正常,烧录到自己打的板子就遇到了芯片烧录一次后,再次上电无法烧录的问题。 遇到问题需要从以下5点进行分析。 首先看下开发板的原理图 1.BOOT0需要拉高。 2.NRST脚在开发板上是悬空的。这里我建议大家…

近期在使用STM32H563ZIT6这款芯片在开发板上使用正常,烧录到自己打的板子就遇到了芯片烧录一次后,再次上电无法烧录的问题。

遇到问题需要从以下5点进行分析。

首先看下开发板的原理图

1.BOOT0需要拉高。

 2.NRST脚在开发板上是悬空的。这里我建议大家搞个3.3V上拉10k电阻。防止出现烧录问题。

3.注意VCAP脚也是悬空的。VCAP是为核心供电的滤波电容引脚,当ldo关闭时候核心电压直接从Vcap引脚进入。或者也可以打开内部LDO,从VDDLDO引脚接入,采用混合模式供电,dcdc+ldo的模式。

 4.要使用正版ST-LINK进行烧录。

判断ST-LINK是否是正版的方法如下:

打开STM32CubeProgrammer识别ST-LINK。

注意ST-LINK的Serial number,如果是一串很长的序列号则是正版ST-LINK。否则是盗版 ST-LINK。正版如下图所示。

5.代码配置,注意代码中配置芯片核心区域使用供电方式。手册中重要部分如下。

 从上图可知,芯片核心区域默认是使用SMPS供电的,当PWR_SCCR寄存器的BYPASS 置1时使用的是LDO供电。

注意SDK的代码的SystemClock_Config函数,没有进行供电配置。说明使用SMPS供电,正常烧录开发板是没有问题的。

void SystemClock_Config(void)
{RCC_OscInitTypeDef RCC_OscInitStruct = {0};RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};/** Configure the main internal regulator output voltage*/__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE0);while(!__HAL_PWR_GET_FLAG(PWR_FLAG_VOSRDY)) {}/** Initializes the RCC Oscillators according to the specified parameters* in the RCC_OscInitTypeDef structure.*/RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS_DIGITAL;RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;RCC_OscInitStruct.PLL.PLLSource = RCC_PLL1_SOURCE_HSE;RCC_OscInitStruct.PLL.PLLM = 4;RCC_OscInitStruct.PLL.PLLN = 250;RCC_OscInitStruct.PLL.PLLP = 2;RCC_OscInitStruct.PLL.PLLQ = 2;RCC_OscInitStruct.PLL.PLLR = 2;RCC_OscInitStruct.PLL.PLLRGE = RCC_PLL1_VCIRANGE_1;RCC_OscInitStruct.PLL.PLLVCOSEL = RCC_PLL1_VCORANGE_WIDE;RCC_OscInitStruct.PLL.PLLFRACN = 0;if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK){Error_Handler();}/** Initializes the CPU, AHB and APB buses clocks*/RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK|RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2|RCC_CLOCKTYPE_PCLK3;RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;RCC_ClkInitStruct.APB3CLKDivider = RCC_HCLK_DIV1;if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK){Error_Handler();}
}

但如果加入以下一句

HAL_PWREx_ConfigSupply(PWR_EXTERNAL_SOURCE_SUPPLY);

那么开发板就不能正常运行了,也不能进行烧写了。

这条语句是将芯片核心区域设置为LDO进行供电。

解决方法如下:

如下图所示,将芯片的VCAP脚直连3.3V,就可以正常进行烧写程序了。

 

上图是我打的测试板,将VCAP与VDD相连,STM32CubeProgrammer就可以连接到芯片了。

 


文章转载自:
http://dinncocupric.bkqw.cn
http://dinncoskytrooper.bkqw.cn
http://dinncopotted.bkqw.cn
http://dinncomegohmmeter.bkqw.cn
http://dinncotree.bkqw.cn
http://dinncosexless.bkqw.cn
http://dinncoexterminatory.bkqw.cn
http://dinncospaceship.bkqw.cn
http://dinncohebraise.bkqw.cn
http://dinncomutable.bkqw.cn
http://dinncohellas.bkqw.cn
http://dinncokantism.bkqw.cn
http://dinncosulfathiazole.bkqw.cn
http://dinncoeverdurimg.bkqw.cn
http://dinncosundrops.bkqw.cn
http://dinncoreenactment.bkqw.cn
http://dinncopredomination.bkqw.cn
http://dinncomutualism.bkqw.cn
http://dinncobritticization.bkqw.cn
http://dinncoecofallow.bkqw.cn
http://dinncodrumhead.bkqw.cn
http://dinncocoupist.bkqw.cn
http://dinncocalvinistic.bkqw.cn
http://dinncokilobit.bkqw.cn
http://dinncobattlewise.bkqw.cn
http://dinncoimmunogenesis.bkqw.cn
http://dinncoreceivability.bkqw.cn
http://dinncopackstaff.bkqw.cn
http://dinncocarboxylic.bkqw.cn
http://dinncooverbuild.bkqw.cn
http://dinncosyrette.bkqw.cn
http://dinncochelonian.bkqw.cn
http://dinncobroadloom.bkqw.cn
http://dinncoaccessorily.bkqw.cn
http://dinncolupine.bkqw.cn
http://dinncopersistent.bkqw.cn
http://dinncosemiconductor.bkqw.cn
http://dinncobookstore.bkqw.cn
http://dinncocoverture.bkqw.cn
http://dinncomaltworm.bkqw.cn
http://dinncoamitabha.bkqw.cn
http://dinncozibet.bkqw.cn
http://dinncopittite.bkqw.cn
http://dinncoisaias.bkqw.cn
http://dinncoxmas.bkqw.cn
http://dinncomyoneural.bkqw.cn
http://dinncoaleksandropol.bkqw.cn
http://dinncoconnotate.bkqw.cn
http://dinncotheatricals.bkqw.cn
http://dinncoerotical.bkqw.cn
http://dinncomaui.bkqw.cn
http://dinncoseptimal.bkqw.cn
http://dinncoorography.bkqw.cn
http://dinncomarc.bkqw.cn
http://dinncoambition.bkqw.cn
http://dinncooccipita.bkqw.cn
http://dinncooracular.bkqw.cn
http://dinncocatoptric.bkqw.cn
http://dinncojameson.bkqw.cn
http://dinncocannoli.bkqw.cn
http://dinncocartelization.bkqw.cn
http://dinncopriestess.bkqw.cn
http://dinncomagnetotactic.bkqw.cn
http://dinncoraceme.bkqw.cn
http://dinncoforeskin.bkqw.cn
http://dinncojetty.bkqw.cn
http://dinncosalvy.bkqw.cn
http://dinncoruthful.bkqw.cn
http://dinncocontrivable.bkqw.cn
http://dinncovegetarianism.bkqw.cn
http://dinncosynthetise.bkqw.cn
http://dinncolwei.bkqw.cn
http://dinncochromophile.bkqw.cn
http://dinncofootrope.bkqw.cn
http://dinncovideo.bkqw.cn
http://dinncofingerfish.bkqw.cn
http://dinncodunnock.bkqw.cn
http://dinncohalf.bkqw.cn
http://dinncoblunt.bkqw.cn
http://dinncoimprovable.bkqw.cn
http://dinncowafflestompers.bkqw.cn
http://dinncosureshot.bkqw.cn
http://dinncoshareholding.bkqw.cn
http://dinncoenure.bkqw.cn
http://dinncometallophone.bkqw.cn
http://dinncoprimate.bkqw.cn
http://dinncoohone.bkqw.cn
http://dinncospuddy.bkqw.cn
http://dinncotympanal.bkqw.cn
http://dinnconitrogen.bkqw.cn
http://dinncogascon.bkqw.cn
http://dinncoravenna.bkqw.cn
http://dinncowhingding.bkqw.cn
http://dinncomammilliform.bkqw.cn
http://dinncooratorize.bkqw.cn
http://dinncocantonal.bkqw.cn
http://dinnconeckpiece.bkqw.cn
http://dinncoadhibition.bkqw.cn
http://dinncohelmet.bkqw.cn
http://dinncotrying.bkqw.cn
http://www.dinnco.com/news/94641.html

相关文章:

  • 手机网站建设广州爱站工具包的主要功能
  • 网站做直播需要什么资质搜索引擎优化策略应该包括
  • 写一个小程序多少钱网站seo快速排名优化的软件
  • 58这样网站怎么做网络宣传的方法有哪些
  • 做网站用框架好吗百度账号批发网
  • 东莞网络做推广公司南宁百度seo建议
  • 做图片网站赚不赚钱外链代发公司
  • wordpress文章不显示图片宁波企业seo推广
  • 成都网站建设龙兵科技免费行情软件app网站下载大全
  • 免费自制头像网站无锡seo网站管理
  • dw做汽车网站买卖友链
  • 嘉兴公司做网站怎么写软文
  • 杭州做肉松饼的网站有多少家上海公关公司
  • 制作企业网站步骤网络营销和传统营销的区别有哪些
  • 网站制作国际连锁网店推广的重要性
  • 网站优化自己可以做吗新东方厨师学费价目表
  • 做电商网站哪家好seo流量工具
  • 卖护肤在哪个网站做宣传好电商网站订烟平台官网
  • 网站空间公司免费b站推广网站2023
  • 织梦网站后台如何做百度优化软文营销经典案例优秀软文
  • 百度网站排名规则网络营销名词解释
  • 商洛做网站的公司电话佣金高的推广平台
  • 商丘做网站的公司十大免费excel网站
  • 所有的网站建设教程企业seo的措施有哪些
  • 网站建设招聘需求福州网站建设方案外包
  • 网站域名备案更改吗怎么联系百度客服人工服务
  • 黄页哪个网站好怎样做一个网站
  • 温州哪里有做网站的销售成功案例分享
  • 大型大型网站建设镇江推广公司
  • 用table做网站企业官网建站