2012-12-23 16:17:48 -04:00
|
|
|
/*
|
|
|
|
simple hello world sketch
|
|
|
|
Andrew Tridgell September 2011
|
|
|
|
*/
|
|
|
|
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2012-12-23 16:17:48 -04:00
|
|
|
|
2017-04-13 08:34:16 -03:00
|
|
|
void setup();
|
|
|
|
void loop();
|
|
|
|
|
2015-10-16 17:22:11 -03:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
2012-12-23 16:17:48 -04:00
|
|
|
|
2015-10-19 17:02:59 -03:00
|
|
|
void setup()
|
|
|
|
{
|
2017-04-13 08:34:16 -03:00
|
|
|
hal.console->printf("hello world\n");
|
2012-12-23 16:17:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop()
|
|
|
|
{
|
2017-04-13 08:34:16 -03:00
|
|
|
hal.scheduler->delay(1000);
|
|
|
|
hal.console->printf("*\n");
|
2012-12-23 16:17:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
AP_HAL_MAIN();
|