mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 09:28:31 -04:00
12423814ef
This commit changes the way libraries headers are included in source files: - If the header is in the same directory the source belongs to, so the notation '#include ""' is used with the path relative to the directory containing the source. - If the header is outside the directory containing the source, then we use the notation '#include <>' with the path relative to libraries folder. Some of the advantages of such approach: - Only one search path for libraries headers. - OSs like Windows may have a better lookup time.
59 lines
1.4 KiB
C++
59 lines
1.4 KiB
C++
// -*- Mode: C++; c-basic-offset: 8; indent-tabs-mode: nil -*-
|
|
|
|
//
|
|
// Example code for the AP_HAL AVRUARTDriver, based on FastSerial
|
|
//
|
|
// This code is placed into the public domain.
|
|
//
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
#include <AP_Math/AP_Math.h>
|
|
#include <AP_Param/AP_Param.h>
|
|
#include <StorageManager/StorageManager.h>
|
|
#include <AP_Progmem/AP_Progmem.h>
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
#include <AP_HAL_AVR/AP_HAL_AVR.h>
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_APM2
|
|
const AP_HAL::HAL& hal = AP_HAL_AVR_APM2;
|
|
#elif CONFIG_HAL_BOARD == HAL_BOARD_APM1
|
|
const AP_HAL::HAL& hal = AP_HAL_AVR_APM1;
|
|
#endif
|
|
|
|
void setup(void)
|
|
{
|
|
//
|
|
// HAL will start serial port at 115200.
|
|
//
|
|
|
|
//
|
|
// Test printing things
|
|
//
|
|
hal.console->print("test");
|
|
hal.console->println(" begin");
|
|
hal.console->println(1000);
|
|
hal.console->println(1000, 8);
|
|
hal.console->println(1000, 10);
|
|
hal.console->println(1000, 16);
|
|
hal.console->println_P(PSTR("progmem"));
|
|
int x = 3;
|
|
int *ptr = &x;
|
|
hal.console->printf("printf %d %u %#x %p %f %S\n", -1000, 1000, 1000, ptr, 1.2345, PSTR("progmem"));
|
|
hal.console->printf_P(PSTR("printf_P %d %u %#x %p %f %S\n"), -1000, 1000, 1000, ptr, 1.2345, PSTR("progmem"));
|
|
hal.console->println("done");
|
|
}
|
|
|
|
void loop(void)
|
|
{
|
|
int c;
|
|
//
|
|
// Perform a simple loopback operation.
|
|
//
|
|
c = hal.console->read();
|
|
if (-1 != c)
|
|
hal.console->write(c);
|
|
}
|
|
|
|
AP_HAL_MAIN();
|