mirror of https://github.com/ArduPilot/ardupilot
AP_HAL: use init() method without arguments
Override the init() method from parent class that doesn't have a parameter since it's not used here.
This commit is contained in:
parent
6b1c5e6f72
commit
6bc07da0ee
|
@ -14,7 +14,7 @@ void setup(void)
|
|||
init Storage API
|
||||
*/
|
||||
hal.console->printf("Starting AP_HAL::Storage test\r\n");
|
||||
st->init(NULL);
|
||||
st->init();
|
||||
|
||||
/*
|
||||
Calculate XOR of the full conent of memory
|
||||
|
|
Loading…
Reference in New Issue