fix more warnings; add to CI; suppress some warnings

This commit is contained in:
Mike Kinney
2022-01-24 19:58:07 +00:00
parent 7c362af3de
commit 6883bc7afc
14 changed files with 51 additions and 27 deletions

View File

@@ -10,10 +10,10 @@ protected:
/**
* Subclasses can use this as a hook to provide custom notifications for their transport (i.e. bluetooth notifies)
*/
virtual void onNowHasData(uint32_t fromRadioNum);
virtual void onNowHasData(uint32_t fromRadioNum) override;
/// Check the current underlying physical link to see if the client is currently connected
virtual bool checkIsConnected();
virtual bool checkIsConnected() override;
};
extern PhoneAPI *bluetoothPhoneAPI;
extern PhoneAPI *bluetoothPhoneAPI;