如图所示,问题出在main()中队结构变量Encoder_InitStruct的赋值?

unsigned short wr_map[8] = {0x0000,0x0000,0x0000,0x00000,0x00000,0x0000,0x0000,0x0000};unsigned short rr_map[8] = {0x0000,0x0000,0x0000,0x00000,0x00000,0x0000,0x0000,0x0000};
void Encoder_Init(Encoder_InitTypeDef Encoder_InitStruct){ wr_map[R2] &= 0xf1ff; wr_map[R2] |= (Encoder_InitStruct.Pulse_Mode << 8) |(Encoder_InitStruct.Pulse_Mul); Reg_Write(R2, wr_map[R2]);}
typedef enum{ DOUBLE_PULSE, DIR_PULSE } PULSE_MODE;
typedef enum{ MUL_1 = 0x0000, MUL_2 = 0x0400, MUL_4 = 0x0800 } ENCODER_MUL;
typedef struct{ PULSE_MODE Pulse_Mode; ENCODER_MUL Pulse_Mul; } Encoder_InitTypeDef;
int main(void){Encoder_InitTypeDef Encoder_InitStruct;Encoder_InitStruct-> Pulse_Mode = DOUBLE_PULSE; Encoder_InitStruct-> Pulse_Mul = MUL_4; Encoder_Init(&Encoder_InitStruct);}这是程序的一部分Regwrite()函数在这之前已经声明过了,问题在main()中队结构变量Encoder_InitStruct的赋值。

小怪兽爱吃肉
浏览 127回答 1
1回答

ibeautiful

只从出现的代码看Encoder_InitTypeDef&nbsp;&nbsp;Encoder_InitStruct;Encoder_InitStruct->&nbsp;Pulse_Mode&nbsp;=&nbsp;DOUBLE_PULSE;&nbsp;//这是个实体,你还用->赋值,Encoder_InitStruct.Pulse_ModeEncoder_InitStruct->&nbsp;Pulse_Mul&nbsp;=&nbsp;MUL_4;&nbsp;&nbsp;&nbsp;//同上Encoder_Init(&Encoder_InitStruct);//函数声明的参数是结构体变量,你这里反而取的是实体的地址
打开App,查看更多内容
随时随地看视频慕课网APP