2012-12-14 21:55:38 -04:00
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_Progmem/AP_Progmem.h>
|
|
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
#include <StorageManager/StorageManager.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
2012-12-14 21:55:38 -04:00
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL_AVR/AP_HAL_AVR.h>
|
|
|
|
#include <AP_HAL_SITL/AP_HAL_SITL.h>
|
|
|
|
#include <AP_HAL_Empty/AP_HAL_Empty.h>
|
2012-12-14 21:55:38 -04:00
|
|
|
|
2012-12-18 20:03:11 -04:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER;
|
2012-12-14 21:55:38 -04:00
|
|
|
|
2013-01-13 16:03:34 -04:00
|
|
|
void setup() {
|
|
|
|
hal.console->println_P(PSTR("Empty setup"));
|
|
|
|
}
|
2012-12-14 21:55:38 -04:00
|
|
|
void loop() {}
|
|
|
|
|
|
|
|
AP_HAL_MAIN();
|
|
|
|
|