当前位置: 首页 > 工具软件 > 8cc > 使用案例 >

CCS8 下 CC1310SimpleLink SDK 的GPIO配置使用流程。

古明煦
2023-12-01

CCS8 下 CC1310SimpleLink SDK 的GPIO配置使用流程。

第一步:配置GPIO口

GPIO_setConfig(uint_least8_t index,GPIO_PinConfig pinConfig);
//index:要配置的IO口
//pinConfig:设置IO口的模式,不同参数可用“|”运算符

第二步:配置中断(也可以不用配置)

GPIO_setCallback(uint_least8_t index, GPIO_CallbackFxn callback);
//功能:设置IO口的回调函数
//index:要配置的IO口
//callback:配置的回调函数的函数指针

GPIO_enableInt(uint_least8_t index);
//功能:使能目标中断

第三步:使用IO口

GPIO_write(uint_least8_t index, unsigned int value);

uint_fast8_t GPIO_read(uint_least8_t index);

void GPIO_toggle(uint_least8_t index);

主要头文件:

#include <ti/drivers/GPIO.h>
 类似资料: