中级会员
- 积分
- 325
- 金钱
- 325
- 注册时间
- 2013-5-12
- 在线时间
- 26 小时
|
#include "stm8s.h"
#include "usart.h"
#include "stm8s_gpio.h"
#include "stm8s_uart2.h"
void GPIO_config(void)
{
GPIO_DeInit(GPIOD);
GPIO_Init(GPIOD,GPIO_Pin_6,GPIO_Mode_In_FL_No_IT); /*RXD PD6 */
GPIO_Init(GPIOD,GPIO_Pin_5,GPIO_Mode_Out_PP_High_Fast); /*TXD PD5 led4 */
}
#error cpstm8 user\usart.c:19(28+26) GPIO_Mode_Out_PP_High_Fast undefined
#error cpstm8 user\usart.c:19(17+10) GPIO_Pin_5 undefined
#error cpstm8 user\usart.c:18(28+21) GPIO_Mode_In_FL_No_IT undefined
#error cpstm8 user\usart.c:18(17+10) GPIO_Pin_6 undefined
這是怎麼回事啊
|
|