b89c45735b
* avoid extra typing * makes it HAL implementation specific
43 lines
862 B
Plaintext
43 lines
862 B
Plaintext
|
|
#include <AP_Common.h>
|
|
#include <AP_Progmem.h>
|
|
#include <AP_HAL.h>
|
|
#include <AP_HAL_AVR.h>
|
|
|
|
const AP_HAL::HAL& hal = AP_HAL_AVR_APM1;
|
|
|
|
void loop (void) {
|
|
hal.console->println(".");
|
|
hal.gpio->write(3, 0);
|
|
hal.scheduler->delay(1000);
|
|
hal.gpio->write(3, 1);
|
|
}
|
|
|
|
void setup (void) {
|
|
hal.gpio->pinMode(1, GPIO_OUTPUT);
|
|
hal.gpio->pinMode(2, GPIO_OUTPUT);
|
|
hal.gpio->pinMode(3, GPIO_OUTPUT);
|
|
hal.gpio->pinMode(13, GPIO_OUTPUT);
|
|
|
|
hal.gpio->write(1, 1);
|
|
hal.gpio->write(2, 1);
|
|
hal.gpio->write(3, 1);
|
|
hal.gpio->write(13, 1);
|
|
|
|
hal.scheduler->delay(1000);
|
|
|
|
hal.gpio->write(1, 0);
|
|
hal.gpio->write(2, 0);
|
|
hal.gpio->write(13, 0);
|
|
|
|
hal.scheduler->delay(1000);
|
|
|
|
hal.gpio->write(13, 1);
|
|
|
|
hal.gpio->write(1, 0);
|
|
hal.console->println("Hello World");
|
|
hal.gpio->write(2, 0);
|
|
}
|
|
|
|
AP_HAL_MAIN();
|