DSP6657 GPIO学习

0 设备

创龙C6657+Artix-7工业评估板    SEED-XDS560v2

1 实现功能

控制评估底板 LED1 LED2 LED3 每隔 0.5s 将状态同时翻转一次。
采用查询的方式控制评估版的KEY2控制LED2亮灭。

2 代码

2.1 GPIO驱动

2.1.1 c66x_gpio.c

/* Compiler Header files */
#include <stdint.h>/* CSL Header file */
#include <ti/csl/cslr_gpio.h>
#include <ti/csl/csl_gpio.h>
#include <ti/csl/csl_gpioAux.h>#include "c66x_gpio.h"/*功能:设置指定GPIO引脚的方向(输入或输出)参数:gpio_num - GPIO引脚编号,direction - GPIO方向(GPIO_OUT 或 GPIO_IN)*/
void gpio_set_direction(uint32_t gpio_num, gpio_direction direction) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);if (direction == GPIO_OUT) {/* Set gpio pin as output mode */CSL_GPIO_setPinDirOutput(h_gpio, gpio_num);} else {/* Set gpio pin as input mode */CSL_GPIO_setPinDirInput(h_gpio, gpio_num);}
}/*功能:设置GPIO[7:0](即GPIO0至GPIO7)的方向参数:direction - GPIO方向(GPIO_OUT 或 GPIO_IN)*/
void gpio_set_databus_direction(gpio_direction direction) {uint32_t pin_num;for (pin_num = GPIO_0; pin_num <= GPIO_7; pin_num++) {/* Set gpio pin as output/input mode */gpio_set_direction(pin_num, direction);}
}/*功能:将指定的GPIO引脚状态设置为高电平(1)参数:gpio_num - GPIO引脚编号注意:GPIO引脚必须配置为输出模式*/
void gpio_set_output(uint32_t gpio_num) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);CSL_GPIO_setOutputData(h_gpio, gpio_num);
}/*功能:将指定的GPIO引脚状态设置为低电平(0)参数:gpio_num - GPIO引脚编号注意:GPIO引脚必须配置为输出模式*/
void gpio_clear_output(uint32_t gpio_num) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);CSL_GPIO_clearOutputData(h_gpio, gpio_num);
}/*功能:读取指定GPIO引脚的输入状态参数:gpio_num - GPIO引脚编号返回值:GPIO引脚的输入状态注意:GPIO引脚必须配置为输入模式*/
uint8_t gpio_read_input(uint32_t gpio_num) {uint8_t inData = 0;CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);CSL_GPIO_getInputData(h_gpio, gpio_num, &inData);return inData;
}/*功能:向GPIO[7:0]写入一个8位的值参数:val - 要写入的8位值注意:GPIO[7:0]必须配置为输出模式*/
void gpio_write_databus(uint8_t val) {uint32_t pin_num;uint8_t value;for (pin_num = GPIO_0; pin_num <= GPIO_7; pin_num++) {value = (val >> pin_num) & 0x1;if (value == GPIO_HIGH) {gpio_set_output(pin_num);} else {gpio_clear_output(pin_num);}}
}/*功能:从GPIO[7:0]读取一个8位的值返回值:GPIO[7:0]的输入状态注意:GPIO[7:0]必须配置为输入模式*/
uint8_t gpio_read_databus(void) {uint32_t pin_num;uint8_t value, bitval;/* initialize variables */value = 0;for (pin_num = GPIO_0; pin_num <= GPIO_7; pin_num++) {bitval = gpio_read_input(pin_num);value |= bitval << pin_num;}return value;
}/*功能:使能GPIO全局中断到CPU*/
void gpio_enable_global_interrupt(void) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);/* GPIOREGS->BINTEN |= 0x01 */CSL_GPIO_bankInterruptEnable(h_gpio, GPIOBANKNUM);
}/*功能:禁用GPIO全局中断到CPU*/
void gpio_disable_global_interrupt(void) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);/* GPIOREGS->BINTEN = 0x00 */CSL_GPIO_bankInterruptDisable(h_gpio, GPIOBANKNUM);
}/*功能:设置指定GPIO引脚的上升沿中断参数:gpio_num - GPIO引脚编号*/
void gpio_set_risingedge_interrupt(uint32_t gpio_num) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);/* GPIOREGS->SET_RIS_TRIG |= (1 << gpio_num) */CSL_GPIO_setRisingEdgeDetect(h_gpio, gpio_num);
}/*功能:清除指定GPIO引脚的上升沿中断参数:gpio_num - GPIO引脚编号*/
void gpio_clear_risingedge_interrupt(uint32_t gpio_num) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);/* GPIOREGS->CLR_RIS_TRIG |= (1 << gpio_num) */CSL_GPIO_clearRisingEdgeDetect(h_gpio, gpio_num);
}/*功能:设置指定GPIO引脚的下降沿中断参数:gpio_num - GPIO引脚编号*/
void gpio_set_fallingedge_interrupt(uint32_t gpio_num) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);/* GPIOREGS->SET_FAL_TRIG |= (1 << gpio_num) */CSL_GPIO_setFallingEdgeDetect(h_gpio, gpio_num);
}/*功能:清除指定GPIO引脚的下降沿中断参数:gpio_num - GPIO引脚编号*/
void gpio_clear_fallingedge_interrupt(uint32_t gpio_num) {CSL_GpioHandle h_gpio;/* Open the CSL GPIO Module 0 */h_gpio = CSL_GPIO_open(0);/* GPIOREGS->CLR_FAL_TRIG |= (1 << gpio_num) */CSL_GPIO_clearFallingEdgeDetect(h_gpio, gpio_num);
}

