ARM day5 (点灯实验 汇编C)

news/2024/11/7 20:58:47/

汇编

.text 
.global _start
_start: /**********LED1点灯**************//**********RCC草节初始化**************///1.通过RCC_MP_AHB4ENSETR寄存器使能GPIOE组控制器0x50000A28[4] = 1ldr r0,=0x50000A28ldr r1,[r0]orr r1,r1,#(0x1 << 4)str r1,[r0]//1.通过RCC_MP_AHB4ENSETR寄存器使能GPIOF组控制器0x50000A28[5] = 1ldr r0,=0x50000A28ldr r1,[r0]orr r1,r1,#(0x1 << 5)str r1,[r0]/*********GPIO章节初始化*************/LED1_INIT:@1.通过GPIOE_MODER寄存器设置PE10引脚为输出模式0x50006000[21:20] = 01ldr r0,=0x50006000ldr r1,[r0]and r1,r1,#(~(0x3 << 20))orr r1,r1,#(0x1 << 20)str r1,[r0]@2.通过GPIOE_OTYPER寄存器设置PE10引脚为推挽输出类型0x50006004[10]= 0ldr r0,=0x50006004ldr r1,[r0]and r1,r1,#(~(0x1 << 10))str r1,[r0]@3.通过GPIOE_OSPBEDR寄存器设置PE10引脚为低速输出模式0x50006008[21:20] = 00ldr r0,=0x50006008ldr r1,[r0]and r1,r1,#(~(0x3 << 20))str r1,[r0]@4.通过GPIOE_PUPDR寄存器设置PE10引脚禁止上下拉电阻0x5000600C[21:20] = 00ldr r0,=0x5000600cldr r1,[r0]and r1,r1,#(~(0x3 << 20))str r1,[r0]LED2_INIT:@1.通过GPIOF_MODER寄存器设置PF10引脚为输出模式0x50007000[21:20] = 01ldr r0,=0x50007000ldr r1,[r0]and r1,r1,#(~(0x3 << 20))orr r1,r1,#(0x1 << 20)str r1,[r0]@2.通过GPIOF_OTYPER寄存器设置PF10引脚为推挽输出类型0x50007004[10]= 0ldr r0,=0x50007004ldr r1,[r0]and r1,r1,#(~(0x1 << 10))str r1,[r0]@3.通过GPIOF_OSPBEDR寄存器设置PF10引脚为低速输出模式0x50007008[21:20] = 00ldr r0,=0x50007008ldr r1,[r0]and r1,r1,#(~(0x3 << 20))str r1,[r0]@4.通过GPIOF_PUPDR寄存器设置PF10引脚禁止上下拉电阻0x5000700C[21:20] = 00ldr r0,=0x5000700cldr r1,[r0]and r1,r1,#(~(0x3 << 20))str r1,[r0]LED3_INIT:@1.通过GPIOE_MODER寄存器设置PE8引脚为输出模式0x50006000[17:16] = 01ldr r0,=0x50006000ldr r1,[r0]and r1,r1,#(~(0x3 << 16))orr r1,r1,#(0x1 << 16)str r1,[r0]@2.通过GPIOE_OTYPER寄存器设置PE8引脚为推挽输出类型0x50006004[8]= 0ldr r0,=0x50006004ldr r1,[r0]and r1,r1,#(~(0x1 << 8))str r1,[r0]@3.通过GPIOE_OSPBEDR寄存器设置PE8引脚为低速输出模式0x50006008[17:16] = 00ldr r0,=0x50006008ldr r1,[r0]and r1,r1,#(~(0x3 << 16))str r1,[r0]@4.通过GPIOE_PUPDR寄存器设置PE8引脚禁止上下拉电阻0x5000600C[17:16] = 00ldr r0,=0x5000600cldr r1,[r0]and r1,r1,#(~(0x3 << 16))str r1,[r0]
loop:bl LED1_ONbl delay_1sbl LED1_OFFbl LED2_ONbl delay_1sbl LED2_OFFbl LED3_ONbl delay_1sbl LED3_OFFb loopLED1_ON:@通过GPIOE_ODR寄存器设置PE10引脚输出高电平0x50006014[10] = 1ldr r0,=0x50006014ldr r1,[r0]orr r1,r1,#(0x1 << 10)str r1,[r0]mov pc,lrLED1_OFF:@通过GPIOE_ODR寄存器设置PE10引脚输出低电平0x50006014[10] = 0ldr r0,=0x50006014ldr r1,[r0]and r1,r1,#(~(0x1 << 10))str r1,[r0]mov pc,lrLED2_ON:@通过GPIOF_ODR寄存器设置PF10引脚输出高电平0x50007014[10] = 1ldr r0,=0x50007014ldr r1,[r0]orr r1,r1,#(0x1 << 10)str r1,[r0]mov pc,lrLED2_OFF:@通过GPIOF_ODR寄存器设置PF10引脚输出低电平0x50007014[10] = 0ldr r0,=0x50007014ldr r1,[r0]and r1,r1,#(~(0x1 << 10))str r1,[r0]mov pc,lrLED3_ON:@通过GPIOE_ODR寄存器设置PE8引脚输出高电平0x50006014[8] = 1ldr r0,=0x50006014ldr r1,[r0]orr r1,r1,#(0x1 << 8)str r1,[r0]mov pc,lrLED3_OFF:@通过GPIOE_ODR寄存器设置PE8引脚输出低电平0x50006014[8] = 0ldr r0,=0x50006014ldr r1,[r0]and r1,r1,#(~(0x1 << 8))str r1,[r0]mov pc,lr@ 大概1s的延时函数
delay_1s:
mov r3, #0x10000000
mm:
cmp r3, #0
subne r3, r3, #1
bne mm
mov pc, lr.end

