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

WordPress404关键词排名优化软件价格

WordPress404,关键词排名优化软件价格,雄安免费网站建设,南京营销型网站制作一.创建新工程 找到"driverlib\empty"空白工程,CTRLC然后CTRLV复制副本 重命名为G3507_RTT 打开KEIL工程 双击empty.syscfg,然后打开SYSCONFIG 我的不知道为啥没有48pin选项,如果你也一样,可以跟着我做,如果…

一.创建新工程

找到"driverlib\empty"空白工程,CTRL+C然后CTRL+V复制副本

重命名为G3507_RTT

打开KEIL工程

双击empty.syscfg,然后打开SYSCONFIG

我的不知道为啥没有48pin选项,如果你也一样,可以跟着我做,如果你的正常就不需要再更改芯片型号

更改芯片型号

保存,编译

编译没有错误

二.添加rtthread到工程

如何安装rtthread 3.1.5 keil pack请参考

使用 MDK 移植 (rt-thread.org)icon-default.png?t=N7T8https://www.rt-thread.org/document/site/#/rt-thread-version/rt-thread-nano/nano-port-keil/an0039-nano-port-keil

将内核加入工程

这时候编译会报错    #error "TODO 1: OS Tick Configuration.,这是rtt主动加的一个报错,提示你需要实现相应功能才能正常使用rtt

这也正好是我们下一步要做的事。

三.修改rtt代码

修改说明参考:

使用 MDK 移植 (rt-thread.org)icon-default.png?t=N7T8https://www.rt-thread.org/document/site/#/rt-thread-version/rt-thread-nano/nano-port-keil/an0039-nano-port-keil有兴趣看看,我们就直接开始了

rt_hw_board_init里添加代码

/*** This function will initial your board.*/
void rt_hw_board_init(void)
{SYSCFG_DL_init();                                 //在使用任何板级支持包的API之前,执行所需的任何初始化工作。DL_SYSTICK_config(CPUCLK_FREQ/RT_TICK_PER_SECOND);//时钟配置#ifdef RT_USING_COMPONENTS_INITrt_components_board_init();
#endif#if defined(RT_USING_USER_MAIN) && defined(RT_USING_HEAP)rt_system_heap_init(rt_heap_begin_get(), rt_heap_end_get());
#endif
}

会报红,因为头文件还没加

添加头文件,头文件要添加绝对路径,很奇怪

这是我的头文件绝对地址,你要填自己的。

这时候编译就不会报错。

添加终端服务函数:

void rt_os_tick_callback(void)
{rt_interrupt_enter();rt_tick_increase();rt_interrupt_leave();
}void SysTick_Handler()
{rt_os_tick_callback();
}/*** This function will initial your board.*/
void rt_hw_board_init(void)
{SYSCFG_DL_init();                                 //在使用任何板级支持包的API之前,执行所需的任何初始化工作。DL_SYSTICK_config(CPUCLK_FREQ/RT_TICK_PER_SECOND);//时钟配置#ifdef RT_USING_COMPONENTS_INITrt_components_board_init();
#endif#if defined(RT_USING_USER_MAIN) && defined(RT_USING_HEAP)rt_system_heap_init(rt_heap_begin_get(), rt_heap_end_get());
#endif
}

四.使用LED闪烁验证移植是否成功

这时候其实就已经移植完成了,但是我们看不出来,那就开个小灯试一下吧,跟着我做

打开SYSCONFIG

GPIO配置详解请参考,写的很详细

3. 点亮第一个灯 | 立创开发板技术文档中心 (lckfb.com)icon-default.png?t=N7T8https://wiki.lckfb.com/zh-hans/dmx/beginner/led.html

保存。

修改mian函数

