AP_HAL: GPIO: add arming check

This commit is contained in:
Iampete1 2023-03-03 13:28:24 +00:00 committed by Andrew Tridgell
parent 88f645afc2
commit 7617606629
1 changed files with 4 additions and 0 deletions

View File

@ -113,4 +113,8 @@ public:
// optional timer tick
virtual void timer_tick(void) {};
// Run arming checks
virtual bool arming_checks(size_t buflen, char *buffer) const { return true; }
};