2012-12-14 21:55:38 -04:00
|
|
|
|
2013-01-13 16:03:34 -04:00
|
|
|
#include <AP_HAL.h>
|
2012-12-14 21:55:38 -04:00
|
|
|
#include <AP_Common.h>
|
|
|
|
#include <AP_Progmem.h>
|
|
|
|
#include <AP_Param.h>
|
|
|
|
#include <AP_Math.h>
|
|
|
|
|
2012-12-18 20:03:11 -04:00
|
|
|
#include <AP_HAL_AVR.h>
|
|
|
|
#include <AP_HAL_AVR_SITL.h>
|
2012-12-14 21:55:38 -04:00
|
|
|
#include <AP_HAL_Empty.h>
|
|
|
|
|
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();
|
|
|
|
|