Ardupilot2/libraries/AP_HAL_Empty/examples/empty_example/empty_example.pde
2012-12-20 14:52:31 +11:00

17 lines
227 B
Plaintext

#include <AP_Common.h>
#include <AP_Progmem.h>
#include <AP_Param.h>
#include <AP_Math.h>
#include <AP_HAL.h>
#include <AP_HAL_Empty.h>
const AP_HAL::HAL& hal = AP_HAL_Empty;
void setup() {}
void loop() {}
AP_HAL_MAIN();