|
Dragonboy 发表于 2013-7-3 01:42
一年前的帖子,仍值得好好学习
请问一下,您能够理解这部分的内容吗?
我想求教一下:
thrmin=120;
while(1)
{
MotorControlBegin(); //Output head of ppm signal 输出PPM信号的头部分
PpmReadSignal(); //Read rx 读取接收机信号
Motor1=Motor2=Motor3=Motor4=MotorLimitValue(RxThr);//Transfer 直通 0~125
if(thrmin>RxThr)
{
thrmin=RxThr;
EEWriteB(EE_THRLOW,thrmin);//#define EE_THRLOW 0X24
}
MotorControlEnd(); //Output whole ppm signal 输出完整的PPM信号
LED0_TOG(); //LED flash to indicate cali LED闪烁表示校准中
Delay1ms(16); //Make about 50Hz ppm freq 形成约50Hz PPM频率
}
它实行油门校准的原理是什么呢,主要是往寄存器里面写这个thrmin有什么意义呢,理解不了。。。
|
|