2.1.2 c66x_gpio.h

#ifndef C66X_GPIO_H_
#define C66X_GPIO_H_#define GPIO_0                  (0)
#define GPIO_1                  (1)
#define GPIO_2                  (2)
#define GPIO_3                  (3)
#define GPIO_4                  (4)
#define GPIO_5                  (5)
#define GPIO_6                  (6)
#define GPIO_7                  (7)
#define GPIO_8                  (8)
#define GPIO_9                  (9)
#define GPIO_10                 (10)
#define GPIO_11                 (11)
#define GPIO_12                 (12)
#define GPIO_13                 (13)
#define GPIO_14                 (14)
#define GPIO_15                 (15)
#define GPIO_16                 (16)
#define GPIO_17                 (17)
#define GPIO_18                 (18)
#define GPIO_19                 (19)
#define GPIO_20                 (20)
#define GPIO_21                 (21)
#define GPIO_22                 (22)
#define GPIO_23                 (23)
#define GPIO_24                 (24)
#define GPIO_25                 (25)
#define GPIO_26                 (26)
#define GPIO_27                 (27)
#define GPIO_28                 (28)
#define GPIO_29                 (29)
#define GPIO_30                 (30)
#define GPIO_31                 (31)#define GPIOBANKNUM             (0)#define GPIO_LOW                (0)
#define GPIO_HIGH               (1)
#define INVALID_GPIO_NUMBER     (2)
#define INVALID_GPIO_DIRECTION  (3)
#define INVALID_GPIO_STATE      (4)typedef enum _gpio_direction {GPIO_OUT = 0, ///< gpio output modeGPIO_IN ///< gpio input mode
} gpio_direction;/* ================ Function declarations ================ */
void gpio_set_direction(uint32_t gpio_num, gpio_direction direction);
void gpio_set_databus_direction(gpio_direction direction);
void gpio_set_output(uint32_t gpio_num);
void gpio_clear_output(uint32_t gpio_num);
uint8_t gpio_read_input(uint32_t gpio_num);
void gpio_write_databus(uint8_t val);
uint8_t gpio_read_databus(void);
void gpio_enable_global_interrupt(void);
void gpio_disable_global_interrupt(void);
void gpio_set_risingedge_interrupt(uint32_t gpio_num);
void gpio_clear_risingedge_interrupt(uint32_t gpio_num);
void gpio_set_fallingedge_interrupt(uint32_t gpio_num);
void gpio_set_fallingedge_interrupt(uint32_t gpio_num);
void gpio_clear_fallingedge_interrupt(uint32_t gpio_num);#endif /* #ifndef C66X_GPIO_H_ */

2.2 cmd文件

