在此感谢江科大自化协提供的教程以及资料,作为一个入门小白觉得老师讲的十分好,这是今天的实验1
#include "stm32f10x.h"
#include "Delay.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
while(1){
GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_RESET);
Delay_ms(500);
GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_SET);
Delay_ms(500);
}
}
2 流水灯闪烁:
#include "stm32f10x.h"
#include "Delay.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
while (1)
{
GPIO_Write(GPIOA, ~0x0001);
Delay_ms(100);
GPIO_Write(GPIOA, ~0x0002);
Delay_ms(100);
GPIO_Write(GPIOA, ~0x0004);
Delay_ms(100);
GPIO_Write(GPIOA, ~0x0008);
Delay_ms(100);
GPIO_Write(GPIOA, ~0x0010);
Delay_ms(100);
GPIO_Write(GPIOA, ~0x0020);
Delay_ms(100);
GPIO_Write(GPIOA, ~0x0040);
Delay_ms(100);
GPIO_Write(GPIOA, ~0x0080);
Delay_ms(100);
}
}
|