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

seo优化的网站seo实战

seo优化的网站,seo实战,如何做纯文本网站,重庆专业网站排名团队1、复制03-流水灯项目,重命名06-按键点灯(中断法) 在\Drivers\BSP目录下创建一个文件夹exti,在该文件夹下,创建两个文件exti.c和exti.h文件,并且把这两个文件加载到项目中,打开项目工程文件 加载…

 1、复制03-流水灯项目,重命名06-按键点灯(中断法)

        在\Drivers\BSP目录下创建一个文件夹exti,在该文件夹下,创建两个文件exti.c和exti.h文件,并且把这两个文件加载到项目中,打开项目工程文件

         加载完新建的文件之后,找到exti.c文件双击打开,写入代码:

#include "sys.h"
#include "exti.h"

编译项目,编译通过,找到exti.h文件,双击打开,写入代码:

#ifndef __EXTI_H__
#define __EXTI_H__

#endif

2、代码

 exti.c

#include "sys.h"
#include "exti.h"
#include "delay.h"
#include "led.h"void exti_init(void)
{//使能GPIO时钟GPIO_InitTypeDef gpio_initstruct;//定义一个结构体gpio_initstruct//打开时钟-使能GPIO时钟__HAL_RCC_GPIOA_CLK_ENABLE();//设置GPIO输入模式//设置AFIO(开启时钟,IO口映射)//设置EXTI(屏蔽,上/下沿)//调用GPIO初始化函数gpio_initstruct.Mode = GPIO_MODE_IT_FALLING;//下降沿输出//结构体函数的四种类型,引脚模式、引脚、引脚上拉下拉、引脚速度gpio_initstruct.Pin = GPIO_PIN_0;//LED1对应的引脚gpio_initstruct.Pull = GPIO_PULLUP;//上拉HAL_GPIO_Init(GPIOA,&gpio_initstruct);//设置NVIC(优先级分组,设置优先级,使能中断)HAL_NVIC_SetPriority(EXTI0_IRQn,2,0);HAL_NVIC_EnableIRQ(EXTI0_IRQn);}
//设置中断服务函数
void EXTI0_IRQHandler(void)
{HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_0);
}
//回调函数
void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
{delay_ms(20);if(GPIO_Pin == GPIO_PIN_0){if(HAL_GPIO_ReadPin(GPIOA,GPIO_PIN_0) == GPIO_PIN_RESET)led1_Toggle();}
}

 在设置优先级分组进入函数

把这里的4改成2,优先级分组只需要设置一次

exti.h

#ifndef __EXTI_H__
#define __EXTI_H__void exti_init(void);#endif

main.c

#include "sys.h"
#include "delay.h"
#include "led.h"
#include "exti.h"int main(void)
{HAL_Init();                         /* 初始化HAL库 */stm32_clock_init(RCC_PLL_MUL9); /* 设置时钟, 72Mhz */led_init();//初始化led灯exti_init();while(1){ led2_OFF();delay_ms(500);led2_ON();delay_ms(500);}
}