-heap  0x4000/* 16KB */
-stack 0x4000/* 16KB */MEMORY
{/* Local L2, 0.5~1MB*/VECTORS: 	o = 0x00800000  l = 0x00000200   LL2_RW_DATA: 	o = 0x00800200  l = 0x0003FE00   /* Shared L2 1MB for C6657*/SL2: 		o = 0x0C000000  l = 0x00100000DDR3: 			o = 0x80000000 	l = 0x40000000 /* 1GB DDR3 */EMIF16_DATA:    o = 0x70000000  l = 0x10000000  /* EMIF16 memory space */
}SECTIONS
{vecs       	>    VECTORS .text           >    LL2_RW_DATA.cinit          >    LL2_RW_DATA.const          >    LL2_RW_DATA.switch         >    LL2_RW_DATA.stack          >    LL2_RW_DATAGROUP{.neardata.rodata.bss} 		>    LL2_RW_DATA.far:testBuf    >    LL2_RW_DATA.far            >    LL2_RW_DATA.fardata        >    LL2_RW_DATA.cio            >    LL2_RW_DATA.sysmem         >    LL2_RW_DATA}

 2.3 main.c

2.3.1 LED123亮灭

/* Compiler Header files */
#include <stdint.h>
/* CSL Header file */
#include <ti/csl/csl_chipAux.h>
/* Driver utilities include */
#include "driver/c66x_gpio.h"#define PIN_CONTROL_0               0x02620580  //	GPIO控制寄存器基地址
#define C665X_USER_LED0             GPIO_23     // c665x user-led0, GPIO_23
#define C665X_USER_LED1             GPIO_22     // c665x user-led1, GPIO_22
#define C665X_USER_LED2             GPIO_19     // c665x user-led2, GPIO_19//基于CPU周期的延迟函数,500000000=500ms
void cpu_delaycycles(uint32_t cycles) {uint32_t start_val;/* Start TCSL so its free running */CSL_chipWriteTSCL(0);start_val = CSL_chipReadTSCL();while ((CSL_chipReadTSCL() - start_val) < cycles);return;
}int main(void) {/* Set pin as GPIO mode */*((uint32_t *) PIN_CONTROL_0) |= ((1 << C665X_USER_LED0)|(1 << C665X_USER_LED1) |(1 << C665X_USER_LED2));/* Set GPIO as output mode */gpio_set_direction(C665X_USER_LED0, GPIO_OUT);gpio_set_direction(C665X_USER_LED1, GPIO_OUT);gpio_set_direction(C665X_USER_LED2, GPIO_OUT);while (1) {/* Gpio output low level,turn off LED */gpio_set_output(C665X_USER_LED0);gpio_set_output(C665X_USER_LED1);gpio_set_output(C665X_USER_LED2);/* Keep the LED on for 500 ms */cpu_delaycycles(500000000);/* Gpio output high level,Turn on LED */gpio_clear_output(C665X_USER_LED0);gpio_clear_output(C665X_USER_LED1);gpio_clear_output(C665X_USER_LED2);/* Keep the LED off for 500 ms */cpu_delaycycles(500000000);}
}

2.3.2 KEY控制LED亮灭

