我在motor.h中定义结构体
typedef struct
{
uint16_t GPIO_pluse_Pin;
uint16_t GPIO_dir_pin ;
uint16_t steps;
bool dir;
bool state;
}motortypedef;
在main.c中程序如下
#include"motor.h"
motortypedef motorone;
我想对motorone赋值
编译器告诉我不认识motorone
这是为什么
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
添加进去了,typedefine在主函数里面是没有错误的;但是放在函数体外边就有错误
你把包含bool的头文件添加进去就可以了
一周热门 更多>