Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 312 → Rev 313

/QMK-Groundstation/trunk/Forms/dlg_MotorMixer.cpp
291,7 → 291,7
void dlg_MotorMixer::read_Mixer()
{
TX_Data[0] = 0;
o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, false);
o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, true);
}
 
// Motordaten auslesen
298,13 → 298,13
void dlg_MotorMixer::slot_pb_READ()
{
TX_Data[0] = 0;
o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, false);
o_Connection->send_Cmd('n', ADDRESS_FC, TX_Data, 1, true);
}
 
void dlg_MotorMixer::slot_pb_WRITE()
{
int Length = get_MotorConfig();
o_Connection->send_Cmd('m', ADDRESS_FC, TX_Data, Length, false);
o_Connection->send_Cmd('m', ADDRESS_FC, TX_Data, Length, true);
}
 
void dlg_MotorMixer::slot_pb_LOAD()