2013-09-22 23:53:48 -03:00
|
|
|
// -*- 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.
|
|
|
|
//
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
|
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
#include <AP_Progmem/AP_Progmem.h>
|
2013-09-22 23:53:48 -03:00
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_HAL_FLYMAPLE/AP_HAL_FLYMAPLE.h>
|
2013-09-22 23:53:48 -03:00
|
|
|
|
|
|
|
const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER;
|
|
|
|
|
|
|
|
void setup(void)
|
|
|
|
{
|
|
|
|
hal.uartA->begin(115200);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Test printing things
|
|
|
|
//
|
|
|
|
|
|
|
|
hal.uartA->print("test");
|
|
|
|
hal.uartA->println(" begin");
|
|
|
|
hal.uartA->println(1000);
|
|
|
|
hal.uartA->println(1000, 8);
|
|
|
|
hal.uartA->println(1000, 10);
|
|
|
|
hal.uartA->println(1000, 16);
|
|
|
|
hal.uartA->println_P(PSTR("progmem"));
|
|
|
|
int x = 3;
|
|
|
|
int *ptr = &x;
|
|
|
|
hal.uartA->printf("printf %d %u %#x %p %f %s\n", -1000, 1000, 1000, ptr, 1.2345, PSTR("progmem"));
|
|
|
|
hal.uartA->printf_P(PSTR("printf_P %d %u %#x %p %f %s\n"), -1000, 1000, 1000, ptr, 1.2345, PSTR("progmem"));
|
|
|
|
hal.uartA->println("done");
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop(void)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
//
|
|
|
|
// Perform a simple loopback operation.
|
|
|
|
//
|
|
|
|
c = hal.uartA->read();
|
|
|
|
if (-1 != c)
|
|
|
|
hal.uartA->write(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_HAL_MAIN();
|