#include <stdio.h>
/* Compiler Header files */
#include <stdint.h>
/* CSL Header file */
#include <ti/csl/csl_chipAux.h>
#include <ti/csl/src/intc/csl_intc.h>/* Driver utilities include */
#include "driver/c66x_gpio.h"#define PIN_CONTROL_0               0x02620580  //	GPIO控制寄存器基地址
#define LED1             GPIO_19
#define LED2             GPIO_22
#define LED3             GPIO_23
#define KEY2             GPIO_0//基于CPU周期的延迟函数,100000000=100ms
void cpu_delaycycles(uint32_t cycles) {uint32_t start_val;/* Start TCSL so its free running */CSL_chipWriteTSCL(0);start_val = CSL_chipReadTSCL();while ((CSL_chipReadTSCL() - start_val) < cycles);return;
}int main(void) {/* Set pin as GPIO mode */*((uint32_t *) PIN_CONTROL_0) |= ((1 << LED1)|(1 << LED2) |(1 << KEY2 ) |(1 << LED3));/* Set GPIO as output mode */gpio_set_direction(LED1, GPIO_OUT);gpio_set_direction(LED2, GPIO_OUT);gpio_set_direction(LED3, GPIO_OUT);gpio_set_direction(KEY2, GPIO_IN);while (1) {if (gpio_read_input(KEY2) == GPIO_LOW)              //检测到按键按下{cpu_delaycycles(100000000);				    	//延时消抖100msif (gpio_read_input(KEY2) == GPIO_LOW)//按键真的被按下了{if (gpio_read_input(LED3) == GPIO_LOW)		//LED3翻转gpio_set_output(LED3);//GPIO23设置为高电平,LED3熄灭elsegpio_clear_output(LED3);//GPIO23设置为低电平,LED3点亮}while (gpio_read_input(KEY2) == GPIO_LOW);		//阻塞,直到按键被松开}}
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/844054.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vue3数字滚动依赖

名称&#xff1a;vue3-count-to 安装: npm install vue3-count-to --save 在main.js中全局注册: github:https://github.com/PanJiaChen/vue-countTo // main.js全局注册 import countTo from vue3-count-to app.use(countTo)在用到地页面引入使用 <template><count…

css让padding、border不占据宽度

CSS3 新增了 box-sizing 属性。 以前&#xff0c;如果指定 div 的宽度为 div { width: 120px;height: 120px;padding: 10px; } 则包含 padding&#xff0c;div 的实际宽度为 120px。 有时我们不希望 padding 影响到 div 的实际宽度。以前只能手动计算 width&#xf…

MySQL入门学习-查询进阶.DISTINCT

在 MySQL 中&#xff0c;DISTINCT 关键字用于查询结果中去除重复的记录。 一、在查询进阶中&#xff0c;除了 DISTINCT 之外&#xff0c;还有以下关键字&#xff1a; - GROUP BY&#xff1a; 根据指定的字段对结果进行分组&#xff0c;通常与聚合函数一起使用&#xff0c;例…

kexin2024年5月22日

在CLion上调试程序 使用程序的模板来调试程序 在下图中输入作为console窗口输入输入数据。 下面将程序记录一下 首先的是模板 //main.c /** * Description: * Caution&#xff1a;本地调试时&#xff0c;只编译运行这一个文件&#xff0c;不要链接solution.c&#xff01;…

初学JavaScript

什么是JavaScrip&#xff1a; JavaScript 是一种高级编程语言&#xff0c;主要用于网页开发。它是一种动态、弱类型的语言&#xff0c;可以在客户端&#xff08;浏览器&#xff09;中运行&#xff0c;并与 HTML 和 CSS 一起用于创建交互式网页。JavaScript 可以添加动态功能&a…

vba 基本操作

1. 获取多有的sheets 并对sheet 循环处理 Dim sheets As sheets Dim sheet As Worksheet Dim name As String Set sheets ThisWorkbook.Worksheets For Each sheet In sheetsIf sheet.name <> "Sheet1" Thenname sheet.nameEnd If Next sheet2. 添加一个工…

电脑误删除的文件怎么恢复?6个方法图文详解!

“我在电脑上误删除了一些比较重要的文件&#xff0c;现在不知道应该怎么操作了&#xff0c;有没有可以分享一下经验的朋友呀&#xff1f;” 在数字化世界的浪潮中&#xff0c;电脑成为了我们处理、存储和分享信息的重要工具。然而&#xff0c;随着我们对电脑的依赖日益加深&am…

深入理解@TableField注解的使用-MybatisPlus教程

TableField注解是MyBatis-Plus框架提供的一个功能&#xff0c;用于指定实体类属性与数据库表列的映射关系。当实体类的属性名称和数据库表的列名称不一致&#xff0c;或者需要指定一些特殊的处理逻辑时&#xff0c;可以使用TableField注解。 以下是TableField注解的一些常见用…

cfa三级大神复习经验分享系列(二)

嫌文章太长&#xff0c;我给大家一个备考简略总结&#xff0c;看完可以关闭。资料&#xff1a;note真题&#xff08;三级不用&#xff09;基础/强化班 note看两遍例题动手做两遍&#xff0c; 真题动手做三遍 其他&#xff0c;没有了&#xff0c;做好这些 高分pass 一&#xff…

【云原生】kubernetes中Configmap原理解析与应用实战

✨✨ 欢迎大家来到景天科技苑✨✨ &#x1f388;&#x1f388; 养成好习惯&#xff0c;先赞后看哦~&#x1f388;&#x1f388; &#x1f3c6; 作者简介&#xff1a;景天科技苑 &#x1f3c6;《头衔》&#xff1a;大厂架构师&#xff0c;华为云开发者社区专家博主&#xff0c;…

236. 二叉树的最近公共祖先(C++)

文章目录 前言一、题目介绍二、解决方案三、优化总结 前言 在本篇文章中我们将会讲解二叉树中极为经典的题目236. 二叉树的最近公共祖先 一、题目介绍 给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。 百度百科中最近公共祖先的定义为&#xff1a;“对于有根树 T 的…

如何借VR之手,让展厅互动更精彩?

VR虚拟现实技术以其卓越的沉浸式体验为特点&#xff0c;引领用户踏入一个全新的虚拟世界&#xff0c;正因如此&#xff0c;它开始被广泛应用于展厅、商业等多个领域。那么&#xff0c;今天&#xff0c;让我们就来了解一下这种技术是如何为展厅带来精彩互动体验的吧&#xff01;…

日常使用工具(截图,笔记,一键启动)

目录 一,截图 Snipaste 二.笔记 Joplin 三.翻译 四.自动启动软件 这篇记录一下工作中用的很顺手的工具. 一,截图 Snipaste 官网:Snipaste - 截图 贴图 下面是官方手册. 使用 我都是直接F1 就会出现选择框,随意拖动大小,选择下方工具栏,相应位置, 二.笔记 Joplin 官网:…

el-table表格实现鼠标拖动而左右滑动

场景描述&#xff1a; 表格样式较为复杂&#xff0c;10条数据超出整个屏幕的高度&#xff0c;因而导致无法快速拖动滚动条&#xff0c;所以提出需要在表格内容区拖动鼠标&#xff0c;从而实现无需滚动到底部就可以左右拖动表格内容的效果。 具体实现&#xff1a; 实现的方式…

上海云管平台怎么样?客服电话多少?

云计算已经成为了企业数字化转型的重要一部分&#xff0c;而在上海&#xff0c;云管平台发展更是大势所趋。这不不少小伙伴在问&#xff0c;上海云管平台怎么样&#xff1f;客服电话多少&#xff1f; 上海云管平台怎么样&#xff1f;客服电话多少&#xff1f; 【回答】&#…

[排序算法]4. 图解堆排序及其代码实现

先来看看什么是堆? 堆是一种图的树形结构&#xff0c;被用于实现“优先队列”&#xff08;priority queues&#xff09; 注:优先队列是一种数据结构&#xff0c;可以自由添加数据&#xff0c;但取出数据时要从最小值开始按顺序取出。 在堆的树形结构中&#xff0c…

vscode的使用 ubuntu入门之二十二

高亮标识符&#xff0c;变量或者函数可以用 rainbow-highlighter 这个插件 Press shiftaltz, and variables curser is on will be highlighted. Press the same command again to remove highlights. Press shiftalta to remove all highlights. 参考&#xff1a; 在VSCode…

【台阶问题】

目录 问题&#xff1a; 思路&#xff1a; 回溯-分支限界法 知识点 目标函数&#xff08;分支结束的情况&#xff09;: n0 约束函数&#xff08;截断不合理的分支&#xff09;: num < 2 、 i > n-i && num 0 限界函数&#xff08;阶段不最优的分支&#xf…

开发问题合集(待补充)

docker 学习文档 ollama 官网 streamlit 官方文档

通过伪造NPU设备,让AscendSpeed在没有安装torch_npu的环境中跑起来

通过伪造NPU设备,让AscendSpeed在没有安装torch_npu的环境中跑起来 代码输出 背景: 我想在GPU上运行AscendSpeed框架,因为没有torch_npu、deepspeed_npu,又不想一个个注释掉 方法: 1.本文本通过创建一个FakeDevice 类来伪造 NPU&#xff08;Neural Processing Unit&#xff0…