C语言

led.h

#ifndef __LED_H__
#define __LED_H__//声明一个结构体
typedef struct pio
{unsigned int MODER;   //00unsigned int OTYPER;  //04unsigned int OSPEEDR; //08unsigned int PUPDR;   //0Cunsigned int IDR;     //10unsigned int ODR;     //14
}gpio_t;#define GPIOE ((volatile gpio_t*)0x50006000)
#define GPIOF ((volatile gpio_t*)0x50007000)void led1_init();
void LED1_on();
void led1_off();void led2_init();
void LED2_on();
void led2_off();void led3_init();
void LED3_on();
void led3_off();#endif

led.c

#include "led.h"void led1_init()
{GPIOE->MODER &= (~(0x3 << 20));GPIOE->MODER |= (0x1 << 20);GPIOE->OTYPER &=(~(0x1 << 10));GPIOE->OSPEEDR &= (~(0x3 << 20));GPIOE->PUPDR &= (~(0X3 << 20));
}void LED1_on()
{GPIOE->ODR |= (0x1 << 10);
}void led1_off()
{GPIOE->ODR &= (~(0x1 << 10));
}void led2_init()
{GPIOF->MODER &= (~(0x3 << 20));GPIOF->MODER |= (0x1 << 20);GPIOF->OTYPER &=(~(0x1 << 10));GPIOF->OSPEEDR &= (~(0x3 << 20));GPIOF->PUPDR &= (~(0X3 << 20));
}void LED2_on()
{GPIOF->ODR |= (0x1 << 10);
}void led2_off()
{GPIOF->ODR &= (~(0x1 << 10));
}void led3_init()
{GPIOE->MODER &= (~(0x3 << 16));GPIOE->MODER |= (0x1 << 16);GPIOE->OTYPER &=(~(0x1 << 8));GPIOE->OSPEEDR &= (~(0x3 << 16));GPIOE->PUPDR &= (~(0X3 << 16));}void LED3_on()
{GPIOE->ODR |= (0x1 << 8);
}void led3_off()
{GPIOE->ODR &= (~(0x1 << 8));
}

