You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
287 B
19 lines
287 B
12 years ago
|
|
||
|
#include <AP_Common.h>
|
||
|
#include <AP_Progmem.h>
|
||
|
#include <AP_Param.h>
|
||
|
#include <AP_Math.h>
|
||
|
|
||
|
#include <AP_HAL.h>
|
||
|
#include <AP_HAL_AVR.h>
|
||
|
#include <AP_HAL_AVR_SITL.h>
|
||
|
#include <AP_HAL_Empty.h>
|
||
|
|
||
|
const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER;
|
||
|
|
||
|
void setup() {}
|
||
|
void loop() {}
|
||
|
|
||
|
AP_HAL_MAIN();
|
||
|
|