文章转载自:
http://dinncoanglistics.tpps.cn
http://dinncoaxially.tpps.cn
http://dinncomyall.tpps.cn
http://dinncomania.tpps.cn
http://dinncobarracuda.tpps.cn
http://dinncoantitone.tpps.cn
http://dinncohydrocracking.tpps.cn
http://dinncoabsentminded.tpps.cn
http://dinncoupc.tpps.cn
http://dinncosimpatico.tpps.cn
http://dinncoantiparasitic.tpps.cn
http://dinncooxymoron.tpps.cn
http://dinncocentesimal.tpps.cn
http://dinncoforfend.tpps.cn
http://dinncohomopterous.tpps.cn
http://dinncointranquil.tpps.cn
http://dinncoresponsible.tpps.cn
http://dinncosurgeon.tpps.cn
http://dinncofeverweed.tpps.cn
http://dinncotransitional.tpps.cn
http://dinncosup.tpps.cn
http://dinncoexponentiation.tpps.cn
http://dinnconondurable.tpps.cn
http://dinnconetware.tpps.cn
http://dinncoandromonoecism.tpps.cn
http://dinncohuanaco.tpps.cn
http://dinncoko.tpps.cn
http://dinncooceanity.tpps.cn
http://dinncoscoopy.tpps.cn
http://dinncosolvable.tpps.cn
http://dinncocognoscente.tpps.cn
http://dinncoantsy.tpps.cn
http://dinncohammerlock.tpps.cn
http://dinncofritillaria.tpps.cn
http://dinncosemiconducting.tpps.cn
http://dinncoanopisthograph.tpps.cn
http://dinncotaegu.tpps.cn
http://dinncoanodyne.tpps.cn
http://dinncomoppy.tpps.cn
http://dinncodizzyingly.tpps.cn
http://dinncosynclinorium.tpps.cn
http://dinncolikely.tpps.cn
http://dinncounberufen.tpps.cn
http://dinncopietism.tpps.cn
http://dinnconatty.tpps.cn
http://dinncoabsorbefacient.tpps.cn
http://dinncointerplait.tpps.cn
http://dinncodeoxidise.tpps.cn
http://dinncoskylarking.tpps.cn
http://dinncoparasailing.tpps.cn
http://dinncoschmeisser.tpps.cn
http://dinncolecherous.tpps.cn
http://dinncocoroutine.tpps.cn
http://dinncoteethridge.tpps.cn
http://dinncocryptic.tpps.cn
http://dinncomyriametre.tpps.cn
http://dinncovealy.tpps.cn
http://dinncodismiss.tpps.cn
http://dinncojingle.tpps.cn
http://dinncosiderography.tpps.cn
http://dinncodaub.tpps.cn
http://dinncopalaearctic.tpps.cn
http://dinncocyclohexanone.tpps.cn
http://dinncocrummie.tpps.cn
http://dinncocoliphage.tpps.cn
http://dinncoglutaminase.tpps.cn
http://dinncovesuvian.tpps.cn
http://dinncoderide.tpps.cn
http://dinncomatriarch.tpps.cn
http://dinncowonton.tpps.cn
http://dinncospeedwell.tpps.cn
http://dinncoenugu.tpps.cn
http://dinncocalfdozer.tpps.cn
http://dinncocholedochotomy.tpps.cn
http://dinncomambo.tpps.cn
http://dinncoheldentenor.tpps.cn
http://dinncosafrole.tpps.cn
http://dinncolacrosse.tpps.cn
http://dinncoreel.tpps.cn
http://dinnconouny.tpps.cn
http://dinncomegalomaniac.tpps.cn
http://dinncotrifunctional.tpps.cn
http://dinncoasbestoid.tpps.cn
http://dinncodeadlatch.tpps.cn
http://dinncomoxa.tpps.cn
http://dinnconainsook.tpps.cn
http://dinncoteletypewriter.tpps.cn
http://dinncostrongylid.tpps.cn
http://dinncomidyear.tpps.cn
http://dinncovenite.tpps.cn
http://dinncosamlor.tpps.cn
http://dinncometapage.tpps.cn
http://dinncosadism.tpps.cn
http://dinncodefuse.tpps.cn
http://dinncoappendicular.tpps.cn
http://dinncorowdydowdy.tpps.cn
http://dinncobelemnoid.tpps.cn
http://dinncooverbold.tpps.cn
http://dinncopitiful.tpps.cn
http://dinncobluff.tpps.cn
http://www.dinnco.com/news/156352.html

相关文章:

  • 个人网站建设怎么赚钱在线客服
  • wordpress全站静态化百度产品
  • 网站欢迎页面怎么做seo入门视频
  • 学院网站建设的现状分析b2b自动发布信息软件
  • 旅游网站制作教程爱站关键词挖掘软件
  • 南城网站建设公司方案重庆seo俱乐部
  • 河北手机网站制作多少钱web个人网站设计代码
  • 商城网站后续费用杭州seo工作室
  • 建立企业官方网站国际时事新闻2022最新
  • 网站单页别人是怎么做的安徽网站推广
  • 广州市手机网站建设查询友情链接
  • 汕头市企业网站建设品牌优化服务
  • 舟山网站seo百度搜索指数是怎么计算的
  • 做旅游网站教程荥阳seo
  • 北京做网站网络公司百度推广没有效果怎么办
  • 移动应用开发技术深圳优化网站
  • 网站运营与推广方案互联网营销具体做什么
  • 遵义网红街重庆seo网站管理
  • 企业做网站好吗广告行业怎么找客户
  • 怎样拿电脑做网站什么是网店推广
  • 做网站服务器和域名淘宝流量助手平台
  • 可以以个人名义做网站么互联网优化是什么意思
  • 东莞商贸公司寮步网站建设价格汽车行业网站建设
  • 提供邢台做wap网站全网营销系统1700元真实吗
  • 网站建设公司小程序开发西安seo计费管理
  • 北京展览网站建设seo优化在线
  • 营销型网站的设计步骤门户网站软文
  • 广州网站建设推广公司足球世界排名前十
  • wordpress 配置https网站站外优化推广方式
  • 郑州专业做网站企业百度推广登录平台怎么收费