以C语言方式驱动(例程与代码分析)
韦东山的例程:
start.s部分:
.text
.global _start @全局标号
_start:
//设置栈
ldr sp,=0x80200000 @设置SP指针,则栈大小为0x200000
bl clean_bss @清除BSS段
bl main @跳转到C语言的main函数
halt:
b halt @一个循环
/* 清除BSS段,就是在链接地址处将bss段清零 */
clean_bss:
ldr r1, =__bss_start //bss起始地址,r1的值作为内存地址
ldr r2, =__bss_end //bss结束地址
mov r3, #0
clean:
str r3, [r1] //将r3中的值放入r1所指向的内存地址
add r1, r1, #4 //然后r1加上4
cmp r1, r2
bne clean
mov pc, lr
led.h部分:
#ifndef __LED_H__
#define __LED_H__
/**********************************************************************
* 函数名称: led_init
* 功能描述: 初始化LED引脚,就是把它设置为输出引脚
* 输入参数: 无
* 输出参数: 无
* 返 回 值: 无
***********************************************************************/
void led_init(void); //定义LED初始化函数led_init(void)
/**********************************************************************
* 函数名称: led_ctl
* 功能描述: 设置LED状态
* 输入参数:
* on : 1-LED点亮, 0-LED熄灭
* 输出参数: 无
* 返 回 值: 无
***********************************************************************/
void led_ctl(int on); //定义LED点亮函数
#endif
main.c部分:
#include "led.h"
void delay(volatile unsigned int d)
{
while(d--);
}
int main()
{
led_init(); //LED初始化
while(1)
{
led_ctl(1); //点亮LED
delay(1000000);
led_ctl(0); //熄灭LED
delay(1000000);
}
return 0;
}
led.c部分:
#include "led.h"
static volatile unsigned int *CCM_CCGR1 ;
static volatile unsigned int *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3;
static volatile unsigned int *GPIO5_GDIR ;
static volatile unsigned int *GPIO5_DR ;
/**********************************************************************
* 函数名称: led_init
* 功能描述: 初始化LED引脚,就是把它设置为输出引脚
* 输入参数: 无
* 输出参数: 无
* 返 回 值: 无
***********************************************************************/
void led_init(void)
{
unsigned int val;
CCM_CCGR1 = (volatile unsigned int *)(0x20C406C); //这一步是多余的操作,但是由于[31:30]是保留位,赋值0b11也不会造成什么影响
IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = (volatile unsigned int *)(0x2290014);
GPIO5_GDIR = (volatile unsigned int *)(0x020AC000 + 0x4);
GPIO5_DR = (volatile unsigned int *)(0x020AC000);
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
/* GPIO5_IO03 */
/* a. 使能GPIO5
* set CCM to enable GPIO5
* CCM_CCGR1[CG15] 0x20C406C
* bit[31:30] = 0b11
*/
*CCM_CCGR1 |= (3<<30); //这一步是多余的操作,但是由于[31:30]是保留位,赋值0b11也不会造成什么影响
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
/* b. 设置GPIO5_IO03用于GPIO
* set IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3
* to configure GPIO5_IO03 as GPIO
* IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 0x2290014
* bit[3:0] = 0b0101 alt5
*/
val = *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3;
val &= ~(0xf);
val |= (5);
*IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = val;
/* c. 设置GPIO5_IO03作为output引脚
* set GPIO5_GDIR to configure GPIO5_IO03 as output
* GPIO5_GDIR 0x020AC000 + 0x4
* bit[3] = 0b1
*/
*GPIO5_GDIR |= (1<<3);
}
/**********************************************************************
* 函数名称: led_ctl
* 功能描述: 设置LED状态
* 输入参数:
* on : 1-LED点亮, 0-LED熄灭
* 输出参数: 无
* 返 回 值: 无
***********************************************************************/
void led_ctl(int on)
{
if (on) /* on: output 0*/
{
/* d. 设置GPIO5_DR输出低电平
* set GPIO5_DR to configure GPIO5_IO03 output 0
* GPIO5_DR 0x020AC000 + 0
* bit[3] = 0b0
*/
*GPIO5_DR &= ~(1<<3); //置零操作,点亮LED
}
else /* off: output 1*/
{
/* e. 设置GPIO5_IO3输出高电平
* set GPIO5_DR to configure GPIO5_IO03 output 1
* GPIO5_DR 0x020AC000 + 0
* bit[3] = 0b1
*/
*GPIO5_DR |= (1<<3); //置1操作,关闭LED
}
}
小结(分析)
在led.c代码部分,static volatile unsigned int
定义了所要使用的寄存器的指针变量,其中:static:为静态局部变量