结构体

2019-08-22 15:07发布

我在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
这是为什么

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。