2013-09-22 23:53:48 -03:00
|
|
|
// -*- Mode: C++; c-basic-offset: 8; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
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>
|
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
|
|
|
|
2015-10-16 17:22:11 -03:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
2013-09-22 23:53:48 -03:00
|
|
|
|
2015-10-24 19:07:07 -03:00
|
|
|
void test_snprintf() {
|
2013-09-22 23:53:48 -03:00
|
|
|
char test[40];
|
|
|
|
memset(test,0,40);
|
2015-10-24 19:07:07 -03:00
|
|
|
hal.util->snprintf(test, 40, "hello %d from prog %f %S\r\n",
|
2015-10-24 18:45:41 -03:00
|
|
|
10, 1.2345, "progmem");
|
2013-09-22 23:53:48 -03:00
|
|
|
hal.console->write((const uint8_t*)test, strlen(test));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_snprintf() {
|
|
|
|
char test[40];
|
|
|
|
memset(test,0,40);
|
|
|
|
hal.util->snprintf(test, 40, "hello %d world %f %s\r\n",
|
|
|
|
20, 2.3456, "sarg");
|
|
|
|
hal.console->write((const uint8_t*)test, strlen(test));
|
|
|
|
}
|
|
|
|
|
|
|
|
void setup(void)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// HAL will start serial port at 115200.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Test printing things
|
|
|
|
//
|
|
|
|
hal.console->println("Utility String Library Test");
|
|
|
|
hal.console->println("Test snprintf:");
|
|
|
|
|
|
|
|
test_snprintf();
|
|
|
|
|
2015-10-24 19:07:07 -03:00
|
|
|
hal.console->println("Test snprintf:");
|
2013-09-22 23:53:48 -03:00
|
|
|
|
2015-10-24 19:07:07 -03:00
|
|
|
test_snprintf();
|
2013-09-22 23:53:48 -03:00
|
|
|
|
|
|
|
hal.console->println("done");
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop(void) { }
|
|
|
|
|
|
|
|
AP_HAL_MAIN();
|