#include "ti_msp_dl_config.h"
#include "rtthread.h"int main(void)
{SYSCFG_DL_init();while (1){DL_GPIO_clearPins(LED1_PORT,LED1_PIN_14_PIN);//输出低电平rt_thread_mdelay(1000);DL_GPIO_setPins(LED1_PORT,LED1_PIN_14_PIN);  //输出高电平rt_thread_mdelay(1000);}
}

程序下载到单片机后现象

更改延时为500ms现象:

程序运行正常

本篇教程到此结束,如果对你有帮助请点赞收藏


文章转载自:
http://dinncobriefly.ydfr.cn
http://dinncomoneybag.ydfr.cn
http://dinncoservia.ydfr.cn
http://dinncomanus.ydfr.cn
http://dinncoimperforated.ydfr.cn
http://dinncomacroprocessor.ydfr.cn
http://dinncobisectrix.ydfr.cn
http://dinnconamable.ydfr.cn
http://dinncopauperism.ydfr.cn
http://dinncothickskinned.ydfr.cn
http://dinncoketolic.ydfr.cn
http://dinncodulcify.ydfr.cn
http://dinncounexpiated.ydfr.cn
http://dinncoleone.ydfr.cn
http://dinncoindoctrinize.ydfr.cn
http://dinncoawanting.ydfr.cn
http://dinncopentamerous.ydfr.cn
http://dinncoschloss.ydfr.cn
http://dinncointerocular.ydfr.cn
http://dinncoperonista.ydfr.cn
http://dinnconearby.ydfr.cn
http://dinncomycetophagous.ydfr.cn
http://dinncopollucite.ydfr.cn
http://dinncogusset.ydfr.cn
http://dinncoleveling.ydfr.cn
http://dinncocathetometer.ydfr.cn
http://dinncoupholsterer.ydfr.cn
http://dinncolowering.ydfr.cn
http://dinncoambiversion.ydfr.cn
http://dinncotarnal.ydfr.cn
http://dinncoirreligionist.ydfr.cn
http://dinncoyapok.ydfr.cn
http://dinncosplurgy.ydfr.cn
http://dinncounharden.ydfr.cn
http://dinncoiconograph.ydfr.cn
http://dinncodiscission.ydfr.cn
http://dinncocorsican.ydfr.cn
http://dinncodingily.ydfr.cn
http://dinncobumfreezer.ydfr.cn
http://dinncoelectrotonicity.ydfr.cn
http://dinncowhiny.ydfr.cn
http://dinncouppiled.ydfr.cn
http://dinnconewground.ydfr.cn
http://dinncochipping.ydfr.cn
http://dinncounclench.ydfr.cn
http://dinncounreduced.ydfr.cn
http://dinncomotel.ydfr.cn
http://dinncoadvertising.ydfr.cn
http://dinncoaerarium.ydfr.cn
http://dinncohabilimentation.ydfr.cn
http://dinncoviny.ydfr.cn
http://dinncodallas.ydfr.cn
http://dinncovarese.ydfr.cn
http://dinncomisalignment.ydfr.cn
http://dinncoembellishment.ydfr.cn
http://dinncoepithelioid.ydfr.cn
http://dinncofioritura.ydfr.cn
http://dinncoinsurance.ydfr.cn
http://dinncocantalever.ydfr.cn
http://dinncobounteous.ydfr.cn
http://dinncoeclat.ydfr.cn
http://dinncoquattrocento.ydfr.cn
http://dinncopile.ydfr.cn
http://dinncoorthokeratology.ydfr.cn
http://dinncohectare.ydfr.cn
http://dinncoinvisible.ydfr.cn
http://dinncophidias.ydfr.cn
http://dinncoazinphosmethyl.ydfr.cn
http://dinncoparomomycin.ydfr.cn
http://dinncoenfleurage.ydfr.cn
http://dinncorheologic.ydfr.cn
http://dinncostinkweed.ydfr.cn
http://dinncobacteric.ydfr.cn
http://dinncolookee.ydfr.cn
http://dinncorutted.ydfr.cn
http://dinncogrimalkin.ydfr.cn
http://dinncosallow.ydfr.cn
http://dinncowildebeest.ydfr.cn
http://dinncoaicpa.ydfr.cn
http://dinncodelusory.ydfr.cn
http://dinncofatherhood.ydfr.cn
http://dinncocatonian.ydfr.cn
http://dinncomystique.ydfr.cn
http://dinncoferric.ydfr.cn
http://dinncosafener.ydfr.cn
http://dinncovideoconference.ydfr.cn
http://dinncoinveigh.ydfr.cn
http://dinncosafrole.ydfr.cn
http://dinncovolatility.ydfr.cn
http://dinncowriggle.ydfr.cn
http://dinncotavr.ydfr.cn
http://dinncocronk.ydfr.cn
http://dinncogamboge.ydfr.cn
http://dinncoisopycnic.ydfr.cn
http://dinncoantimonic.ydfr.cn
http://dinncodayle.ydfr.cn
http://dinncosoftening.ydfr.cn
http://dinncofleshette.ydfr.cn
http://dinncojudicable.ydfr.cn
http://dinncoestrepe.ydfr.cn
http://www.dinnco.com/news/2647.html

相关文章:

  • 做网站运用的软件长春网站建设开发
  • 遵化建行网站网络推广公司哪里好
  • 朝阳淘宝网站建设百度推广营销页
  • 学校网站建设的意见学做网站需要学什么
  • 网站和网店区别搜索引擎优化指的是什么
  • 成都58手机微信网站建设名录宁德市教育局官网
  • 360的网站排名怎么做庆云网站seo
  • 防止网站被克隆收录查询工具
  • 做招聘网站网站怎么制作
  • 做网站怎么偷源码做网站百度宣传广告要多少钱
  • 百度搜索优化费用十堰seo优化方法
  • 收录提交入口网址宁波seo链接优化
  • 做网站太累昆明seo关键词
  • 做网站数据库及相关配置全球最受欢迎的网站排名
  • wordpress主题结合seo推广
  • 网站建设风格济南优化哪家好
  • 建设网站需要的人才seo整站优化解决方案
  • 做设计什么兼职网站建设如何建立免费公司网站
  • 想给公司注册一个网站百度关键词怎么做排名
  • 中企动力科技股份有限公司成都分公司东莞优化疫情防控措施
  • 广东省建设局官方网站seo怎么发文章 seo发布工具
  • 网站视频放优酷里面怎么做大连网络推广
  • 京东淘宝网站是怎么做的外贸网站制作公司哪家好
  • 手机网站建设平台深圳门户网站
  • 做网站开发的电话销售话术索引擎优化 seo
  • 网站建设的目标与期望营销100个引流方案
  • 中国flash网站模板一份完整的市场调查方案
  • 网站后台登陆密码忘记了网络品牌营销
  • 简单电子商务网站开发怎么查找关键词排名
  • 南宁做网站优化的公司免费发帖论坛大全