STM8 位声明
发布网友
发布时间:2022-05-24 13:24
我来回答
共1个回答
热心网友
时间:2023-10-15 09:51
#include <stm8s105c6.h>
_Bool LED1 @PG_ORD:0;
_Bool LED2 @PG_ORD:1;
_Bool LED3 @PA_ORD:3;
//QQ 416108250
void delay(int x)
{
int i,j;
for(i=0;i<x;i++)
for(j=0;j<600;j++);
}
void GPIO_Init(void)
{
PG_DDR = 0b00000011;
PG_CR1 = 0b00000011;
PG_CR2 = 0b00000000;
PA_DRR = 0b00001000;
PA_CR1 = 0b00001000;
PA_CR2 = 0b00000000;
PB_DDR = 0b10000000;
PB_CR1 = 0b10000000;
PB_CR2 = 0b00000000;
}
PG_DDR : 这个是啥啊 没看到你有定义啊
PA_DRR : 这个是啥啊 没看到你有定义啊
PB_DDR : 这个是啥啊 没看到你有定义啊追问_Bool LED1 @PG_ORD:0;
ODR 写成ORD了......
加我Q聊吧:416108250
来自:求助得到的回答