mirror of https://github.com/ArduPilot/ardupilot
AP_Devo_Telem: correct some wayward comments
This commit is contained in:
parent
e863c5e533
commit
32ac4ccfce
|
@ -39,7 +39,6 @@ AP_DEVO_Telem::AP_DEVO_Telem()
|
||||||
devoPacket.header = DEVOM_SYNC_BYTE;
|
devoPacket.header = DEVOM_SYNC_BYTE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// init - perform require initialisation including detecting which protocol to use
|
|
||||||
void AP_DEVO_Telem::init()
|
void AP_DEVO_Telem::init()
|
||||||
{
|
{
|
||||||
const AP_SerialManager& serial_manager = AP::serialmanager();
|
const AP_SerialManager& serial_manager = AP::serialmanager();
|
||||||
|
@ -72,7 +71,7 @@ uint32_t AP_DEVO_Telem::gpsDdToDmsFormat(float ddm)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
send_frames - sends updates down telemetry link
|
send_frames - sends updates down telemetry link
|
||||||
should be called by main program at 1hz
|
should be called at 1hz
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define DEVO_SPEED_FACTOR 0.0194384f
|
#define DEVO_SPEED_FACTOR 0.0194384f
|
||||||
|
|
|
@ -50,7 +50,7 @@ private:
|
||||||
|
|
||||||
uint32_t gpsDdToDmsFormat(float ddm);
|
uint32_t gpsDdToDmsFormat(float ddm);
|
||||||
|
|
||||||
// tick - main call to send updates to transmitter (called by scheduler at 1kHz)
|
// tick - main call to send updates to transmitter
|
||||||
void tick(void);
|
void tick(void);
|
||||||
|
|
||||||
// send_frames - sends updates down telemetry link
|
// send_frames - sends updates down telemetry link
|
||||||
|
|
Loading…
Reference in New Issue