mirror of https://github.com/ArduPilot/ardupilot
GCS_MAVLink: 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
1e839f97ed
commit
45c472205b
|
@ -12,11 +12,7 @@
|
|||
|
||||
// 20 routes should be enough for now. This may need to increase as
|
||||
// we make more extensive use of MAVLink forwarding
|
||||
#if HAL_CPU_CLASS > HAL_CPU_CLASS_16
|
||||
#define MAVLINK_MAX_ROUTES 20
|
||||
#else
|
||||
#define MAVLINK_MAX_ROUTES 5
|
||||
#endif
|
||||
|
||||
/*
|
||||
object to handle MAVLink packet routing
|
||||
|
|
Loading…
Reference in New Issue