ardupilot/libraries/DataFlash/examples/DataFlash_test/DataFlash_test.cpp

142 lines
3.6 KiB
C++
Raw Normal View History

2013-01-12 02:21:21 -04:00
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
2014-12-02 17:39:36 -04:00
* Example of DataFlash library.
* originally based on code by Jordi MuÒoz and Jose Julio
*/
// Libraries
2013-03-10 23:02:08 -03:00
#include <AP_HAL.h>
#include <AP_HAL_AVR.h>
2015-05-04 03:17:39 -03:00
#include <AP_HAL_SITL.h>
2013-03-10 23:02:08 -03:00
#include <AP_HAL_Empty.h>
#include <AP_HAL_PX4.h>
#include <AP_Common.h>
2012-12-12 18:21:04 -04:00
#include <AP_Param.h>
#include <AP_Progmem.h>
#include <AP_Math.h>
#include <AP_Compass.h>
#include <Filter.h>
#include <AP_Declination.h>
#include <AP_Airspeed.h>
#include <AP_Baro.h>
#include <AP_AHRS.h>
#include <AP_ADC.h>
2013-07-15 01:10:58 -03:00
#include <AP_ADC_AnalogSource.h>
#include <AP_InertialSensor.h>
#include <AP_GPS.h>
#include <DataFlash.h>
2013-05-08 03:45:40 -03:00
#include <GCS_MAVLink.h>
2014-03-18 19:34:09 -03:00
#include <AP_Mission.h>
2014-08-13 08:48:11 -03:00
#include <StorageManager.h>
2014-07-25 04:55:16 -03:00
#include <AP_Terrain.h>
2013-08-29 02:03:33 -03:00
#include <AP_Notify.h>
2013-09-12 22:44:42 -03:00
#include <AP_Vehicle.h>
2014-12-02 17:39:36 -04:00
#include <AP_NavEKF.h>
#include <AP_Rally.h>
#include <AP_Scheduler.h>
2015-01-28 03:31:50 -04:00
#include <AP_BattMonitor.h>
2012-12-12 18:21:04 -04:00
const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER;
2012-12-12 18:21:04 -04:00
#if CONFIG_HAL_BOARD == HAL_BOARD_APM2
DataFlash_APM2 DataFlash;
#elif CONFIG_HAL_BOARD == HAL_BOARD_APM1
DataFlash_APM1 DataFlash;
#else
DataFlash_Empty DataFlash;
2012-12-12 18:21:04 -04:00
#endif
2012-01-09 00:26:56 -04:00
#define LOG_TEST_MSG 1
struct PACKED log_Test {
LOG_PACKET_HEADER;
2013-01-12 02:21:21 -04:00
uint16_t v1, v2, v3, v4;
int32_t l1, l2;
};
static const struct LogStructure log_structure[] PROGMEM = {
LOG_COMMON_STRUCTURES,
{ LOG_TEST_MSG, sizeof(log_Test),
"TEST", "HHHHii", "V1,V2,V3,V4,L1,L2" }
};
#define NUM_PACKETS 500
2012-01-09 00:26:56 -04:00
static uint16_t log_num;
void setup()
{
2015-07-20 16:53:47 -03:00
DataFlash.Init(log_structure, ARRAY_SIZE(log_structure));
2012-12-12 18:21:04 -04:00
hal.console->println("Dataflash Log Test 1.0");
// Test
2012-12-12 18:21:04 -04:00
hal.scheduler->delay(20);
DataFlash.ReadManufacturerID();
2012-12-12 18:21:04 -04:00
hal.scheduler->delay(10);
2013-03-10 23:02:08 -03:00
DataFlash.ShowDeviceInfo(hal.console);
2013-01-12 02:21:21 -04:00
if (DataFlash.NeedErase()) {
hal.console->println("Erasing...");
DataFlash.EraseAll();
}
// We start to write some info (sequentialy) starting from page 1
// This is similar to what we will do...
2013-12-16 20:51:12 -04:00
log_num = DataFlash.StartNewLog();
hal.console->printf("Using log number %u\n", log_num);
2012-12-12 18:21:04 -04:00
hal.console->println("After testing perform erase before using DataFlash for logging!");
hal.console->println("");
hal.console->println("Writing to flash... wait...");
2013-01-12 02:21:21 -04:00
uint32_t total_micros = 0;
uint16_t i;
for (i = 0; i < NUM_PACKETS; i++) {
uint32_t start = hal.scheduler->micros();
// note that we use g++ style initialisers to make larger
// structures easier to follow
struct log_Test pkt = {
LOG_PACKET_HEADER_INIT(LOG_TEST_MSG),
2013-01-12 02:21:21 -04:00
v1 : 2000 + i,
v2 : 2001 + i,
v3 : 2002 + i,
v4 : 2003 + i,
l1 : (long)i * 5000,
l2 : (long)i * 16268
2013-01-12 02:21:21 -04:00
};
DataFlash.WriteBlock(&pkt, sizeof(pkt));
total_micros += hal.scheduler->micros() - start;
hal.scheduler->delay(20);
}
2013-01-12 02:21:21 -04:00
hal.console->printf("Average write time %.1f usec/byte\n",
(double)total_micros/((float)i*sizeof(struct log_Test)));
2013-01-12 02:21:21 -04:00
2012-12-12 18:21:04 -04:00
hal.scheduler->delay(100);
}
static void
print_mode(AP_HAL::BetterStream *port, uint8_t mode)
{
port->printf_P(PSTR("Mode(%u)"), (unsigned)mode);
}
void loop()
{
uint16_t start, end;
hal.console->printf("Start read of log %u\n", log_num);
DataFlash.get_log_boundaries(log_num, start, end);
DataFlash.LogReadProcess(log_num, start, end,
print_mode,
hal.console);
2013-01-12 02:21:21 -04:00
hal.console->printf("\nTest complete. Test will repeat in 20 seconds\n");
2012-12-12 18:21:04 -04:00
hal.scheduler->delay(20000);
}
2012-12-12 18:21:04 -04:00
AP_HAL_MAIN();