AP_Notify: remove unused methods and member from Display

This commit is contained in:
Randy Mackay 2017-01-19 14:03:31 +09:00 committed by Lucas De Marchi
parent f0c6fd3038
commit 0690315814
3 changed files with 0 additions and 4 deletions

View File

@ -33,7 +33,6 @@ private:
void update_text(uint8_t r);
bool _healthy;
bool _need_update;
uint8_t _mstartpos;
uint8_t _movedelay;

View File

@ -9,8 +9,6 @@
#define SH1106_ROWS_PER_PAGE 8
class Display_SH1106_I2C: public Display_OLED_I2C {
public:
static bool hw_autodetect() { return true; }
protected:
bool hw_init() override;

View File

@ -23,5 +23,4 @@ private:
AP_HAL::OwnPtr<AP_HAL::I2CDevice> _dev;
uint8_t _displaybuffer[SSD1306_COLUMNS * SSD1306_ROWS_PER_PAGE];
bool _need_hw_update;
void _timer(void);
};