AP_HAL: make _timer_tick() in Storage available in all HALs

this makes using the Empty::Storage easier
This commit is contained in:
Andrew Tridgell 2018-01-27 13:30:45 +11:00
parent 6ee0c48ab1
commit 472ba5bde7

View File

@ -8,4 +8,5 @@ public:
virtual void init() = 0;
virtual void read_block(void *dst, uint16_t src, size_t n) = 0;
virtual void write_block(uint16_t dst, const void* src, size_t n) = 0;
virtual void _timer_tick(void) {};
};