2012-02-11 07:51:35 -04:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
//
|
|
|
|
// This is free software; you can redistribute it and/or modify it under
|
|
|
|
// the terms of the GNU Lesser General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2.1 of the License, or (at
|
|
|
|
// your option) any later version.
|
|
|
|
//
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// total up and check overflow
|
|
|
|
// check size of group var_info
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
/// @file AP_Param.cpp
|
|
|
|
/// @brief The AP variable store.
|
|
|
|
|
|
|
|
|
2012-02-12 08:39:04 -04:00
|
|
|
#include <FastSerial.h>
|
2012-02-11 07:51:35 -04:00
|
|
|
#include <AP_Common.h>
|
2012-02-17 19:00:26 -04:00
|
|
|
#include <AP_Math.h>
|
2012-02-11 07:51:35 -04:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-02-12 04:18:44 -04:00
|
|
|
// #define ENABLE_FASTSERIAL_DEBUG
|
2012-02-11 07:51:35 -04:00
|
|
|
|
|
|
|
#ifdef ENABLE_FASTSERIAL_DEBUG
|
2012-08-17 03:18:11 -03:00
|
|
|
# define serialDebug(fmt, args ...) if (FastSerial::getInitialized(0)) do {Serial.printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); delay(0); } while(0)
|
2012-02-11 07:51:35 -04:00
|
|
|
#else
|
2012-08-17 03:18:11 -03:00
|
|
|
# define serialDebug(fmt, args ...)
|
2012-02-11 07:51:35 -04:00
|
|
|
#endif
|
|
|
|
|
2012-02-12 05:18:10 -04:00
|
|
|
// some useful progmem macros
|
|
|
|
#define PGM_UINT8(addr) pgm_read_byte((const prog_char *)addr)
|
|
|
|
#define PGM_UINT16(addr) pgm_read_word((const uint16_t *)addr)
|
2012-08-06 22:00:43 -03:00
|
|
|
#define PGM_FLOAT(addr) pgm_read_float((const float *)addr)
|
2012-02-12 05:18:10 -04:00
|
|
|
#define PGM_POINTER(addr) pgm_read_pointer((const void *)addr)
|
|
|
|
|
2012-02-12 18:54:46 -04:00
|
|
|
// the 'GROUP_ID' of a element of a group is the 8 bit identifier used
|
|
|
|
// to distinguish between this element of the group and other elements
|
|
|
|
// of the same group. It is calculated using a bit shift per level of
|
|
|
|
// nesting, so the first level of nesting gets 4 bits, and the next
|
|
|
|
// level gets the next 4 bits. This limits groups to having at most 16
|
|
|
|
// elements.
|
|
|
|
#define GROUP_ID(grpinfo, base, i, shift) ((base)+(((uint16_t)PGM_UINT8(&grpinfo[i].idx))<<(shift)))
|
|
|
|
|
2012-02-24 20:37:15 -04:00
|
|
|
// Note about AP_Vector3f handling.
|
|
|
|
// The code has special cases for AP_Vector3f to allow it to be viewed
|
|
|
|
// as both a single 3 element vector and as a set of 3 AP_Float
|
|
|
|
// variables. This is done to make it possible for MAVLink to see
|
|
|
|
// vectors as parameters, which allows users to save their compass
|
|
|
|
// offsets in MAVLink parameter files. The code involves quite a few
|
|
|
|
// special cases which could be generalised to any vector/matrix type
|
|
|
|
// if we end up needing this behaviour for other than AP_Vector3f
|
2012-02-12 18:54:46 -04:00
|
|
|
|
2012-02-24 20:37:15 -04:00
|
|
|
|
|
|
|
// static member variables for AP_Param.
|
2012-02-11 07:51:35 -04:00
|
|
|
//
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// max EEPROM write size. This is usually less than the physical
|
|
|
|
// size as only part of the EEPROM is reserved for parameters
|
|
|
|
uint16_t AP_Param::_eeprom_size;
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// number of rows in the _var_info[] table
|
2012-02-12 19:12:02 -04:00
|
|
|
uint8_t AP_Param::_num_vars;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
|
|
|
// storage and naming information about all types that can be saved
|
|
|
|
const AP_Param::Info *AP_Param::_var_info;
|
|
|
|
|
|
|
|
// write to EEPROM, checking each byte to avoid writing
|
|
|
|
// bytes that are already correct
|
|
|
|
void AP_Param::eeprom_write_check(const void *ptr, uint16_t ofs, uint8_t size)
|
|
|
|
{
|
|
|
|
const uint8_t *b = (const uint8_t *)ptr;
|
|
|
|
while (size--) {
|
2012-08-09 03:18:53 -03:00
|
|
|
uint8_t v = eeprom_read_byte((const uint8_t *)(uintptr_t)ofs);
|
2012-02-11 07:51:35 -04:00
|
|
|
if (v != *b) {
|
2012-08-09 03:18:53 -03:00
|
|
|
eeprom_write_byte((uint8_t *)(uintptr_t)ofs, *b);
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
b++;
|
|
|
|
ofs++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// write a sentinal value at the given offset
|
|
|
|
void AP_Param::write_sentinal(uint16_t ofs)
|
|
|
|
{
|
|
|
|
struct Param_header phdr;
|
2012-02-12 18:54:46 -04:00
|
|
|
phdr.type = _sentinal_type;
|
|
|
|
phdr.key = _sentinal_key;
|
|
|
|
phdr.group_element = _sentinal_group;
|
2012-02-11 07:51:35 -04:00
|
|
|
eeprom_write_check(&phdr, ofs, sizeof(phdr));
|
|
|
|
}
|
|
|
|
|
|
|
|
// erase all EEPROM variables by re-writing the header and adding
|
|
|
|
// a sentinal
|
|
|
|
void AP_Param::erase_all(void)
|
|
|
|
{
|
|
|
|
struct EEPROM_header hdr;
|
|
|
|
|
|
|
|
serialDebug("erase_all");
|
|
|
|
|
|
|
|
// write the header
|
2012-02-12 19:12:02 -04:00
|
|
|
hdr.magic[0] = k_EEPROM_magic0;
|
|
|
|
hdr.magic[1] = k_EEPROM_magic1;
|
2012-02-11 07:51:35 -04:00
|
|
|
hdr.revision = k_EEPROM_revision;
|
2012-02-12 19:12:02 -04:00
|
|
|
hdr.spare = 0;
|
2012-02-11 07:51:35 -04:00
|
|
|
eeprom_write_check(&hdr, 0, sizeof(hdr));
|
|
|
|
|
|
|
|
// add a sentinal directly after the header
|
|
|
|
write_sentinal(sizeof(struct EEPROM_header));
|
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// validate a group info table
|
2012-08-17 03:18:11 -03:00
|
|
|
bool AP_Param::check_group_info(const struct AP_Param::GroupInfo * group_info,
|
|
|
|
uint16_t * total_size,
|
|
|
|
uint8_t group_shift)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
|
|
|
uint8_t type;
|
2012-02-12 18:54:46 -04:00
|
|
|
int8_t max_idx = -1;
|
2012-02-12 03:22:57 -04:00
|
|
|
for (uint8_t i=0;
|
2012-02-12 05:18:10 -04:00
|
|
|
(type=PGM_UINT8(&group_info[i].type)) != AP_PARAM_NONE;
|
2012-02-12 03:22:57 -04:00
|
|
|
i++) {
|
2012-02-28 19:54:40 -04:00
|
|
|
#ifdef AP_NESTED_GROUPS_ENABLED
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
// a nested group
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *ginfo = (const struct GroupInfo *)PGM_POINTER(&group_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (group_shift + _group_level_shift >= _group_bits) {
|
|
|
|
// double nesting of groups is not allowed
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (ginfo == NULL ||
|
|
|
|
!check_group_info(ginfo, total_size, group_shift + _group_level_shift)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-28 19:54:40 -04:00
|
|
|
#endif // AP_NESTED_GROUPS_ENABLED
|
2012-02-12 18:54:46 -04:00
|
|
|
uint8_t idx = PGM_UINT8(&group_info[i].idx);
|
|
|
|
if (idx >= (1<<_group_level_shift)) {
|
2012-02-12 03:22:57 -04:00
|
|
|
// passed limit on table size
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-12 18:54:46 -04:00
|
|
|
if ((int8_t)idx <= max_idx) {
|
|
|
|
// the indexes must be in increasing order
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
max_idx = (int8_t)idx;
|
2012-02-12 03:22:57 -04:00
|
|
|
uint8_t size = type_size((enum ap_var_type)type);
|
|
|
|
if (size == 0) {
|
|
|
|
// not a valid type
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
(*total_size) += size + sizeof(struct Param_header);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-03-02 00:45:18 -04:00
|
|
|
// check for duplicate key values
|
|
|
|
bool AP_Param::duplicate_key(uint8_t vindex, uint8_t key)
|
|
|
|
{
|
|
|
|
for (uint8_t i=vindex+1; i<_num_vars; i++) {
|
|
|
|
uint8_t key2 = PGM_UINT8(&_var_info[i].key);
|
|
|
|
if (key2 == key) {
|
|
|
|
// no duplicate keys allowed
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// validate the _var_info[] table
|
|
|
|
bool AP_Param::check_var_info(void)
|
|
|
|
{
|
|
|
|
uint16_t total_size = sizeof(struct EEPROM_header);
|
|
|
|
|
2012-02-12 19:12:02 -04:00
|
|
|
for (uint8_t i=0; i<_num_vars; i++) {
|
2012-02-12 05:18:10 -04:00
|
|
|
uint8_t type = PGM_UINT8(&_var_info[i].type);
|
2012-03-02 00:45:18 -04:00
|
|
|
uint8_t key = PGM_UINT8(&_var_info[i].key);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
if (i == 0) {
|
|
|
|
// first element can't be a group, for first() call
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *group_info = (const struct GroupInfo *)PGM_POINTER(&_var_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (group_info == NULL ||
|
|
|
|
!check_group_info(group_info, &total_size, 0)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
uint8_t size = type_size((enum ap_var_type)type);
|
|
|
|
if (size == 0) {
|
2012-02-12 16:43:09 -04:00
|
|
|
// not a valid type - the top level list can't contain
|
2012-02-12 18:54:46 -04:00
|
|
|
// AP_PARAM_NONE
|
2012-02-12 03:22:57 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
total_size += size + sizeof(struct Param_header);
|
|
|
|
}
|
2012-03-02 00:45:18 -04:00
|
|
|
if (duplicate_key(i, key)) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2012-08-06 22:00:43 -03:00
|
|
|
|
|
|
|
// we no longer check if total_size is larger than _eeprom_size,
|
|
|
|
// as we allow for more variables than could fit, relying on not
|
|
|
|
// saving default values
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// setup the _var_info[] table
|
2012-08-06 22:00:43 -03:00
|
|
|
bool AP_Param::setup(const struct AP_Param::Info *info, uint16_t eeprom_size)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
|
|
|
struct EEPROM_header hdr;
|
2012-08-06 22:00:43 -03:00
|
|
|
uint8_t i;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
_eeprom_size = eeprom_size;
|
2012-02-11 07:51:35 -04:00
|
|
|
_var_info = info;
|
2012-08-06 22:00:43 -03:00
|
|
|
|
|
|
|
for (i=0; PGM_UINT8(&info[i].type) != AP_PARAM_NONE; i++) ;
|
|
|
|
_num_vars = i;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
if (!check_var_info()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:00:43 -03:00
|
|
|
serialDebug("setup %u vars", (unsigned)_num_vars);
|
2012-02-11 07:51:35 -04:00
|
|
|
|
|
|
|
// check the header
|
|
|
|
eeprom_read_block(&hdr, 0, sizeof(hdr));
|
2012-02-12 19:12:02 -04:00
|
|
|
if (hdr.magic[0] != k_EEPROM_magic0 ||
|
|
|
|
hdr.magic[1] != k_EEPROM_magic1 ||
|
2012-02-11 07:51:35 -04:00
|
|
|
hdr.revision != k_EEPROM_revision) {
|
|
|
|
// header doesn't match. We can't recover any variables. Wipe
|
|
|
|
// the header and setup the sentinal directly after the header
|
|
|
|
serialDebug("bad header in setup - erasing");
|
|
|
|
erase_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-02-17 00:12:48 -04:00
|
|
|
// check if AP_Param has been initialised
|
|
|
|
bool AP_Param::initialised(void)
|
|
|
|
{
|
|
|
|
return _var_info != NULL;
|
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// find the info structure given a header and a group_info table
|
|
|
|
// return the Info structure and a pointer to the variables storage
|
|
|
|
const struct AP_Param::Info *AP_Param::find_by_header_group(struct Param_header phdr, void **ptr,
|
|
|
|
uint8_t vindex,
|
|
|
|
const struct GroupInfo *group_info,
|
|
|
|
uint8_t group_base,
|
|
|
|
uint8_t group_shift)
|
|
|
|
{
|
|
|
|
uint8_t type;
|
|
|
|
for (uint8_t i=0;
|
2012-02-12 05:18:10 -04:00
|
|
|
(type=PGM_UINT8(&group_info[i].type)) != AP_PARAM_NONE;
|
2012-02-12 03:22:57 -04:00
|
|
|
i++) {
|
2012-02-28 19:54:40 -04:00
|
|
|
#ifdef AP_NESTED_GROUPS_ENABLED
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
// a nested group
|
|
|
|
if (group_shift + _group_level_shift >= _group_bits) {
|
|
|
|
// too deeply nested - this should have been caught by
|
|
|
|
// setup() !
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *ginfo = (const struct GroupInfo *)PGM_POINTER(&group_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct AP_Param::Info *ret = find_by_header_group(phdr, ptr, vindex, ginfo,
|
2012-02-12 18:54:46 -04:00
|
|
|
GROUP_ID(group_info, group_base, i, group_shift),
|
2012-02-12 03:22:57 -04:00
|
|
|
group_shift + _group_level_shift);
|
|
|
|
if (ret != NULL) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-28 19:54:40 -04:00
|
|
|
#endif // AP_NESTED_GROUPS_ENABLED
|
2012-02-12 18:54:46 -04:00
|
|
|
if (GROUP_ID(group_info, group_base, i, group_shift) == phdr.group_element) {
|
2012-02-12 03:22:57 -04:00
|
|
|
// found a group element
|
2012-02-12 05:18:10 -04:00
|
|
|
*ptr = (void*)(PGM_POINTER(&_var_info[vindex].ptr) + PGM_UINT16(&group_info[i].offset));
|
2012-02-12 03:22:57 -04:00
|
|
|
return &_var_info[vindex];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// find the info structure given a header
|
|
|
|
// return the Info structure and a pointer to the variables storage
|
|
|
|
const struct AP_Param::Info *AP_Param::find_by_header(struct Param_header phdr, void **ptr)
|
|
|
|
{
|
|
|
|
// loop over all named variables
|
2012-02-12 19:12:02 -04:00
|
|
|
for (uint8_t i=0; i<_num_vars; i++) {
|
2012-02-12 05:18:10 -04:00
|
|
|
uint8_t type = PGM_UINT8(&_var_info[i].type);
|
2012-02-12 18:54:46 -04:00
|
|
|
uint8_t key = PGM_UINT8(&_var_info[i].key);
|
2012-02-11 07:51:35 -04:00
|
|
|
if (key != phdr.key) {
|
|
|
|
// not the right key
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (type != AP_PARAM_GROUP) {
|
|
|
|
// if its not a group then we are done
|
2012-02-12 05:18:10 -04:00
|
|
|
*ptr = (void*)PGM_POINTER(&_var_info[i].ptr);
|
2012-02-11 07:51:35 -04:00
|
|
|
return &_var_info[i];
|
|
|
|
}
|
|
|
|
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *group_info = (const struct GroupInfo *)PGM_POINTER(&_var_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
return find_by_header_group(phdr, ptr, i, group_info, 0, 0);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the info structure for a variable in a group
|
2012-08-17 03:18:11 -03:00
|
|
|
const struct AP_Param::Info *AP_Param::find_var_info_group(const struct GroupInfo * group_info,
|
|
|
|
uint8_t vindex,
|
|
|
|
uint8_t group_base,
|
|
|
|
uint8_t group_shift,
|
|
|
|
uint8_t * group_element,
|
2012-02-23 23:19:00 -04:00
|
|
|
const struct GroupInfo **group_ret,
|
2012-08-17 03:18:11 -03:00
|
|
|
uint8_t * idx)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
2012-02-12 05:18:10 -04:00
|
|
|
uintptr_t base = PGM_POINTER(&_var_info[vindex].ptr);
|
2012-02-12 03:22:57 -04:00
|
|
|
uint8_t type;
|
|
|
|
for (uint8_t i=0;
|
2012-02-12 05:18:10 -04:00
|
|
|
(type=PGM_UINT8(&group_info[i].type)) != AP_PARAM_NONE;
|
2012-02-12 03:22:57 -04:00
|
|
|
i++) {
|
2012-02-23 23:19:00 -04:00
|
|
|
uintptr_t ofs = PGM_POINTER(&group_info[i].offset);
|
2012-02-28 19:54:40 -04:00
|
|
|
#ifdef AP_NESTED_GROUPS_ENABLED
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *ginfo = (const struct GroupInfo *)PGM_POINTER(&group_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
// a nested group
|
|
|
|
if (group_shift + _group_level_shift >= _group_bits) {
|
|
|
|
// too deeply nested - this should have been caught by
|
|
|
|
// setup() !
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
const struct AP_Param::Info *info;
|
|
|
|
info = find_var_info_group(ginfo, vindex,
|
2012-02-12 18:54:46 -04:00
|
|
|
GROUP_ID(group_info, group_base, i, group_shift),
|
2012-02-12 03:22:57 -04:00
|
|
|
group_shift + _group_level_shift,
|
|
|
|
group_element,
|
2012-02-23 23:19:00 -04:00
|
|
|
group_ret,
|
|
|
|
idx);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (info != NULL) {
|
|
|
|
return info;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
2012-02-28 19:54:40 -04:00
|
|
|
} else // Forgive the poor formatting - if continues below.
|
|
|
|
#endif // AP_NESTED_GROUPS_ENABLED
|
2012-08-17 03:18:11 -03:00
|
|
|
if ((uintptr_t) this == base + ofs) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*group_element = GROUP_ID(group_info, group_base, i, group_shift);
|
|
|
|
*group_ret = &group_info[i];
|
|
|
|
*idx = 0;
|
|
|
|
return &_var_info[vindex];
|
|
|
|
} else if (type == AP_PARAM_VECTOR3F &&
|
2012-08-17 03:18:11 -03:00
|
|
|
(base+ofs+sizeof(float) == (uintptr_t) this ||
|
|
|
|
base+ofs+2*sizeof(float) == (uintptr_t) this)) {
|
2012-02-24 20:37:15 -04:00
|
|
|
// we are inside a Vector3f. We need to work out which
|
|
|
|
// element of the vector the current object refers to.
|
2012-08-17 03:18:11 -03:00
|
|
|
*idx = (((uintptr_t) this) - (base+ofs))/sizeof(float);
|
2012-02-12 18:54:46 -04:00
|
|
|
*group_element = GROUP_ID(group_info, group_base, i, group_shift);
|
2012-02-12 03:22:57 -04:00
|
|
|
*group_ret = &group_info[i];
|
|
|
|
return &_var_info[vindex];
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the info structure for a variable
|
2012-08-17 03:18:11 -03:00
|
|
|
const struct AP_Param::Info *AP_Param::find_var_info(uint8_t * group_element,
|
|
|
|
const struct GroupInfo ** group_ret,
|
|
|
|
uint8_t * idx)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
2012-02-12 19:12:02 -04:00
|
|
|
for (uint8_t i=0; i<_num_vars; i++) {
|
2012-02-12 05:18:10 -04:00
|
|
|
uint8_t type = PGM_UINT8(&_var_info[i].type);
|
|
|
|
uintptr_t base = PGM_POINTER(&_var_info[i].ptr);
|
2012-02-11 07:51:35 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *group_info = (const struct GroupInfo *)PGM_POINTER(&_var_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct AP_Param::Info *info;
|
2012-02-23 23:19:00 -04:00
|
|
|
info = find_var_info_group(group_info, i, 0, 0, group_element, group_ret, idx);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (info != NULL) {
|
|
|
|
return info;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
2012-08-17 03:18:11 -03:00
|
|
|
} else if (base == (uintptr_t) this) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*group_element = 0;
|
|
|
|
*group_ret = NULL;
|
|
|
|
*idx = 0;
|
|
|
|
return &_var_info[i];
|
|
|
|
} else if (type == AP_PARAM_VECTOR3F &&
|
2012-08-17 03:18:11 -03:00
|
|
|
(base+sizeof(float) == (uintptr_t) this ||
|
|
|
|
base+2*sizeof(float) == (uintptr_t) this)) {
|
2012-02-24 20:37:15 -04:00
|
|
|
// we are inside a Vector3f. Work out which element we are
|
|
|
|
// referring to.
|
2012-08-17 03:18:11 -03:00
|
|
|
*idx = (((uintptr_t) this) - base)/sizeof(float);
|
2012-02-11 07:51:35 -04:00
|
|
|
*group_element = 0;
|
2012-02-12 03:22:57 -04:00
|
|
|
*group_ret = NULL;
|
2012-02-11 07:51:35 -04:00
|
|
|
return &_var_info[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the storage size for a AP_PARAM_* type
|
|
|
|
const uint8_t AP_Param::type_size(enum ap_var_type type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case AP_PARAM_NONE:
|
|
|
|
case AP_PARAM_GROUP:
|
|
|
|
return 0;
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
return 1;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
return 2;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
return 4;
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
return 4;
|
|
|
|
case AP_PARAM_VECTOR3F:
|
|
|
|
return 3*4;
|
2012-02-11 08:00:08 -04:00
|
|
|
case AP_PARAM_VECTOR6F:
|
|
|
|
return 6*4;
|
2012-02-11 07:51:35 -04:00
|
|
|
case AP_PARAM_MATRIX3F:
|
|
|
|
return 3*3*4;
|
|
|
|
}
|
|
|
|
serialDebug("unknown type %u\n", type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// scan the EEPROM looking for a given variable by header content
|
|
|
|
// return true if found, along with the offset in the EEPROM where
|
|
|
|
// the variable is stored
|
|
|
|
// if not found return the offset of the sentinal, or
|
|
|
|
bool AP_Param::scan(const AP_Param::Param_header *target, uint16_t *pofs)
|
|
|
|
{
|
|
|
|
struct Param_header phdr;
|
|
|
|
uint16_t ofs = sizeof(AP_Param::EEPROM_header);
|
2012-02-12 03:22:57 -04:00
|
|
|
while (ofs < _eeprom_size) {
|
2012-08-09 03:18:53 -03:00
|
|
|
eeprom_read_block(&phdr, (void *)(uintptr_t)ofs, sizeof(phdr));
|
2012-02-11 07:51:35 -04:00
|
|
|
if (phdr.type == target->type &&
|
|
|
|
phdr.key == target->key &&
|
|
|
|
phdr.group_element == target->group_element) {
|
|
|
|
// found it
|
|
|
|
*pofs = ofs;
|
|
|
|
return true;
|
|
|
|
}
|
2012-02-12 18:54:46 -04:00
|
|
|
// note that this is an ||, not an &&, as this makes us more
|
|
|
|
// robust to power off while adding a variable to EEPROM
|
|
|
|
if (phdr.type == _sentinal_type ||
|
|
|
|
phdr.key == _sentinal_key ||
|
|
|
|
phdr.group_element == _sentinal_group) {
|
2012-02-11 07:51:35 -04:00
|
|
|
// we've reached the sentinal
|
|
|
|
*pofs = ofs;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ofs += type_size((enum ap_var_type)phdr.type) + sizeof(phdr);
|
|
|
|
}
|
|
|
|
*pofs = ~0;
|
|
|
|
serialDebug("scan past end of eeprom");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-23 23:19:00 -04:00
|
|
|
// add a X,Y,Z suffix to the name of a Vector3f element
|
|
|
|
void AP_Param::add_vector3f_suffix(char *buffer, size_t buffer_size, uint8_t idx)
|
|
|
|
{
|
|
|
|
uint8_t len = strnlen(buffer, buffer_size);
|
|
|
|
if ((size_t)(len+3) >= buffer_size) {
|
2012-02-24 20:37:15 -04:00
|
|
|
// the suffix doesn't fit
|
2012-02-23 23:19:00 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
buffer[len] = '_';
|
|
|
|
if (idx == 0) {
|
|
|
|
buffer[len+1] = 'X';
|
|
|
|
} else if (idx == 1) {
|
|
|
|
buffer[len+1] = 'Y';
|
|
|
|
} else if (idx == 2) {
|
|
|
|
buffer[len+1] = 'Z';
|
|
|
|
}
|
|
|
|
buffer[len+2] = 0;
|
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// Copy the variable's whole name to the supplied buffer.
|
|
|
|
//
|
|
|
|
// If the variable is a group member, prepend the group name.
|
|
|
|
//
|
2012-02-23 23:19:00 -04:00
|
|
|
void AP_Param::copy_name(char *buffer, size_t buffer_size, bool force_scalar)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
|
|
|
uint8_t group_element;
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct GroupInfo *ginfo;
|
2012-02-23 23:19:00 -04:00
|
|
|
uint8_t idx;
|
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, &ginfo, &idx);
|
2012-02-11 07:51:35 -04:00
|
|
|
if (info == NULL) {
|
|
|
|
*buffer = 0;
|
|
|
|
serialDebug("no info found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
strncpy_P(buffer, info->name, buffer_size);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (ginfo != NULL) {
|
2012-02-11 07:51:35 -04:00
|
|
|
uint8_t len = strnlen(buffer, buffer_size);
|
|
|
|
if (len < buffer_size) {
|
2012-02-12 03:22:57 -04:00
|
|
|
strncpy_P(&buffer[len], ginfo->name, buffer_size-len);
|
|
|
|
}
|
2012-02-23 23:19:00 -04:00
|
|
|
if ((force_scalar || idx != 0) && AP_PARAM_VECTOR3F == PGM_UINT8(&ginfo->type)) {
|
|
|
|
// the caller wants a specific element in a Vector3f
|
|
|
|
add_vector3f_suffix(buffer, buffer_size, idx);
|
|
|
|
}
|
|
|
|
} else if ((force_scalar || idx != 0) && AP_PARAM_VECTOR3F == PGM_UINT8(&info->type)) {
|
2012-08-17 03:18:11 -03:00
|
|
|
add_vector3f_suffix(buffer, buffer_size, idx);
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find a variable by name in a group
|
|
|
|
AP_Param *
|
|
|
|
AP_Param::find_group(const char *name, uint8_t vindex, const struct GroupInfo *group_info, enum ap_var_type *ptype)
|
|
|
|
{
|
|
|
|
uint8_t type;
|
|
|
|
for (uint8_t i=0;
|
2012-02-12 05:18:10 -04:00
|
|
|
(type=PGM_UINT8(&group_info[i].type)) != AP_PARAM_NONE;
|
2012-02-12 03:22:57 -04:00
|
|
|
i++) {
|
2012-02-29 22:48:54 -04:00
|
|
|
#ifdef AP_NESTED_GROUPS_ENABLED
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *ginfo = (const struct GroupInfo *)PGM_POINTER(&group_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
AP_Param *ap = find_group(name, vindex, ginfo, ptype);
|
|
|
|
if (ap != NULL) {
|
|
|
|
return ap;
|
|
|
|
}
|
2012-02-29 22:48:54 -04:00
|
|
|
} else
|
|
|
|
#endif // AP_NESTED_GROUPS_ENABLED
|
|
|
|
if (strcasecmp_P(name, group_info[i].name) == 0) {
|
2012-02-12 05:18:10 -04:00
|
|
|
uintptr_t p = PGM_POINTER(&_var_info[vindex].ptr);
|
2012-02-12 03:22:57 -04:00
|
|
|
*ptype = (enum ap_var_type)type;
|
2012-02-12 05:18:10 -04:00
|
|
|
return (AP_Param *)(p + PGM_POINTER(&group_info[i].offset));
|
2012-02-23 23:19:00 -04:00
|
|
|
} else if (type == AP_PARAM_VECTOR3F) {
|
|
|
|
// special case for finding Vector3f elements
|
|
|
|
uint8_t suffix_len = strlen_P(group_info[i].name);
|
|
|
|
if (strncmp_P(name, group_info[i].name, suffix_len) == 0 &&
|
|
|
|
name[suffix_len] == '_' &&
|
|
|
|
name[suffix_len+1] != 0 &&
|
|
|
|
name[suffix_len+2] == 0) {
|
|
|
|
uintptr_t p = PGM_POINTER(&_var_info[vindex].ptr);
|
|
|
|
AP_Float *v = (AP_Float *)(p + PGM_POINTER(&group_info[i].offset));
|
|
|
|
*ptype = AP_PARAM_FLOAT;
|
|
|
|
switch (name[suffix_len+1]) {
|
|
|
|
case 'X':
|
|
|
|
return (AP_Float *)&v[0];
|
|
|
|
case 'Y':
|
|
|
|
return (AP_Float *)&v[1];
|
|
|
|
case 'Z':
|
|
|
|
return (AP_Float *)&v[2];
|
|
|
|
}
|
|
|
|
}
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
return NULL;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// Find a variable by name.
|
|
|
|
//
|
|
|
|
AP_Param *
|
2012-02-12 03:22:57 -04:00
|
|
|
AP_Param::find(const char *name, enum ap_var_type *ptype)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
2012-02-12 19:12:02 -04:00
|
|
|
for (uint8_t i=0; i<_num_vars; i++) {
|
2012-02-12 05:18:10 -04:00
|
|
|
uint8_t type = PGM_UINT8(&_var_info[i].type);
|
2012-02-11 07:51:35 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
uint8_t len = strnlen_P(_var_info[i].name, AP_MAX_NAME_SIZE);
|
|
|
|
if (strncmp_P(name, _var_info[i].name, len) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *group_info = (const struct GroupInfo *)PGM_POINTER(&_var_info[i].group_info);
|
2012-02-26 19:51:57 -04:00
|
|
|
AP_Param *ap = find_group(name + len, i, group_info, ptype);
|
|
|
|
if (ap != NULL) {
|
|
|
|
return ap;
|
|
|
|
}
|
|
|
|
// we continue looking as we want to allow top level
|
|
|
|
// parameter to have the same prefix name as group
|
|
|
|
// parameters, for example CAM_P_G
|
2012-02-11 07:51:35 -04:00
|
|
|
} else if (strcasecmp_P(name, _var_info[i].name) == 0) {
|
2012-02-12 03:22:57 -04:00
|
|
|
*ptype = (enum ap_var_type)type;
|
2012-02-12 05:18:10 -04:00
|
|
|
return (AP_Param *)PGM_POINTER(&_var_info[i].ptr);
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the variable to EEPROM, if supported
|
|
|
|
//
|
|
|
|
bool AP_Param::save(void)
|
|
|
|
{
|
2012-02-12 18:54:46 -04:00
|
|
|
uint8_t group_element = 0;
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct GroupInfo *ginfo;
|
2012-02-23 23:19:00 -04:00
|
|
|
uint8_t idx;
|
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, &ginfo, &idx);
|
|
|
|
const AP_Param *ap;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
|
|
|
if (info == NULL) {
|
|
|
|
// we don't have any info on how to store it
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Param_header phdr;
|
|
|
|
|
|
|
|
// create the header we will use to store the variable
|
2012-02-12 03:22:57 -04:00
|
|
|
if (ginfo != NULL) {
|
2012-02-12 05:18:10 -04:00
|
|
|
phdr.type = PGM_UINT8(&ginfo->type);
|
2012-02-12 03:22:57 -04:00
|
|
|
} else {
|
2012-02-12 05:18:10 -04:00
|
|
|
phdr.type = PGM_UINT8(&info->type);
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2012-02-12 18:54:46 -04:00
|
|
|
phdr.key = PGM_UINT8(&info->key);
|
|
|
|
phdr.group_element = group_element;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2012-02-23 23:19:00 -04:00
|
|
|
ap = this;
|
|
|
|
if (phdr.type != AP_PARAM_VECTOR3F && idx != 0) {
|
|
|
|
// only vector3f can have non-zero idx for now
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (idx != 0) {
|
|
|
|
ap = (const AP_Param *)((uintptr_t)ap) - (idx*sizeof(float));
|
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// scan EEPROM to find the right location
|
|
|
|
uint16_t ofs;
|
|
|
|
if (scan(&phdr, &ofs)) {
|
|
|
|
// found an existing copy of the variable
|
2012-02-23 23:19:00 -04:00
|
|
|
eeprom_write_check(ap, ofs+sizeof(phdr), type_size((enum ap_var_type)phdr.type));
|
2012-02-11 07:51:35 -04:00
|
|
|
return true;
|
|
|
|
}
|
2012-08-17 03:18:11 -03:00
|
|
|
if (ofs == (uint16_t) ~0) {
|
2012-02-11 07:51:35 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:00:43 -03:00
|
|
|
// if the value is the default value then don't save
|
2012-08-08 00:13:30 -03:00
|
|
|
if (phdr.type <= AP_PARAM_FLOAT) {
|
|
|
|
float v1 = cast_to_float((enum ap_var_type)phdr.type);
|
|
|
|
float v2;
|
|
|
|
if (ginfo != NULL) {
|
|
|
|
v2 = PGM_FLOAT(&ginfo->def_value);
|
|
|
|
} else {
|
|
|
|
v2 = PGM_FLOAT(&info->def_value);
|
|
|
|
}
|
|
|
|
if (v1 == v2) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (phdr.type != AP_PARAM_INT32 &&
|
|
|
|
(fabs(v1-v2) < 0.0001*fabs(v1))) {
|
|
|
|
// for other than 32 bit integers, we accept values within
|
|
|
|
// 0.01 percent of the current value as being the same
|
2012-08-17 03:18:11 -03:00
|
|
|
return true;
|
2012-08-08 00:13:30 -03:00
|
|
|
}
|
2012-08-06 22:00:43 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ofs+type_size((enum ap_var_type)phdr.type)+2*sizeof(phdr) >= _eeprom_size) {
|
|
|
|
// we are out of room for saving variables
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// write a new sentinal, then the data, then the header
|
|
|
|
write_sentinal(ofs + sizeof(phdr) + type_size((enum ap_var_type)phdr.type));
|
2012-02-23 23:19:00 -04:00
|
|
|
eeprom_write_check(ap, ofs+sizeof(phdr), type_size((enum ap_var_type)phdr.type));
|
2012-02-11 07:51:35 -04:00
|
|
|
eeprom_write_check(&phdr, ofs, sizeof(phdr));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the variable from EEPROM, if supported
|
|
|
|
//
|
|
|
|
bool AP_Param::load(void)
|
|
|
|
{
|
2012-02-12 18:54:46 -04:00
|
|
|
uint8_t group_element = 0;
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct GroupInfo *ginfo;
|
2012-02-23 23:19:00 -04:00
|
|
|
uint8_t idx;
|
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, &ginfo, &idx);
|
2012-02-11 07:51:35 -04:00
|
|
|
if (info == NULL) {
|
|
|
|
// we don't have any info on how to load it
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Param_header phdr;
|
|
|
|
|
|
|
|
// create the header we will use to match the variable
|
2012-02-12 03:22:57 -04:00
|
|
|
if (ginfo != NULL) {
|
2012-02-12 05:18:10 -04:00
|
|
|
phdr.type = PGM_UINT8(&ginfo->type);
|
2012-02-12 03:22:57 -04:00
|
|
|
} else {
|
2012-02-12 05:18:10 -04:00
|
|
|
phdr.type = PGM_UINT8(&info->type);
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2012-02-12 18:54:46 -04:00
|
|
|
phdr.key = PGM_UINT8(&info->key);
|
|
|
|
phdr.group_element = group_element;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
|
|
|
// scan EEPROM to find the right location
|
|
|
|
uint16_t ofs;
|
|
|
|
if (!scan(&phdr, &ofs)) {
|
2012-08-06 22:00:43 -03:00
|
|
|
// if the value isn't stored in EEPROM then set the default value
|
|
|
|
if (ginfo != NULL) {
|
|
|
|
uintptr_t base = PGM_POINTER(&info->ptr);
|
2012-08-17 03:18:11 -03:00
|
|
|
set_value((enum ap_var_type)phdr.type, (void*)(base + PGM_UINT16(&ginfo->offset)),
|
2012-08-06 22:00:43 -03:00
|
|
|
PGM_FLOAT(&ginfo->def_value));
|
|
|
|
} else {
|
|
|
|
set_value((enum ap_var_type)phdr.type, (void*)PGM_POINTER(&info->ptr), PGM_FLOAT(&info->def_value));
|
|
|
|
}
|
2012-02-11 07:51:35 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-27 18:42:34 -04:00
|
|
|
if (phdr.type != AP_PARAM_VECTOR3F && idx != 0) {
|
|
|
|
// only vector3f can have non-zero idx for now
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_Param *ap;
|
|
|
|
ap = this;
|
|
|
|
if (idx != 0) {
|
|
|
|
ap = (AP_Param *)((uintptr_t)ap) - (idx*sizeof(float));
|
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// found it
|
2012-02-27 18:42:34 -04:00
|
|
|
eeprom_read_block(ap, (void*)(ofs+sizeof(phdr)), type_size((enum ap_var_type)phdr.type));
|
2012-02-11 07:51:35 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-17 03:18:11 -03:00
|
|
|
// set a AP_Param variable to a specified value
|
2012-08-06 22:00:43 -03:00
|
|
|
void AP_Param::set_value(enum ap_var_type type, void *ptr, float def_value)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
((AP_Int8 *)ptr)->set(def_value);
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
((AP_Int16 *)ptr)->set(def_value);
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
((AP_Int32 *)ptr)->set(def_value);
|
|
|
|
break;
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
((AP_Float *)ptr)->set(def_value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// load default values for scalars in a group
|
|
|
|
void AP_Param::load_defaults_group(const struct GroupInfo *group_info, uintptr_t base)
|
|
|
|
{
|
|
|
|
uint8_t type;
|
|
|
|
for (uint8_t i=0;
|
|
|
|
(type=PGM_UINT8(&group_info[i].type)) != AP_PARAM_NONE;
|
|
|
|
i++) {
|
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
const struct GroupInfo *ginfo = (const struct GroupInfo *)PGM_POINTER(&group_info[i].group_info);
|
|
|
|
load_defaults_group(ginfo, base);
|
|
|
|
} else if (type <= AP_PARAM_FLOAT) {
|
|
|
|
void *ptr = (void *)(base + PGM_UINT16(&group_info[i].offset));
|
2012-08-17 03:18:11 -03:00
|
|
|
set_value((enum ap_var_type)type, ptr, PGM_FLOAT(&group_info[i].def_value));
|
2012-08-06 22:00:43 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// load default values for all scalars
|
|
|
|
void AP_Param::load_defaults(void)
|
|
|
|
{
|
|
|
|
for (uint8_t i=0; i<_num_vars; i++) {
|
|
|
|
uint8_t type = PGM_UINT8(&_var_info[i].type);
|
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
const struct GroupInfo *group_info = (const struct GroupInfo *)PGM_POINTER(&_var_info[i].group_info);
|
|
|
|
uintptr_t base = PGM_POINTER(&_var_info[i].ptr);
|
|
|
|
load_defaults_group(group_info, base);
|
|
|
|
} else if (type <= AP_PARAM_FLOAT) {
|
|
|
|
void *ptr = (void*)PGM_POINTER(&_var_info[i].ptr);
|
|
|
|
set_value((enum ap_var_type)type, ptr, PGM_FLOAT(&_var_info[i].def_value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// Load all variables from EEPROM
|
|
|
|
//
|
|
|
|
bool AP_Param::load_all(void)
|
|
|
|
{
|
|
|
|
struct Param_header phdr;
|
|
|
|
uint16_t ofs = sizeof(AP_Param::EEPROM_header);
|
2012-08-06 22:00:43 -03:00
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
while (ofs < _eeprom_size) {
|
2012-08-09 03:18:53 -03:00
|
|
|
eeprom_read_block(&phdr, (void *)(uintptr_t)ofs, sizeof(phdr));
|
2012-02-12 18:54:46 -04:00
|
|
|
// note that this is an || not an && for robustness
|
|
|
|
// against power off while adding a variable
|
|
|
|
if (phdr.type == _sentinal_type ||
|
|
|
|
phdr.key == _sentinal_key ||
|
|
|
|
phdr.group_element == _sentinal_group) {
|
2012-02-11 07:51:35 -04:00
|
|
|
// we've reached the sentinal
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct AP_Param::Info *info;
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
info = find_by_header(phdr, &ptr);
|
|
|
|
if (info != NULL) {
|
|
|
|
eeprom_read_block(ptr, (void*)(ofs+sizeof(phdr)), type_size((enum ap_var_type)phdr.type));
|
|
|
|
}
|
|
|
|
|
|
|
|
ofs += type_size((enum ap_var_type)phdr.type) + sizeof(phdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// we didn't find the sentinal
|
|
|
|
serialDebug("no sentinal in load_all");
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
// return the first variable in _var_info
|
2012-02-19 01:57:49 -04:00
|
|
|
AP_Param *AP_Param::first(ParamToken *token, enum ap_var_type *ptype)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
2012-02-19 01:57:49 -04:00
|
|
|
token->key = 0;
|
|
|
|
token->group_element = 0;
|
2012-02-23 23:19:00 -04:00
|
|
|
token->idx = 0;
|
2012-02-12 03:22:57 -04:00
|
|
|
if (_num_vars == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-12 04:18:24 -04:00
|
|
|
if (ptype != NULL) {
|
2012-02-12 05:18:10 -04:00
|
|
|
*ptype = (enum ap_var_type)PGM_UINT8(&_var_info[0].type);
|
2012-02-12 04:18:24 -04:00
|
|
|
}
|
2012-02-12 05:18:10 -04:00
|
|
|
return (AP_Param *)(PGM_POINTER(&_var_info[0].ptr));
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the next variable in a group, recursing into groups
|
|
|
|
/// as needed
|
|
|
|
AP_Param *AP_Param::next_group(uint8_t vindex, const struct GroupInfo *group_info,
|
|
|
|
bool *found_current,
|
|
|
|
uint8_t group_base,
|
|
|
|
uint8_t group_shift,
|
2012-02-19 01:57:49 -04:00
|
|
|
ParamToken *token,
|
2012-02-12 03:22:57 -04:00
|
|
|
enum ap_var_type *ptype)
|
|
|
|
{
|
2012-02-23 23:19:00 -04:00
|
|
|
enum ap_var_type type;
|
2012-02-12 03:22:57 -04:00
|
|
|
for (uint8_t i=0;
|
2012-02-23 23:19:00 -04:00
|
|
|
(type=(enum ap_var_type)PGM_UINT8(&group_info[i].type)) != AP_PARAM_NONE;
|
2012-02-12 03:22:57 -04:00
|
|
|
i++) {
|
2012-02-29 23:48:43 -04:00
|
|
|
#ifdef AP_NESTED_GROUPS_ENABLED
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
// a nested group
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *ginfo = (const struct GroupInfo *)PGM_POINTER(&group_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
AP_Param *ap;
|
2012-02-12 18:54:46 -04:00
|
|
|
ap = next_group(vindex, ginfo, found_current, GROUP_ID(group_info, group_base, i, group_shift),
|
2012-02-12 03:22:57 -04:00
|
|
|
group_shift + _group_level_shift, token, ptype);
|
|
|
|
if (ap != NULL) {
|
|
|
|
return ap;
|
|
|
|
}
|
2012-02-29 23:48:43 -04:00
|
|
|
} else
|
|
|
|
#endif // AP_NESTED_GROUPS_ENABLED
|
|
|
|
{
|
2012-02-12 03:22:57 -04:00
|
|
|
if (*found_current) {
|
|
|
|
// got a new one
|
2012-02-19 01:57:49 -04:00
|
|
|
token->key = vindex;
|
|
|
|
token->group_element = GROUP_ID(group_info, group_base, i, group_shift);
|
2012-02-23 23:19:00 -04:00
|
|
|
token->idx = 0;
|
2012-02-12 04:18:24 -04:00
|
|
|
if (ptype != NULL) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*ptype = type;
|
2012-02-12 04:18:24 -04:00
|
|
|
}
|
2012-02-12 05:18:10 -04:00
|
|
|
return (AP_Param*)(PGM_POINTER(&_var_info[vindex].ptr) + PGM_UINT16(&group_info[i].offset));
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2012-02-19 01:57:49 -04:00
|
|
|
if (GROUP_ID(group_info, group_base, i, group_shift) == token->group_element) {
|
2012-02-12 03:22:57 -04:00
|
|
|
*found_current = true;
|
2012-02-23 23:19:00 -04:00
|
|
|
if (type == AP_PARAM_VECTOR3F && token->idx < 3) {
|
|
|
|
// return the next element of the vector as a
|
|
|
|
// float
|
|
|
|
token->idx++;
|
|
|
|
if (ptype != NULL) {
|
|
|
|
*ptype = AP_PARAM_FLOAT;
|
|
|
|
}
|
|
|
|
uintptr_t ofs = (uintptr_t)PGM_POINTER(&_var_info[vindex].ptr) + PGM_UINT16(&group_info[i].offset);
|
|
|
|
ofs += sizeof(float)*(token->idx-1);
|
|
|
|
return (AP_Param *)ofs;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the next variable in _var_info, recursing into groups
|
|
|
|
/// as needed
|
2012-02-19 01:57:49 -04:00
|
|
|
AP_Param *AP_Param::next(ParamToken *token, enum ap_var_type *ptype)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
2012-02-19 01:57:49 -04:00
|
|
|
uint8_t i = token->key;
|
2012-02-12 03:22:57 -04:00
|
|
|
bool found_current = false;
|
|
|
|
if (i >= _num_vars) {
|
|
|
|
// illegal token
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-23 23:19:00 -04:00
|
|
|
enum ap_var_type type = (enum ap_var_type)PGM_UINT8(&_var_info[i].type);
|
|
|
|
|
|
|
|
// allow Vector3f to be seen as 3 variables. First as a vector,
|
|
|
|
// then as 3 separate floats
|
|
|
|
if (type == AP_PARAM_VECTOR3F && token->idx < 3) {
|
|
|
|
token->idx++;
|
|
|
|
if (ptype != NULL) {
|
|
|
|
*ptype = AP_PARAM_FLOAT;
|
|
|
|
}
|
|
|
|
return (AP_Param *)(((token->idx-1)*sizeof(float))+(uintptr_t)PGM_POINTER(&_var_info[i].ptr));
|
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type != AP_PARAM_GROUP) {
|
|
|
|
i++;
|
|
|
|
found_current = true;
|
|
|
|
}
|
|
|
|
for (; i<_num_vars; i++) {
|
2012-02-23 23:19:00 -04:00
|
|
|
type = (enum ap_var_type)PGM_UINT8(&_var_info[i].type);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2012-02-12 05:18:10 -04:00
|
|
|
const struct GroupInfo *group_info = (const struct GroupInfo *)PGM_POINTER(&_var_info[i].group_info);
|
2012-02-12 03:22:57 -04:00
|
|
|
AP_Param *ap = next_group(i, group_info, &found_current, 0, 0, token, ptype);
|
|
|
|
if (ap != NULL) {
|
|
|
|
return ap;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// found the next one
|
2012-02-19 01:57:49 -04:00
|
|
|
token->key = i;
|
|
|
|
token->group_element = 0;
|
2012-02-23 23:19:00 -04:00
|
|
|
token->idx = 0;
|
2012-02-12 04:18:24 -04:00
|
|
|
if (ptype != NULL) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*ptype = type;
|
2012-02-12 04:18:24 -04:00
|
|
|
}
|
2012-02-12 05:18:10 -04:00
|
|
|
return (AP_Param *)(PGM_POINTER(&_var_info[i].ptr));
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the next scalar in _var_info, recursing into groups
|
|
|
|
/// as needed
|
2012-02-19 01:57:49 -04:00
|
|
|
AP_Param *AP_Param::next_scalar(ParamToken *token, enum ap_var_type *ptype)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
|
|
|
AP_Param *ap;
|
2012-02-12 04:18:24 -04:00
|
|
|
enum ap_var_type type;
|
|
|
|
while ((ap = next(token, &type)) != NULL && type > AP_PARAM_FLOAT) ;
|
|
|
|
if (ap != NULL && ptype != NULL) {
|
|
|
|
*ptype = type;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
return ap;
|
|
|
|
}
|
2012-02-12 04:18:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
/// cast a variable to a float given its type
|
|
|
|
float AP_Param::cast_to_float(enum ap_var_type type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
return ((AP_Int8 *)this)->cast_to_float();
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
return ((AP_Int16 *)this)->cast_to_float();
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
return ((AP_Int32 *)this)->cast_to_float();
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
return ((AP_Float *)this)->cast_to_float();
|
|
|
|
default:
|
|
|
|
return NAN;
|
|
|
|
}
|
|
|
|
}
|
2012-02-12 19:16:55 -04:00
|
|
|
|
|
|
|
|
|
|
|
// print the value of all variables
|
|
|
|
void AP_Param::show_all(void)
|
|
|
|
{
|
2012-02-19 01:57:49 -04:00
|
|
|
ParamToken token;
|
2012-02-12 19:16:55 -04:00
|
|
|
AP_Param *ap;
|
|
|
|
enum ap_var_type type;
|
|
|
|
|
|
|
|
for (ap=AP_Param::first(&token, &type);
|
|
|
|
ap;
|
2012-02-23 23:19:00 -04:00
|
|
|
ap=AP_Param::next_scalar(&token, &type)) {
|
2012-02-12 19:16:55 -04:00
|
|
|
char s[AP_MAX_NAME_SIZE+1];
|
2012-02-23 23:19:00 -04:00
|
|
|
ap->copy_name(s, sizeof(s), true);
|
2012-02-12 19:16:55 -04:00
|
|
|
s[AP_MAX_NAME_SIZE] = 0;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
Serial.printf_P(PSTR("%s: %d\n"), s, (int)((AP_Int8 *)ap)->get());
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
Serial.printf_P(PSTR("%s: %d\n"), s, (int)((AP_Int16 *)ap)->get());
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
Serial.printf_P(PSTR("%s: %ld\n"), s, (long)((AP_Int32 *)ap)->get());
|
|
|
|
break;
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
Serial.printf_P(PSTR("%s: %f\n"), s, ((AP_Float *)ap)->get());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|