AP_HAL_Empty: remove empty example

There are hello world examples elsewhere, and a bit misleading. It
doesn't test the Empty implementation, but the current board
implementation.
This commit is contained in:
Caio Marcelo de Oliveira Filho 2015-10-20 13:20:26 -02:00 committed by Andrew Tridgell
parent 5781164624
commit 75add595a0
4 changed files with 0 additions and 27 deletions

View File

@ -1 +0,0 @@
include ../../../../mk/apm.mk

View File

@ -1,21 +0,0 @@
#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::get_HAL();
void setup() {
hal.console->println_P(PSTR("Empty setup"));
}
void loop() {}
AP_HAL_MAIN();

View File

@ -1,5 +0,0 @@
LIBRARIES += AP_Common
LIBRARIES += AP_Math
LIBRARIES += AP_Param
LIBRARIES += AP_Progmem
LIBRARIES += StorageManager