Ardupilot2/libraries/AP_HAL_Empty/examples/empty_example/empty_example.cpp

22 lines
454 B
C++
Raw Normal View History

#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>
#include <AP_HAL_AVR/AP_HAL_AVR.h>
#include <AP_HAL_SITL/AP_HAL_SITL.h>
#include <AP_HAL_Empty/AP_HAL_Empty.h>
const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER;
2013-01-13 16:03:34 -04:00
void setup() {
hal.console->println_P(PSTR("Empty setup"));
}
void loop() {}
AP_HAL_MAIN();