Subversion Repositories Projects

Rev

Rev 307 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 307 Rev 313
Line 289... Line 289...
289
}
289
}
Line 290... Line 290...
290
 
290
 
291
void dlg_MotorMixer::read_Mixer()
291
void dlg_MotorMixer::read_Mixer()
292
{
292
{
293
    TX_Data[0] = 0;
293
    TX_Data[0] = 0;
294
    o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, false);
294
    o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, true);
Line 295... Line 295...
295
}
295
}
296
 
296
 
297
// Motordaten auslesen
297
// Motordaten auslesen
298
void dlg_MotorMixer::slot_pb_READ()
298
void dlg_MotorMixer::slot_pb_READ()
299
{
299
{
300
    TX_Data[0] = 0;
300
    TX_Data[0] = 0;
Line 301... Line 301...
301
    o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, false);
301
    o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, true);
302
}
302
}
303
 
303
 
304
void dlg_MotorMixer::slot_pb_WRITE()
304
void dlg_MotorMixer::slot_pb_WRITE()
305
{
305
{
Line 306... Line 306...
306
    int Length = get_MotorConfig();
306
    int Length = get_MotorConfig();
307
    o_Connection->send_Cmd('m', ADDRESS_FC, TX_Data, Length, false);
307
    o_Connection->send_Cmd('m', ADDRESS_FC, TX_Data, Length, true);
308
}
308
}