mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_Notify: remove unused variables
This commit is contained in:
parent
3a8751d8a7
commit
b024ff8ea4
@ -29,6 +29,9 @@ public:
|
||||
void update(void) override;
|
||||
|
||||
private:
|
||||
#if (defined(HAL_GPIO_A_LED_PIN) && defined(HAL_GPIO_B_LED_PIN) && \
|
||||
defined(HAL_GPIO_C_LED_PIN))
|
||||
// counter incremented at 50Hz
|
||||
uint8_t _counter;
|
||||
#endif
|
||||
};
|
||||
|
@ -33,7 +33,9 @@ public:
|
||||
private:
|
||||
// counter incremented at 50Hz
|
||||
uint8_t _counter;
|
||||
#if defined(HAL_GPIO_A_LED_PIN) && defined(HAL_GPIO_B_LED_PIN)
|
||||
uint16_t _sat_cnt;
|
||||
uint8_t save_trim_counter;
|
||||
uint8_t arm_counter = 0;
|
||||
#endif
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user