main.c

#include "led.h"extern void printf(const char *fmt, ...);
void delay_ms(int ms)
{int i,j;for(i = 0; i < ms;i++)for (j = 0; j < 1800; j++);
}int main()
{*(volatile unsigned int *)0x50000A28 |= (0x3 << 4);led1_init(); // LED灯初始化led2_init();led3_init();while(1){LED1_on();delay_ms(500);led1_off();LED2_on();delay_ms(500);led2_off();LED3_on();delay_ms(500);led3_off();}return 0;
}


http://www.ppmy.cn/news/709635.html

相关文章

web安全php基础_php变量命名及其作用域

php变量命名规则 php变量命名规则 变量以 $ 符号开始&#xff0c;后面跟着变量的名称变量名必须以字母或者下划线字符开始变量名只能包含字母数字字符以及下划线&#xff08;A-z、0-9 和 _ &#xff09;变量名不能包含空格变量名是区分大小写的&#xff08;$y 和 $Y 是两个不…

iphone12售价曝光 iphone12什么时候上市

据爆料今年iPhone12的发布会时间将被推迟&#xff0c;如今这一消息看来确实是真的&#xff0c;并且有消息显示苹果准备在10月下旬举行一场发布会&#xff0c;届时iPhone12将成为发布会的主角。 iphone11爆降2000太给力了 https://www.apple.com.cn iPhone 12全系或将还是四款产…

iphone12上市时间已定

爆料称&#xff0c;苹果首批iPhone 12将在10月5日面向经销商发货&#xff0c;出货的机型包括5.4英寸iPhone 12 mini&#xff0c;6.1英寸iPhone 12。 iphone11爆降2500这活动太给力不 http://www.apple.com 5.4英寸iPhone 12 mini是最终苹果使用的名字&#xff0c;这一系列存储…

iphone12什么时候上市 iphone12全系搭配A14处理器

苹果12需要20年9月份前后才会上市。 我用的苹果手机就是活动时8折抢购的 https://mall.jd.com/index-1000000127.html 众所周知了&#xff0c;2020对苹果来说将是一场关键战役&#xff0c;在安卓对手们已经纷纷拿出5G手机甚至做到百万级出货量后&#xff0c;今年的iPhone12也…

iphone12/12max/12pro售价曝光 iphone12上市时间已定

据悉&#xff0c;全新的iPhone 12系列的上市时间要比以往晚几周&#xff0c;也就是将在10月才能与大家见面。 iphone11爆降2000太给力了 https://www.apple.com.cn iPhone12系列包括四款机型&#xff1a;iPhone 12、iPhone 12 Max、iPhone 12 Pro和iPhone 12 ProMax&#xff0c…

2007年的今天 第一代iPhone上市

http://www.cnbeta.com/articles/147295.htm 包括苹果在内&#xff0c;没有人能够预料到iPhone将对手机市场产生如此深远的影响。 2007年1月9日&#xff0c;苹果CEO史蒂夫乔布斯(Steve Jobs)发布了iPhone&#xff0c;这也被认为是保密工作做得最差的苹果产品之一&#xff0c;但…

将两个字符串合并为一个字符串并且输出(二)

#include <stdio.h> #include <string.h>int main() {char str1[100] "Hello, ";char str2[] "World!";char result[200];strcpy(result, str1); // 将第一个字符串复制到结果字符串中strcat(result, str2); // 将第二个字符串追加到结果字…

Maven中 排除依赖 exclusions

使用maven进行jar包依赖管理时&#xff0c;maven会自行管理jar包及其依赖链条&#xff0c;但往往会遇到依赖冲突问题&#xff0c;这时候就可以尝试使用exclusions来进行依赖管理 demo:排除tomcat 启用 jetty <dependency><groupId>org.springframework.boot</g…