Browse Source

Rover: replace int with uint8_t

non-functional change
master
Randy Mackay 8 years ago
parent
commit
3adfb0e77d
  1. 2
      APMrover2/radio.cpp

2
APMrover2/radio.cpp

@ -189,7 +189,7 @@ void Rover::trim_control_surfaces() @@ -189,7 +189,7 @@ void Rover::trim_control_surfaces()
void Rover::trim_radio()
{
for (int y = 0; y < 30; y++) {
for (uint8_t y = 0; y < 30; y++) {
read_radio();
}
trim_control_surfaces();

Loading…
Cancel
Save