17 lines
227 B
Plaintext
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();
|
|
|