mirror of https://github.com/ArduPilot/ardupilot
AntennaTracker: remove check for AVR CPUs
Remove the checks for HAL_CPU_CLASS > HAL_CPU_CLASS_16 and HAL_CPU_CLASS >= HAL_CPU_CLASS_75. Corresponding dead code will be removed on separate commits.
This commit is contained in:
parent
2a91d2169e
commit
cb8ae444d1
|
@ -873,7 +873,6 @@ mission_failed:
|
|||
break;
|
||||
}
|
||||
|
||||
#if HAL_CPU_CLASS > HAL_CPU_CLASS_16
|
||||
case MAVLINK_MSG_ID_SERIAL_CONTROL:
|
||||
handle_serial_control(msg, tracker.gps);
|
||||
break;
|
||||
|
@ -882,8 +881,6 @@ mission_failed:
|
|||
handle_gps_inject(msg, tracker.gps);
|
||||
break;
|
||||
|
||||
#endif
|
||||
|
||||
case MAVLINK_MSG_ID_AUTOPILOT_VERSION_REQUEST:
|
||||
tracker.gcs[chan-MAVLINK_COMM_0].send_autopilot_version(FIRMWARE_VERSION);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue