2013-08-29 02:34:34 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
//
|
|
|
|
//
|
|
|
|
|
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.
|
2015-12-23 13:25:02 -04:00
|
|
|
#include "AP_Param.h"
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2016-03-31 18:43:36 -03:00
|
|
|
#include <cmath>
|
2015-12-23 13:25:02 -04:00
|
|
|
#include <string.h>
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2015-08-11 03:28:45 -03:00
|
|
|
#include <AP_Common/AP_Common.h>
|
2015-10-26 09:01:52 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-08-11 03:28:45 -03:00
|
|
|
#include <AP_Math/AP_Math.h>
|
2015-12-23 13:25:02 -04:00
|
|
|
#include <GCS_MAVLink/GCS.h>
|
2015-08-16 14:53:24 -03:00
|
|
|
#include <StorageManager/StorageManager.h>
|
2018-12-05 20:59:44 -04:00
|
|
|
#include <AP_BoardConfig/AP_BoardConfig.h>
|
2021-01-12 19:10:27 -04:00
|
|
|
#include <AP_InternalError/AP_InternalError.h>
|
2022-02-21 20:08:24 -04:00
|
|
|
#include <AP_Filesystem/AP_Filesystem.h>
|
2016-06-30 01:16:13 -03:00
|
|
|
#include <stdio.h>
|
2024-01-17 22:35:43 -04:00
|
|
|
#include <AP_ROMFS/AP_ROMFS.h>
|
|
|
|
|
2020-08-23 03:25:40 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
|
|
|
#include <SITL/SITL.h>
|
|
|
|
#endif
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2024-01-14 20:34:05 -04:00
|
|
|
#include "AP_Param_config.h"
|
|
|
|
|
2012-09-18 15:08:38 -03:00
|
|
|
extern const AP_HAL::HAL &hal;
|
|
|
|
|
2019-08-27 00:30:51 -03:00
|
|
|
uint16_t AP_Param::sentinal_offset;
|
|
|
|
|
2019-11-25 12:21:31 -04:00
|
|
|
// singleton instance
|
|
|
|
AP_Param *AP_Param::_singleton;
|
|
|
|
|
2024-01-26 20:53:05 -04:00
|
|
|
#ifndef AP_PARAM_STORAGE_BAK_ENABLED
|
|
|
|
// we only have a storage region for backup storage if we have at
|
|
|
|
// least 32768 bytes or storage. We also don't enable when using flash
|
|
|
|
// storage as this can lead to loss of storage when updating to a
|
|
|
|
// larger storage size
|
|
|
|
#define AP_PARAM_STORAGE_BAK_ENABLED (HAL_STORAGE_SIZE>=32768) && !defined(STORAGE_FLASH_PAGE)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2021-09-15 05:24:22 -03:00
|
|
|
#define ENABLE_DEBUG 0
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2014-11-09 17:09:08 -04:00
|
|
|
#if ENABLE_DEBUG
|
2023-01-06 01:12:24 -04:00
|
|
|
# define FATAL(fmt, args ...) AP_HAL::panic(fmt, ## args);
|
2017-01-13 09:17:47 -04:00
|
|
|
# define Debug(fmt, args ...) do {::printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0)
|
2012-02-11 07:51:35 -04:00
|
|
|
#else
|
2023-01-06 01:12:24 -04:00
|
|
|
# define FATAL(fmt, args ...) AP_HAL::panic("Bad parameter table");
|
2014-11-09 17:09:08 -04:00
|
|
|
# define Debug(fmt, args ...)
|
2012-02-11 07:51:35 -04:00
|
|
|
#endif
|
|
|
|
|
2021-08-18 08:42:17 -03:00
|
|
|
#if HAL_GCS_ENABLED
|
2019-05-26 22:32:42 -03:00
|
|
|
#define GCS_SEND_PARAM(name, type, v) gcs().send_parameter_value(name, type, v)
|
2021-08-18 08:42:17 -03:00
|
|
|
#else
|
|
|
|
#define GCS_SEND_PARAM(name, type, v)
|
2019-05-26 22:32:42 -03:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
//
|
|
|
|
|
|
|
|
// number of rows in the _var_info[] table
|
2015-12-30 17:27:22 -04:00
|
|
|
uint16_t AP_Param::_num_vars;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2022-01-07 01:25:38 -04:00
|
|
|
#if AP_PARAM_DYNAMIC_ENABLED
|
|
|
|
uint16_t AP_Param::_num_vars_base;
|
|
|
|
AP_Param::Info *AP_Param::_var_info_dynamic;
|
|
|
|
static const char *_empty_string = "";
|
|
|
|
uint8_t AP_Param::_dynamic_table_sizes[AP_PARAM_MAX_DYNAMIC];
|
|
|
|
#endif
|
|
|
|
|
2016-01-05 23:41:07 -04:00
|
|
|
// cached parameter count
|
|
|
|
uint16_t AP_Param::_parameter_count;
|
2020-04-18 20:24:54 -03:00
|
|
|
uint16_t AP_Param::_count_marker;
|
|
|
|
uint16_t AP_Param::_count_marker_done;
|
|
|
|
HAL_Semaphore AP_Param::_count_sem;
|
2016-01-05 23:41:07 -04:00
|
|
|
|
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;
|
|
|
|
|
2023-08-19 18:32:34 -03:00
|
|
|
struct AP_Param::param_override *AP_Param::param_overrides;
|
|
|
|
uint16_t AP_Param::param_overrides_len;
|
|
|
|
uint16_t AP_Param::num_param_overrides;
|
|
|
|
uint16_t AP_Param::num_read_only;
|
2015-04-01 22:24:45 -03:00
|
|
|
|
2020-01-07 15:01:22 -04:00
|
|
|
ObjectBuffer_TS<AP_Param::param_save> AP_Param::save_queue{30};
|
2018-08-06 01:43:30 -03:00
|
|
|
bool AP_Param::registered_save_handler;
|
|
|
|
|
2024-02-01 21:24:00 -04:00
|
|
|
bool AP_Param::done_all_default_params;
|
|
|
|
|
2022-06-13 13:04:41 -03:00
|
|
|
AP_Param::defaults_list *AP_Param::default_list;
|
|
|
|
|
2018-08-06 01:43:30 -03:00
|
|
|
// we need a dummy object for the parameter save callback
|
|
|
|
static AP_Param save_dummy;
|
|
|
|
|
2019-05-26 22:32:42 -03:00
|
|
|
#if AP_PARAM_MAX_EMBEDDED_PARAM > 0
|
2017-11-09 02:45:58 -04:00
|
|
|
/*
|
|
|
|
this holds default parameters in the normal NAME=value form for a
|
|
|
|
parameter file. It can be manipulated by apj_tool.py to change the
|
|
|
|
defaults on a binary without recompiling
|
|
|
|
*/
|
|
|
|
const AP_Param::param_defaults_struct AP_Param::param_defaults_data = {
|
|
|
|
"PARMDEF",
|
|
|
|
{ 0x55, 0x37, 0xf4, 0xa0, 0x38, 0x5d, 0x48, 0x5b },
|
|
|
|
AP_PARAM_MAX_EMBEDDED_PARAM,
|
|
|
|
0
|
|
|
|
};
|
2019-05-26 22:32:42 -03:00
|
|
|
#endif
|
2017-11-09 02:45:58 -04:00
|
|
|
|
2014-08-13 01:43:19 -03:00
|
|
|
// storage object
|
|
|
|
StorageAccess AP_Param::_storage(StorageManager::StorageParam);
|
|
|
|
|
2024-01-26 20:53:05 -04:00
|
|
|
#if AP_PARAM_STORAGE_BAK_ENABLED
|
2021-01-12 19:10:27 -04:00
|
|
|
// backup storage object
|
|
|
|
StorageAccess AP_Param::_storage_bak(StorageManager::StorageParamBak);
|
2024-01-26 20:53:05 -04:00
|
|
|
#endif
|
2021-01-12 19:10:27 -04:00
|
|
|
|
2017-02-07 19:45:20 -04:00
|
|
|
// flags indicating frame type
|
|
|
|
uint16_t AP_Param::_frame_type_flags;
|
2014-08-13 01:43:19 -03:00
|
|
|
|
2013-06-04 01:02:49 -03:00
|
|
|
// write to EEPROM
|
2012-02-11 07:51:35 -04:00
|
|
|
void AP_Param::eeprom_write_check(const void *ptr, uint16_t ofs, uint8_t size)
|
|
|
|
{
|
2014-08-13 01:43:19 -03:00
|
|
|
_storage.write_block(ofs, ptr, size);
|
2024-01-26 20:53:05 -04:00
|
|
|
#if AP_PARAM_STORAGE_BAK_ENABLED
|
2021-01-12 19:10:27 -04:00
|
|
|
_storage_bak.write_block(ofs, ptr, size);
|
2024-01-26 20:53:05 -04:00
|
|
|
#endif
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
2016-10-25 18:32:10 -03:00
|
|
|
bool AP_Param::_hide_disabled_groups = true;
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// 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;
|
2015-12-30 17:27:22 -04:00
|
|
|
set_key(phdr, _sentinal_key);
|
2012-02-12 18:54:46 -04:00
|
|
|
phdr.group_element = _sentinal_group;
|
2012-02-11 07:51:35 -04:00
|
|
|
eeprom_write_check(&phdr, ofs, sizeof(phdr));
|
2019-08-27 00:30:51 -03:00
|
|
|
sentinal_offset = ofs;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// erase all EEPROM variables by re-writing the header and adding
|
|
|
|
// a sentinal
|
|
|
|
void AP_Param::erase_all(void)
|
|
|
|
{
|
|
|
|
struct EEPROM_header hdr;
|
|
|
|
|
|
|
|
// 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));
|
|
|
|
}
|
|
|
|
|
2016-02-15 03:37:40 -04:00
|
|
|
/* the 'group_id' of a element of a group is the 18 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 6 bits the 2nd
|
|
|
|
level gets the next 6 bits, and the 3rd level gets the last 6
|
|
|
|
bits. This limits groups to having at most 64 elements.
|
|
|
|
*/
|
2016-10-22 04:10:11 -03:00
|
|
|
uint32_t AP_Param::group_id(const struct GroupInfo *grpinfo, uint32_t base, uint8_t i, uint8_t shift)
|
2016-02-15 03:37:40 -04:00
|
|
|
{
|
2020-12-15 23:51:17 -04:00
|
|
|
if (grpinfo[i].idx == 0 && shift != 0 && !(grpinfo[i].flags & AP_PARAM_FLAG_NO_SHIFT)) {
|
2016-02-15 03:37:40 -04:00
|
|
|
/*
|
|
|
|
this is a special case for a bug in the original design. An
|
|
|
|
idx of 0 shifted by n bits is still zero, which makes it
|
|
|
|
indistinguishable from a different parameter. This can lead
|
|
|
|
to parameter loops. We use index 63 for that case.
|
|
|
|
*/
|
|
|
|
return base + (63U<<shift);
|
|
|
|
}
|
|
|
|
return base + (grpinfo[i].idx<<shift);
|
|
|
|
}
|
2017-02-07 19:45:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
check if a frame type should be included. A frame is included if
|
|
|
|
either there are no frame type flags on a parameter or if at least
|
|
|
|
one of the flags has been set by set_frame_type_flags()
|
|
|
|
*/
|
|
|
|
bool AP_Param::check_frame_type(uint16_t flags)
|
|
|
|
{
|
2022-01-07 01:25:38 -04:00
|
|
|
if (flags & AP_PARAM_FLAG_HIDDEN) {
|
|
|
|
// hidden on all frames
|
|
|
|
return false;
|
|
|
|
}
|
2017-02-07 19:45:20 -04:00
|
|
|
uint16_t frame_flags = flags >> AP_PARAM_FRAME_TYPE_SHIFT;
|
|
|
|
if (frame_flags == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return (frame_flags & _frame_type_flags) != 0;
|
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// validate a group info table
|
2023-01-06 01:12:24 -04:00
|
|
|
void AP_Param::check_group_info(const struct AP_Param::GroupInfo * group_info,
|
2012-08-17 03:18:11 -03:00
|
|
|
uint16_t * total_size,
|
2014-11-09 17:09:08 -04:00
|
|
|
uint8_t group_shift,
|
|
|
|
uint8_t prefix_length)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
|
|
|
uint8_t type;
|
2016-01-02 05:28:24 -04:00
|
|
|
uint64_t used_mask = 0;
|
2015-12-27 16:22:32 -04:00
|
|
|
for (uint8_t i=0;
|
|
|
|
(type=group_info[i].type) != AP_PARAM_NONE;
|
|
|
|
i++) {
|
2016-01-02 05:28:24 -04:00
|
|
|
uint8_t idx = group_info[i].idx;
|
|
|
|
if (idx >= (1<<_group_level_shift)) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("idx too large (%u) in %s", idx, group_info[i].name);
|
2016-01-02 05:28:24 -04:00
|
|
|
}
|
2016-02-15 03:37:40 -04:00
|
|
|
if (group_shift != 0 && idx == 0) {
|
2020-12-15 23:51:35 -04:00
|
|
|
// treat idx 0 as 63 for duplicates. See group_id()
|
2016-02-15 03:37:40 -04:00
|
|
|
idx = 63;
|
|
|
|
}
|
2017-07-15 03:46:43 -03:00
|
|
|
if (used_mask & (1ULL<<idx)) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("Duplicate group idx %u for %s", idx, group_info[i].name);
|
2017-07-15 03:46:43 -03:00
|
|
|
}
|
|
|
|
used_mask |= (1ULL<<idx);
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
// a nested group
|
|
|
|
if (group_shift + _group_level_shift >= _group_bits) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("double group nesting in %s", group_info[i].name);
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2017-02-27 02:39:12 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(group_info[i]);
|
|
|
|
if (ginfo == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-01-06 01:12:24 -04:00
|
|
|
check_group_info(ginfo, total_size, group_shift + _group_level_shift, prefix_length + strlen(group_info[i].name));
|
2012-02-12 03:22:57 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uint8_t size = type_size((enum ap_var_type)type);
|
|
|
|
if (size == 0) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("invalid type in %s", group_info[i].name);
|
2014-11-09 17:09:08 -04:00
|
|
|
}
|
2015-10-25 13:23:25 -03:00
|
|
|
if (prefix_length + strlen(group_info[i].name) > 16) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("suffix is too long in %s", group_info[i].name);
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
(*total_size) += size + sizeof(struct Param_header);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-02 00:45:18 -04:00
|
|
|
// check for duplicate key values
|
2015-12-30 17:27:22 -04:00
|
|
|
bool AP_Param::duplicate_key(uint16_t vindex, uint16_t key)
|
2012-03-02 00:45:18 -04:00
|
|
|
{
|
2015-12-30 17:27:22 -04:00
|
|
|
for (uint16_t i=vindex+1; i<_num_vars; i++) {
|
2022-01-07 01:25:38 -04:00
|
|
|
uint16_t key2 = var_info(i).key;
|
2012-03-02 00:45:18 -04:00
|
|
|
if (key2 == key) {
|
|
|
|
// no duplicate keys allowed
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-27 02:39:12 -04:00
|
|
|
/*
|
|
|
|
get group_info pointer for a group
|
|
|
|
*/
|
|
|
|
const struct AP_Param::GroupInfo *AP_Param::get_group_info(const struct GroupInfo &ginfo)
|
|
|
|
{
|
|
|
|
if (ginfo.flags & AP_PARAM_FLAG_INFO_POINTER) {
|
|
|
|
return *ginfo.group_info_ptr;
|
|
|
|
}
|
|
|
|
return ginfo.group_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
get group_info pointer for a group
|
|
|
|
*/
|
|
|
|
const struct AP_Param::GroupInfo *AP_Param::get_group_info(const struct Info &info)
|
|
|
|
{
|
|
|
|
if (info.flags & AP_PARAM_FLAG_INFO_POINTER) {
|
|
|
|
return *info.group_info_ptr;
|
|
|
|
}
|
|
|
|
return info.group_info;
|
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// validate the _var_info[] table
|
2023-01-06 01:12:24 -04:00
|
|
|
void AP_Param::check_var_info(void)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
|
|
|
uint16_t total_size = sizeof(struct EEPROM_header);
|
|
|
|
|
2015-12-30 17:27:22 -04:00
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
uint8_t type = info.type;
|
|
|
|
uint16_t key = info.key;
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
if (i == 0) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("first element can't be a group, for first() call");
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct GroupInfo *group_info = get_group_info(info);
|
2017-02-27 02:39:12 -04:00
|
|
|
if (group_info == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-01-06 01:12:24 -04:00
|
|
|
check_group_info(group_info, &total_size, 0, strlen(info.name));
|
2012-02-12 03:22:57 -04:00
|
|
|
} 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
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("AP_PARAM_NONE at top level");
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
total_size += size + sizeof(struct Param_header);
|
|
|
|
}
|
2012-03-02 00:45:18 -04:00
|
|
|
if (duplicate_key(i, key)) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("duplicate key");
|
2012-03-02 00:45:18 -04:00
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
if (type != AP_PARAM_GROUP && (info.flags & AP_PARAM_FLAG_POINTER)) {
|
2023-01-06 01:12:24 -04:00
|
|
|
FATAL("only groups can be pointers");
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// setup the _var_info[] table
|
2012-12-13 18:58:23 -04:00
|
|
|
bool AP_Param::setup(void)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
2021-01-12 19:10:27 -04:00
|
|
|
struct EEPROM_header hdr {};
|
2012-02-12 03:22:57 -04:00
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// check the header
|
2014-08-13 01:43:19 -03:00
|
|
|
_storage.read_block(&hdr, 0, sizeof(hdr));
|
2024-01-26 20:53:05 -04:00
|
|
|
|
|
|
|
#if AP_PARAM_STORAGE_BAK_ENABLED
|
|
|
|
struct EEPROM_header hdr2 {};
|
2021-01-12 19:10:27 -04:00
|
|
|
_storage_bak.read_block(&hdr2, 0, sizeof(hdr2));
|
2024-01-26 20:53:05 -04:00
|
|
|
#endif
|
|
|
|
|
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) {
|
2024-01-26 20:53:05 -04:00
|
|
|
#if AP_PARAM_STORAGE_BAK_ENABLED
|
2021-01-12 19:10:27 -04:00
|
|
|
if (hdr2.magic[0] == k_EEPROM_magic0 &&
|
|
|
|
hdr2.magic[1] == k_EEPROM_magic1 &&
|
|
|
|
hdr2.revision == k_EEPROM_revision &&
|
|
|
|
_storage.copy_area(_storage_bak)) {
|
|
|
|
// restored from backup
|
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::params_restored);
|
|
|
|
return true;
|
|
|
|
}
|
2024-01-26 20:53:05 -04:00
|
|
|
#endif // AP_PARAM_STORAGE_BAK_ENABLED
|
2012-02-11 07:51:35 -04:00
|
|
|
// header doesn't match. We can't recover any variables. Wipe
|
|
|
|
// the header and setup the sentinal directly after the header
|
2014-11-09 17:09:08 -04:00
|
|
|
Debug("bad header in setup - erasing");
|
2012-02-11 07:51:35 -04:00
|
|
|
erase_all();
|
|
|
|
}
|
|
|
|
|
2024-01-26 20:53:05 -04:00
|
|
|
#if AP_PARAM_STORAGE_BAK_ENABLED
|
2021-01-12 19:10:27 -04:00
|
|
|
// ensure that backup is in sync with primary
|
|
|
|
_storage_bak.copy_area(_storage);
|
2024-01-26 20:53:05 -04:00
|
|
|
#endif
|
2021-01-12 19:10:27 -04:00
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-02-17 00:12:48 -04:00
|
|
|
// check if AP_Param has been initialised
|
|
|
|
bool AP_Param::initialised(void)
|
|
|
|
{
|
2016-10-30 02:24:21 -03:00
|
|
|
return _var_info != nullptr;
|
2012-02-17 00:12:48 -04:00
|
|
|
}
|
|
|
|
|
2015-12-29 06:21:54 -04:00
|
|
|
/*
|
|
|
|
adjust offset of a group element for nested groups and group pointers
|
|
|
|
|
|
|
|
The new_offset variable is relative to the vindex base. This makes
|
|
|
|
dealing with pointer groups tricky
|
|
|
|
*/
|
2015-12-30 17:27:22 -04:00
|
|
|
bool AP_Param::adjust_group_offset(uint16_t vindex, const struct GroupInfo &group_info, ptrdiff_t &new_offset)
|
2015-12-29 06:21:54 -04:00
|
|
|
{
|
|
|
|
if (group_info.flags & AP_PARAM_FLAG_NESTED_OFFSET) {
|
|
|
|
new_offset += group_info.offset;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (group_info.flags & AP_PARAM_FLAG_POINTER) {
|
|
|
|
// group_info.offset refers to a pointer
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
// the object is not allocated yet
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void **p = (void **)(base + new_offset + group_info.offset);
|
2015-12-29 06:21:54 -04:00
|
|
|
if (*p == nullptr) {
|
|
|
|
// the object is not allocated yet
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// calculate offset that is needed to take base object and adjust for this object
|
2016-04-01 02:16:03 -03:00
|
|
|
new_offset = ((ptrdiff_t)*p) - base;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
get the base pointer for a variable, accounting for AP_PARAM_FLAG_POINTER
|
|
|
|
*/
|
|
|
|
bool AP_Param::get_base(const struct Info &info, ptrdiff_t &base)
|
|
|
|
{
|
|
|
|
if (info.flags & AP_PARAM_FLAG_POINTER) {
|
|
|
|
base = *(ptrdiff_t *)info.ptr;
|
|
|
|
return (base != (ptrdiff_t)0);
|
2015-12-29 06:21:54 -04:00
|
|
|
}
|
2016-04-01 02:16:03 -03:00
|
|
|
base = (ptrdiff_t)info.ptr;
|
2015-12-29 06:21:54 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-11-25 12:21:31 -04:00
|
|
|
namespace AP {
|
|
|
|
|
|
|
|
AP_Param *param()
|
|
|
|
{
|
|
|
|
return AP_Param::get_singleton();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-04-01 02:16:03 -03:00
|
|
|
|
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,
|
2015-12-30 17:27:22 -04:00
|
|
|
uint16_t vindex,
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct GroupInfo *group_info,
|
2016-10-22 04:10:11 -03:00
|
|
|
uint32_t group_base,
|
2015-12-27 16:22:32 -04:00
|
|
|
uint8_t group_shift,
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t group_offset)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
|
|
|
uint8_t type;
|
2015-12-27 16:22:32 -04:00
|
|
|
for (uint8_t i=0;
|
|
|
|
(type=group_info[i].type) != AP_PARAM_NONE;
|
|
|
|
i++) {
|
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() !
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2017-02-27 02:39:12 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(group_info[i]);
|
|
|
|
if (ginfo == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t new_offset = group_offset;
|
|
|
|
|
|
|
|
if (!adjust_group_offset(vindex, group_info[i], new_offset)) {
|
|
|
|
continue;
|
2015-12-27 16:22:32 -04:00
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct AP_Param::Info *ret = find_by_header_group(phdr, ptr, vindex, ginfo,
|
2016-02-15 03:37:40 -04:00
|
|
|
group_id(group_info, group_base, i, group_shift),
|
2015-12-27 16:22:32 -04:00
|
|
|
group_shift + _group_level_shift, new_offset);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ret != nullptr) {
|
2012-02-12 03:22:57 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-15 03:37:40 -04:00
|
|
|
if (group_id(group_info, group_base, i, group_shift) == phdr.group_element && type == phdr.type) {
|
2012-02-12 03:22:57 -04:00
|
|
|
// found a group element
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*ptr = (void*)(base + group_info[i].offset + group_offset);
|
2022-01-07 01:25:38 -04:00
|
|
|
return &var_info(vindex);
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
|
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
|
2015-12-30 17:27:22 -04:00
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
uint8_t type = info.type;
|
|
|
|
uint16_t key = info.key;
|
2015-12-30 17:27:22 -04:00
|
|
|
if (key != get_key(phdr)) {
|
2012-02-11 07:51:35 -04:00
|
|
|
// not the right key
|
|
|
|
continue;
|
|
|
|
}
|
2015-05-27 02:29:40 -03:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct GroupInfo *group_info = get_group_info(info);
|
2017-02-27 02:39:12 -04:00
|
|
|
if (group_info == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-12-27 16:22:32 -04:00
|
|
|
return find_by_header_group(phdr, ptr, i, group_info, 0, 0, 0);
|
2015-05-27 02:29:40 -03:00
|
|
|
}
|
|
|
|
if (type == phdr.type) {
|
|
|
|
// found it
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 20:40:59 -04:00
|
|
|
if (!get_base(info, base)) {
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
|
|
|
*ptr = (void*)base;
|
2022-01-07 20:40:59 -04:00
|
|
|
return &info;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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,
|
2015-12-30 17:27:22 -04:00
|
|
|
uint16_t vindex,
|
2016-02-15 03:37:40 -04:00
|
|
|
uint32_t group_base,
|
2012-08-17 03:18:11 -03:00
|
|
|
uint8_t group_shift,
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t group_offset,
|
2012-11-05 07:08:43 -04:00
|
|
|
uint32_t * group_element,
|
2015-12-27 16:22:32 -04:00
|
|
|
const struct GroupInfo * &group_ret,
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting &group_nesting,
|
2013-04-19 04:46:40 -03:00
|
|
|
uint8_t * idx) const
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
uint8_t type;
|
2015-12-27 16:22:32 -04:00
|
|
|
for (uint8_t i=0;
|
|
|
|
(type=group_info[i].type) != AP_PARAM_NONE;
|
|
|
|
i++) {
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t ofs = group_info[i].offset + group_offset;
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2017-02-27 02:39:12 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(group_info[i]);
|
|
|
|
if (ginfo == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
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() !
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
const struct AP_Param::Info *info;
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t new_offset = group_offset;
|
|
|
|
if (!adjust_group_offset(vindex, group_info[i], new_offset)) {
|
|
|
|
continue;
|
2015-12-27 16:22:32 -04:00
|
|
|
}
|
2016-02-15 03:37:40 -04:00
|
|
|
if (group_nesting.level >= group_nesting.numlevels) {
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2016-02-15 03:37:40 -04:00
|
|
|
}
|
|
|
|
group_nesting.group_ret[group_nesting.level++] = &group_info[i];
|
2012-02-12 03:22:57 -04:00
|
|
|
info = find_var_info_group(ginfo, vindex,
|
2016-02-15 03:37:40 -04:00
|
|
|
group_id(group_info, group_base, i, group_shift),
|
2012-02-12 03:22:57 -04:00
|
|
|
group_shift + _group_level_shift,
|
2015-12-27 16:22:32 -04:00
|
|
|
new_offset,
|
2012-02-12 03:22:57 -04:00
|
|
|
group_element,
|
2012-02-23 23:19:00 -04:00
|
|
|
group_ret,
|
2016-02-15 03:37:40 -04:00
|
|
|
group_nesting,
|
2012-02-23 23:19:00 -04:00
|
|
|
idx);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info != nullptr) {
|
2012-02-12 03:22:57 -04:00
|
|
|
return info;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
2016-02-15 03:37:40 -04:00
|
|
|
group_nesting.level--;
|
2015-12-29 06:21:54 -04:00
|
|
|
} else if ((ptrdiff_t) this == base + ofs) {
|
2016-02-15 03:37:40 -04:00
|
|
|
*group_element = group_id(group_info, group_base, i, group_shift);
|
2015-12-27 16:22:32 -04:00
|
|
|
group_ret = &group_info[i];
|
2012-02-23 23:19:00 -04:00
|
|
|
*idx = 0;
|
2022-01-07 01:25:38 -04:00
|
|
|
return &var_info(vindex);
|
2012-02-23 23:19:00 -04:00
|
|
|
} else if (type == AP_PARAM_VECTOR3F &&
|
2015-12-29 06:21:54 -04:00
|
|
|
(base+ofs+(ptrdiff_t)sizeof(float) == (ptrdiff_t) this ||
|
|
|
|
base+ofs+2*(ptrdiff_t)sizeof(float) == (ptrdiff_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.
|
2015-12-29 06:21:54 -04:00
|
|
|
*idx = (((ptrdiff_t) this) - (base+ofs))/sizeof(float);
|
2016-02-15 03:37:40 -04:00
|
|
|
*group_element = group_id(group_info, group_base, i, group_shift);
|
2015-12-27 16:22:32 -04:00
|
|
|
group_ret = &group_info[i];
|
2022-01-07 01:25:38 -04:00
|
|
|
return &var_info(vindex);
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// find the info structure for a variable
|
2012-11-05 07:08:43 -04:00
|
|
|
const struct AP_Param::Info *AP_Param::find_var_info(uint32_t * group_element,
|
2015-12-27 16:22:32 -04:00
|
|
|
const struct GroupInfo * &group_ret,
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting &group_nesting,
|
2015-10-06 19:08:59 -03:00
|
|
|
uint8_t * idx) const
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
2016-10-30 02:24:21 -03:00
|
|
|
group_ret = nullptr;
|
2015-12-27 16:22:32 -04:00
|
|
|
|
2015-12-30 17:27:22 -04:00
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
uint8_t type = info.type;
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 20:40:59 -04:00
|
|
|
if (!get_base(info, base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
2012-02-11 07:51:35 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct GroupInfo *group_info = get_group_info(info);
|
2017-02-27 02:39:12 -04:00
|
|
|
if (group_info == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct AP_Param::Info *info2;
|
|
|
|
info2 = find_var_info_group(group_info, i, 0, 0, 0, group_element, group_ret, group_nesting, idx);
|
|
|
|
if (info2 != nullptr) {
|
|
|
|
return info2;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
} else if (base == (ptrdiff_t) this) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*group_element = 0;
|
|
|
|
*idx = 0;
|
2022-01-07 20:40:59 -04:00
|
|
|
return &info;
|
2012-02-23 23:19:00 -04:00
|
|
|
} else if (type == AP_PARAM_VECTOR3F &&
|
2015-12-29 06:21:54 -04:00
|
|
|
(base+(ptrdiff_t)sizeof(float) == (ptrdiff_t) this ||
|
|
|
|
base+2*(ptrdiff_t)sizeof(float) == (ptrdiff_t) this)) {
|
2012-02-24 20:37:15 -04:00
|
|
|
// we are inside a Vector3f. Work out which element we are
|
|
|
|
// referring to.
|
2015-12-29 06:21:54 -04:00
|
|
|
*idx = (((ptrdiff_t) this) - base)/sizeof(float);
|
2012-02-11 07:51:35 -04:00
|
|
|
*group_element = 0;
|
2022-01-07 20:40:59 -04:00
|
|
|
return &info;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
2013-01-08 00:28:16 -04:00
|
|
|
|
|
|
|
// find the info structure for a variable
|
2013-04-19 04:46:40 -03:00
|
|
|
const struct AP_Param::Info *AP_Param::find_var_info_token(const ParamToken &token,
|
2013-01-08 00:28:16 -04:00
|
|
|
uint32_t * group_element,
|
2015-12-27 16:22:32 -04:00
|
|
|
const struct GroupInfo * &group_ret,
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting &group_nesting,
|
2013-04-19 04:46:40 -03:00
|
|
|
uint8_t * idx) const
|
2013-01-08 00:28:16 -04:00
|
|
|
{
|
2015-12-30 17:27:22 -04:00
|
|
|
uint16_t i = token.key;
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
uint8_t type = info.type;
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 20:40:59 -04:00
|
|
|
if (!get_base(info, base)) {
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
group_ret = nullptr;
|
2015-12-27 16:22:32 -04:00
|
|
|
|
2013-01-08 00:28:16 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct GroupInfo *group_info = get_group_info(info);
|
2017-02-27 02:39:12 -04:00
|
|
|
if (group_info == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct AP_Param::Info *info2;
|
|
|
|
info2 = find_var_info_group(group_info, i, 0, 0, 0, group_element, group_ret, group_nesting, idx);
|
|
|
|
if (info2 != nullptr) {
|
|
|
|
return info2;
|
2013-01-08 00:28:16 -04:00
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
} else if (base == (ptrdiff_t) this) {
|
2013-01-08 00:28:16 -04:00
|
|
|
*group_element = 0;
|
|
|
|
*idx = 0;
|
2022-01-07 20:40:59 -04:00
|
|
|
return &info;
|
2013-01-08 00:28:16 -04:00
|
|
|
} else if (type == AP_PARAM_VECTOR3F &&
|
2015-12-29 06:21:54 -04:00
|
|
|
(base+(ptrdiff_t)sizeof(float) == (ptrdiff_t) this ||
|
|
|
|
base+2*(ptrdiff_t)sizeof(float) == (ptrdiff_t) this)) {
|
2013-01-08 00:28:16 -04:00
|
|
|
// we are inside a Vector3f. Work out which element we are
|
|
|
|
// referring to.
|
2015-12-29 06:21:54 -04:00
|
|
|
*idx = (((ptrdiff_t) this) - base)/sizeof(float);
|
2013-01-08 00:28:16 -04:00
|
|
|
*group_element = 0;
|
2022-01-07 20:40:59 -04:00
|
|
|
return &info;
|
2013-01-08 00:28:16 -04:00
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2013-01-08 00:28:16 -04:00
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// return the storage size for a AP_PARAM_* type
|
2013-01-01 21:51:25 -04:00
|
|
|
uint8_t AP_Param::type_size(enum ap_var_type type)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2019-01-01 16:48:57 -04:00
|
|
|
Debug("unknown type %d\n", type);
|
2012-02-11 07:51:35 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-30 17:27:22 -04:00
|
|
|
/*
|
|
|
|
extract 9 bit key from Param_header
|
|
|
|
*/
|
|
|
|
uint16_t AP_Param::get_key(const Param_header &phdr)
|
|
|
|
{
|
|
|
|
return ((uint16_t)phdr.key_high)<<8 | phdr.key_low;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
set 9 bit key in Param_header
|
|
|
|
*/
|
|
|
|
void AP_Param::set_key(Param_header &phdr, uint16_t key)
|
|
|
|
{
|
|
|
|
phdr.key_low = key & 0xFF;
|
|
|
|
phdr.key_high = key >> 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
return true if a header is the end of eeprom sentinal
|
|
|
|
*/
|
|
|
|
bool AP_Param::is_sentinal(const Param_header &phdr)
|
|
|
|
{
|
2021-04-19 23:08:22 -03:00
|
|
|
// note that this is an ||, not an && on the key and group, as
|
|
|
|
// this makes us more robust to power off while adding a variable
|
|
|
|
// to EEPROM
|
2015-12-30 17:27:22 -04:00
|
|
|
if (phdr.type == _sentinal_type ||
|
2021-04-19 23:08:22 -03:00
|
|
|
get_key(phdr) == _sentinal_key) {
|
2015-12-30 17:27:22 -04:00
|
|
|
return true;
|
|
|
|
}
|
2017-08-17 04:23:36 -03:00
|
|
|
// also check for 0xFFFFFFFF and 0x00000000, which are the fill
|
|
|
|
// values for storage. These can appear if power off occurs while
|
|
|
|
// writing data
|
|
|
|
uint32_t v = *(uint32_t *)&phdr;
|
|
|
|
if (v == 0 || v == 0xFFFFFFFF) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-12-30 17:27:22 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// 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
|
2013-05-24 11:30:22 -03:00
|
|
|
// if not found return the offset of the sentinal
|
2013-07-09 04:53:04 -03:00
|
|
|
// if the sentinal isn't found either, the offset is set to 0xFFFF
|
2012-02-11 07:51:35 -04:00
|
|
|
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);
|
2014-08-13 01:43:19 -03:00
|
|
|
while (ofs < _storage.size()) {
|
|
|
|
_storage.read_block(&phdr, ofs, sizeof(phdr));
|
2012-02-11 07:51:35 -04:00
|
|
|
if (phdr.type == target->type &&
|
2015-12-30 17:27:22 -04:00
|
|
|
get_key(phdr) == get_key(*target) &&
|
2012-02-11 07:51:35 -04:00
|
|
|
phdr.group_element == target->group_element) {
|
|
|
|
// found it
|
|
|
|
*pofs = ofs;
|
|
|
|
return true;
|
|
|
|
}
|
2015-12-30 17:27:22 -04:00
|
|
|
if (is_sentinal(phdr)) {
|
2012-02-11 07:51:35 -04:00
|
|
|
// we've reached the sentinal
|
|
|
|
*pofs = ofs;
|
2019-08-27 00:30:51 -03:00
|
|
|
sentinal_offset = ofs;
|
2012-02-11 07:51:35 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ofs += type_size((enum ap_var_type)phdr.type) + sizeof(phdr);
|
|
|
|
}
|
2013-07-09 04:53:04 -03:00
|
|
|
*pofs = 0xffff;
|
2014-11-09 17:09:08 -04:00
|
|
|
Debug("scan past end of eeprom");
|
2012-02-11 07:51:35 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-24 11:30:22 -03:00
|
|
|
/**
|
|
|
|
* add a _X, _Y, _Z suffix to the name of a Vector3f element
|
|
|
|
* @param buffer
|
|
|
|
* @param buffer_size
|
|
|
|
* @param idx Suffix: 0 --> _X; 1 --> _Y; 2 --> _Z; (other --> undefined)
|
|
|
|
*/
|
2013-04-19 04:46:40 -03:00
|
|
|
void AP_Param::add_vector3f_suffix(char *buffer, size_t buffer_size, uint8_t idx) const
|
2012-02-23 23:19:00 -04:00
|
|
|
{
|
2013-05-24 11:30:22 -03:00
|
|
|
const size_t len = strnlen(buffer, buffer_size);
|
|
|
|
if (len + 2 <= buffer_size) {
|
|
|
|
buffer[len] = '_';
|
|
|
|
buffer[len + 1] = static_cast<char>('X' + idx);
|
|
|
|
if (len + 3 <= buffer_size) {
|
|
|
|
buffer[len + 2] = 0;
|
|
|
|
}
|
2012-11-20 07:27:11 -04:00
|
|
|
}
|
2012-02-23 23:19:00 -04:00
|
|
|
}
|
|
|
|
|
2013-01-08 00:28:16 -04:00
|
|
|
// Copy the variable's whole name to the supplied buffer.
|
|
|
|
//
|
|
|
|
// If the variable is a group member, prepend the group name.
|
|
|
|
//
|
2013-04-19 04:46:40 -03:00
|
|
|
void AP_Param::copy_name_token(const ParamToken &token, char *buffer, size_t buffer_size, bool force_scalar) const
|
2013-01-08 00:28:16 -04:00
|
|
|
{
|
|
|
|
uint32_t group_element;
|
|
|
|
const struct GroupInfo *ginfo;
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting group_nesting {};
|
2013-01-08 00:28:16 -04:00
|
|
|
uint8_t idx;
|
2016-02-15 03:37:40 -04:00
|
|
|
const struct AP_Param::Info *info = find_var_info_token(token, &group_element, ginfo, group_nesting, &idx);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info == nullptr) {
|
2013-01-08 00:28:16 -04:00
|
|
|
*buffer = 0;
|
2014-11-09 17:09:08 -04:00
|
|
|
Debug("no info found");
|
2013-01-08 00:28:16 -04:00
|
|
|
return;
|
|
|
|
}
|
2016-02-15 03:37:40 -04:00
|
|
|
copy_name_info(info, ginfo, group_nesting, idx, buffer, buffer_size, force_scalar);
|
2015-10-06 19:08:59 -03:00
|
|
|
}
|
|
|
|
|
2015-12-27 16:22:32 -04:00
|
|
|
void AP_Param::copy_name_info(const struct AP_Param::Info *info,
|
|
|
|
const struct GroupInfo *ginfo,
|
2016-02-15 03:37:40 -04:00
|
|
|
const struct GroupNesting &group_nesting,
|
2015-12-27 16:22:32 -04:00
|
|
|
uint8_t idx, char *buffer, size_t buffer_size, bool force_scalar) const
|
2015-10-06 19:08:59 -03:00
|
|
|
{
|
2015-10-25 13:23:25 -03:00
|
|
|
strncpy(buffer, info->name, buffer_size);
|
2016-02-15 03:37:40 -04:00
|
|
|
for (uint8_t i=0; i<group_nesting.level; i++) {
|
2015-12-27 16:22:32 -04:00
|
|
|
uint8_t len = strnlen(buffer, buffer_size);
|
|
|
|
if (len < buffer_size) {
|
2016-02-15 03:37:40 -04:00
|
|
|
strncpy(&buffer[len], group_nesting.group_ret[i]->name, buffer_size-len);
|
2015-12-27 16:22:32 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ginfo != nullptr) {
|
2013-01-08 00:28:16 -04:00
|
|
|
uint8_t len = strnlen(buffer, buffer_size);
|
|
|
|
if (len < buffer_size) {
|
2015-10-25 13:23:25 -03:00
|
|
|
strncpy(&buffer[len], ginfo->name, buffer_size-len);
|
2013-01-08 00:28:16 -04:00
|
|
|
}
|
2015-12-23 13:25:02 -04:00
|
|
|
if ((force_scalar || idx != 0) && AP_PARAM_VECTOR3F == ginfo->type) {
|
2013-01-08 00:28:16 -04:00
|
|
|
// the caller wants a specific element in a Vector3f
|
|
|
|
add_vector3f_suffix(buffer, buffer_size, idx);
|
2012-02-23 23:19:00 -04:00
|
|
|
}
|
2015-12-23 13:25:02 -04:00
|
|
|
} else if ((force_scalar || idx != 0) && AP_PARAM_VECTOR3F == 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 *
|
2015-12-30 17:27:22 -04:00
|
|
|
AP_Param::find_group(const char *name, uint16_t vindex, ptrdiff_t group_offset,
|
2015-12-29 06:21:54 -04:00
|
|
|
const struct GroupInfo *group_info, enum ap_var_type *ptype)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
|
|
|
uint8_t type;
|
2015-12-27 16:22:32 -04:00
|
|
|
for (uint8_t i=0;
|
|
|
|
(type=group_info[i].type) != AP_PARAM_NONE;
|
|
|
|
i++) {
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2015-12-27 16:22:32 -04:00
|
|
|
if (strncasecmp(name, group_info[i].name, strlen(group_info[i].name)) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-02-27 02:39:12 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(group_info[i]);
|
|
|
|
if (ginfo == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t new_offset = group_offset;
|
|
|
|
|
|
|
|
if (!adjust_group_offset(vindex, group_info[i], new_offset)) {
|
|
|
|
continue;
|
2015-12-27 16:22:32 -04:00
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
|
2015-12-27 16:22:32 -04:00
|
|
|
AP_Param *ap = find_group(name+strlen(group_info[i].name), vindex, new_offset, ginfo, ptype);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ap != nullptr) {
|
2012-02-12 03:22:57 -04:00
|
|
|
return ap;
|
|
|
|
}
|
2015-12-27 16:22:32 -04:00
|
|
|
} else if (strcasecmp(name, group_info[i].name) == 0) {
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
*ptype = (enum ap_var_type)type;
|
2016-04-01 02:16:03 -03:00
|
|
|
return (AP_Param *)(base + group_info[i].offset + group_offset);
|
2012-02-23 23:19:00 -04:00
|
|
|
} else if (type == AP_PARAM_VECTOR3F) {
|
|
|
|
// special case for finding Vector3f elements
|
2015-10-25 13:23:25 -03:00
|
|
|
uint8_t suffix_len = strnlen(group_info[i].name, AP_MAX_NAME_SIZE);
|
2015-10-25 13:23:25 -03:00
|
|
|
if (strncmp(name, group_info[i].name, suffix_len) == 0 &&
|
2012-02-23 23:19:00 -04:00
|
|
|
name[suffix_len] == '_' &&
|
2012-11-20 07:27:11 -04:00
|
|
|
(name[suffix_len+1] == 'X' ||
|
|
|
|
name[suffix_len+1] == 'Y' ||
|
|
|
|
name[suffix_len+1] == 'Z')) {
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
AP_Float *v = (AP_Float *)(base + group_info[i].offset + group_offset);
|
2012-02-23 23:19:00 -04:00
|
|
|
*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
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
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 *
|
2019-06-11 01:50:33 -03:00
|
|
|
AP_Param::find(const char *name, enum ap_var_type *ptype, uint16_t *flags)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
2015-12-30 17:27:22 -04:00
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
uint8_t type = info.type;
|
2012-02-11 07:51:35 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2022-01-07 20:40:59 -04:00
|
|
|
uint8_t len = strnlen(info.name, AP_MAX_NAME_SIZE);
|
|
|
|
if (strncmp(name, info.name, len) != 0) {
|
2012-02-11 07:51:35 -04:00
|
|
|
continue;
|
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct GroupInfo *group_info = get_group_info(info);
|
2017-02-27 02:39:12 -04:00
|
|
|
if (group_info == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-12-27 16:22:32 -04:00
|
|
|
AP_Param *ap = find_group(name + len, i, 0, group_info, ptype);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ap != nullptr) {
|
2019-06-11 01:50:33 -03:00
|
|
|
if (flags != nullptr) {
|
2019-08-27 22:34:04 -03:00
|
|
|
uint32_t group_element = 0;
|
|
|
|
const struct GroupInfo *ginfo;
|
|
|
|
struct GroupNesting group_nesting {};
|
|
|
|
uint8_t idx;
|
|
|
|
ap->find_var_info(&group_element, ginfo, group_nesting, &idx);
|
|
|
|
if (ginfo != nullptr) {
|
|
|
|
*flags = ginfo->flags;
|
|
|
|
}
|
2019-06-11 01:50:33 -03:00
|
|
|
}
|
2012-02-26 19:51:57 -04:00
|
|
|
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
|
2022-01-07 20:40:59 -04:00
|
|
|
} else if (strcasecmp(name, info.name) == 0) {
|
2012-02-12 03:22:57 -04:00
|
|
|
*ptype = (enum ap_var_type)type;
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 20:40:59 -04:00
|
|
|
if (!get_base(info, base)) {
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
|
|
|
return (AP_Param *)base;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
2012-09-19 18:42:35 -03:00
|
|
|
// Find a variable by index. Note that this is quite slow.
|
|
|
|
//
|
|
|
|
AP_Param *
|
2013-01-08 18:45:02 -04:00
|
|
|
AP_Param::find_by_index(uint16_t idx, enum ap_var_type *ptype, ParamToken *token)
|
2012-09-19 18:42:35 -03:00
|
|
|
{
|
|
|
|
AP_Param *ap;
|
|
|
|
uint16_t count=0;
|
2013-01-08 18:45:02 -04:00
|
|
|
for (ap=AP_Param::first(token, ptype);
|
2012-09-19 18:42:35 -03:00
|
|
|
ap && count < idx;
|
2013-01-08 18:45:02 -04:00
|
|
|
ap=AP_Param::next_scalar(token, ptype)) {
|
2012-09-19 18:42:35 -03:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
return ap;
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:04:03 -03:00
|
|
|
// by-name equivalent of find_by_index()
|
|
|
|
AP_Param* AP_Param::find_by_name(const char* name, enum ap_var_type *ptype, ParamToken *token)
|
|
|
|
{
|
|
|
|
AP_Param *ap;
|
|
|
|
for (ap = AP_Param::first(token, ptype);
|
|
|
|
ap && *ptype != AP_PARAM_GROUP && *ptype != AP_PARAM_NONE;
|
|
|
|
ap = AP_Param::next_scalar(token, ptype)) {
|
2022-01-07 01:25:38 -04:00
|
|
|
int32_t ret = strncasecmp(name, var_info(token->key).name, AP_MAX_NAME_SIZE);
|
2020-05-10 11:04:03 -03:00
|
|
|
if (ret >= 0) {
|
|
|
|
char buf[AP_MAX_NAME_SIZE];
|
|
|
|
ap->copy_name_token(*token, buf, AP_MAX_NAME_SIZE);
|
|
|
|
if (strncasecmp(name, buf, AP_MAX_NAME_SIZE) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ap;
|
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
|
|
|
|
/*
|
2016-04-01 02:16:03 -03:00
|
|
|
Find a variable by pointer, returning key. This is used for loading pointer variables
|
2015-12-29 06:21:54 -04:00
|
|
|
*/
|
2016-04-01 02:16:03 -03:00
|
|
|
bool AP_Param::find_key_by_pointer_group(const void *ptr, uint16_t vindex,
|
|
|
|
const struct GroupInfo *group_info,
|
|
|
|
ptrdiff_t offset, uint16_t &key)
|
2015-12-29 06:21:54 -04:00
|
|
|
{
|
2016-04-01 02:16:03 -03:00
|
|
|
for (uint8_t i=0; group_info[i].type != AP_PARAM_NONE; i++) {
|
|
|
|
if (group_info[i].type != AP_PARAM_GROUP) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (group_info[i].flags & AP_PARAM_FLAG_POINTER) {
|
|
|
|
if (ptr == *(void **)(base+group_info[i].offset+offset)) {
|
2022-01-07 01:25:38 -04:00
|
|
|
key = var_info(vindex).key;
|
2016-04-01 02:16:03 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (ptr == (void *)(base+group_info[i].offset+offset)) {
|
2022-01-07 01:25:38 -04:00
|
|
|
key = var_info(vindex).key;
|
2016-04-01 02:16:03 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
ptrdiff_t new_offset = offset;
|
|
|
|
if (!adjust_group_offset(vindex, group_info[i], new_offset)) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-02-27 02:39:12 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(group_info[i]);
|
|
|
|
if (ginfo == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (find_key_by_pointer_group(ptr, vindex, ginfo, new_offset, key)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Find a variable by pointer, returning key. This is used for loading pointer variables
|
|
|
|
*/
|
|
|
|
bool AP_Param::find_key_by_pointer(const void *ptr, uint16_t &key)
|
|
|
|
{
|
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
if (info.type != AP_PARAM_GROUP) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
if ((info.flags & AP_PARAM_FLAG_POINTER) &&
|
|
|
|
ptr == *(void **)info.ptr) {
|
|
|
|
key = info.key;
|
2016-04-01 02:16:03 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
ptrdiff_t offset = 0;
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(info);
|
2017-02-27 02:39:12 -04:00
|
|
|
if (ginfo == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (find_key_by_pointer_group(ptr, i, ginfo, offset, key)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
return true;
|
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
}
|
2016-04-01 02:16:03 -03:00
|
|
|
return false;
|
2015-12-29 06:21:54 -04:00
|
|
|
}
|
|
|
|
|
2019-12-24 03:21:37 -04:00
|
|
|
/*
|
|
|
|
Find key to top level group parameters by pointer
|
|
|
|
*/
|
|
|
|
bool AP_Param::find_top_level_key_by_pointer(const void *ptr, uint16_t &key)
|
|
|
|
{
|
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
if (info.type != AP_PARAM_GROUP) {
|
2019-12-24 03:21:37 -04:00
|
|
|
continue;
|
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
if (ptr == (void **)info.ptr) {
|
|
|
|
key = info.key;
|
2019-12-24 03:21:37 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-27 05:53:34 -04:00
|
|
|
/*
|
|
|
|
fetch a parameter value based on the index within a group. This
|
|
|
|
is used to find the old value of a parameter that has been
|
|
|
|
removed from an object.
|
|
|
|
*/
|
|
|
|
bool AP_Param::get_param_by_index(void *obj_ptr, uint8_t idx, ap_var_type old_ptype, void *pvalue)
|
|
|
|
{
|
|
|
|
uint16_t key;
|
|
|
|
if (!find_top_level_key_by_pointer(obj_ptr, key)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const ConversionInfo type_info = {key, idx, old_ptype, nullptr };
|
|
|
|
return AP_Param::find_old_parameter(&type_info, (AP_Param *)pvalue);
|
|
|
|
}
|
|
|
|
|
2015-12-29 06:21:54 -04:00
|
|
|
|
2012-12-13 18:58:23 -04:00
|
|
|
// Find a object by name.
|
|
|
|
//
|
|
|
|
AP_Param *
|
|
|
|
AP_Param::find_object(const char *name)
|
|
|
|
{
|
2015-12-30 17:27:22 -04:00
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
if (strcasecmp(name, info.name) == 0) {
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 20:40:59 -04:00
|
|
|
if (!get_base(info, base)) {
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
|
|
|
return (AP_Param *)base;
|
2012-12-13 18:58:23 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-12-13 18:58:23 -04:00
|
|
|
}
|
|
|
|
|
2015-10-06 19:08:59 -03:00
|
|
|
// notify GCS of current value of parameter
|
|
|
|
void AP_Param::notify() const {
|
|
|
|
uint32_t group_element = 0;
|
|
|
|
const struct GroupInfo *ginfo;
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting group_nesting {};
|
2015-10-06 19:08:59 -03:00
|
|
|
uint8_t idx;
|
|
|
|
|
2016-02-15 03:37:40 -04:00
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, ginfo, group_nesting, &idx);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info == nullptr) {
|
2015-10-06 19:08:59 -03:00
|
|
|
// this is probably very bad
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char name[AP_MAX_NAME_SIZE+1];
|
2016-02-15 03:37:40 -04:00
|
|
|
copy_name_info(info, ginfo, group_nesting, idx, name, sizeof(name), true);
|
2015-10-06 19:08:59 -03:00
|
|
|
|
|
|
|
uint32_t param_header_type;
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ginfo != nullptr) {
|
2015-12-23 13:25:02 -04:00
|
|
|
param_header_type = ginfo->type;
|
2015-10-06 19:08:59 -03:00
|
|
|
} else {
|
2015-12-23 13:25:02 -04:00
|
|
|
param_header_type = info->type;
|
2015-10-06 19:08:59 -03:00
|
|
|
}
|
|
|
|
|
2016-03-16 03:03:30 -03:00
|
|
|
send_parameter(name, (enum ap_var_type)param_header_type, idx);
|
2015-10-06 19:08:59 -03:00
|
|
|
}
|
|
|
|
|
2012-12-13 18:58:23 -04:00
|
|
|
|
2018-08-06 01:43:30 -03:00
|
|
|
/*
|
|
|
|
Save the variable to HAL storage, synchronous version
|
|
|
|
*/
|
2021-04-08 02:35:54 -03:00
|
|
|
void AP_Param::save_sync(bool force_save, bool send_to_gcs)
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
2012-11-05 07:08:43 -04:00
|
|
|
uint32_t group_element = 0;
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct GroupInfo *ginfo;
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting group_nesting {};
|
2012-02-23 23:19:00 -04:00
|
|
|
uint8_t idx;
|
2016-02-15 03:37:40 -04:00
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, ginfo, group_nesting, &idx);
|
2012-02-23 23:19:00 -04:00
|
|
|
const AP_Param *ap;
|
2012-02-11 07:51:35 -04:00
|
|
|
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info == nullptr) {
|
2012-02-11 07:51:35 -04:00
|
|
|
// we don't have any info on how to store it
|
2018-08-06 01:43:30 -03:00
|
|
|
return;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Param_header phdr;
|
|
|
|
|
|
|
|
// create the header we will use to store the variable
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ginfo != nullptr) {
|
2015-12-23 13:25:02 -04:00
|
|
|
phdr.type = ginfo->type;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (ginfo->flags & AP_PARAM_FLAG_HIDDEN) {
|
|
|
|
send_to_gcs = false;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
} else {
|
2015-12-23 13:25:02 -04:00
|
|
|
phdr.type = info->type;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (info->flags & AP_PARAM_FLAG_HIDDEN) {
|
|
|
|
send_to_gcs = false;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2015-12-30 17:27:22 -04:00
|
|
|
set_key(phdr, info->key);
|
2012-02-12 18:54:46 -04:00
|
|
|
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
|
2018-08-06 01:43:30 -03:00
|
|
|
return;
|
2012-02-23 23:19:00 -04:00
|
|
|
}
|
|
|
|
if (idx != 0) {
|
2015-12-29 06:21:54 -04:00
|
|
|
ap = (const AP_Param *)((ptrdiff_t)ap) - (idx*sizeof(float));
|
2012-02-23 23:19:00 -04:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:41:07 -04:00
|
|
|
if (phdr.type == AP_PARAM_INT8 && ginfo != nullptr && (ginfo->flags & AP_PARAM_FLAG_ENABLE)) {
|
|
|
|
// clear cached parameter count
|
2020-04-18 19:36:37 -03:00
|
|
|
invalidate_count();
|
2016-01-05 23:41:07 -04:00
|
|
|
}
|
|
|
|
|
2015-10-06 06:54:24 -03:00
|
|
|
char name[AP_MAX_NAME_SIZE+1];
|
2016-02-15 03:37:40 -04:00
|
|
|
copy_name_info(info, ginfo, group_nesting, idx, name, sizeof(name), true);
|
2015-10-06 06:54:24 -03:00
|
|
|
|
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));
|
2021-04-08 02:35:54 -03:00
|
|
|
if (send_to_gcs) {
|
|
|
|
send_parameter(name, (enum ap_var_type)phdr.type, idx);
|
|
|
|
}
|
2018-08-06 01:43:30 -03:00
|
|
|
return;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
2012-08-17 03:18:11 -03:00
|
|
|
if (ofs == (uint16_t) ~0) {
|
2018-08-06 01:43:30 -03:00
|
|
|
return;
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
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;
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ginfo != nullptr) {
|
2022-12-29 22:14:05 -04:00
|
|
|
v2 = get_default_value(this, *ginfo);
|
2012-08-08 00:13:30 -03:00
|
|
|
} else {
|
2022-12-29 22:14:05 -04:00
|
|
|
v2 = get_default_value(this, *info);
|
2012-08-08 00:13:30 -03:00
|
|
|
}
|
2015-05-04 23:35:47 -03:00
|
|
|
if (is_equal(v1,v2) && !force_save) {
|
2021-04-08 02:35:54 -03:00
|
|
|
if (send_to_gcs) {
|
|
|
|
GCS_SEND_PARAM(name, (enum ap_var_type)info->type, v2);
|
|
|
|
}
|
2018-08-06 01:43:30 -03:00
|
|
|
return;
|
2012-08-08 00:13:30 -03:00
|
|
|
}
|
2016-05-24 03:55:45 -03:00
|
|
|
if (!force_save &&
|
|
|
|
(phdr.type != AP_PARAM_INT32 &&
|
|
|
|
(fabsf(v1-v2) < 0.0001f*fabsf(v1)))) {
|
2012-08-08 00:13:30 -03:00
|
|
|
// for other than 32 bit integers, we accept values within
|
|
|
|
// 0.01 percent of the current value as being the same
|
2021-04-08 02:35:54 -03:00
|
|
|
if (send_to_gcs) {
|
|
|
|
GCS_SEND_PARAM(name, (enum ap_var_type)info->type, v2);
|
|
|
|
}
|
2018-08-06 01:43:30 -03:00
|
|
|
return;
|
2012-08-08 00:13:30 -03:00
|
|
|
}
|
2012-08-06 22:00:43 -03:00
|
|
|
}
|
|
|
|
|
2014-08-13 01:43:19 -03:00
|
|
|
if (ofs+type_size((enum ap_var_type)phdr.type)+2*sizeof(phdr) >= _storage.size()) {
|
2012-08-06 22:00:43 -03:00
|
|
|
// we are out of room for saving variables
|
2022-03-21 06:36:54 -03:00
|
|
|
DEV_PRINTF("EEPROM full\n");
|
2018-08-06 01:43:30 -03:00
|
|
|
return;
|
2012-08-06 22:00:43 -03:00
|
|
|
}
|
|
|
|
|
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));
|
2015-11-08 23:27:39 -04:00
|
|
|
|
2021-04-08 02:35:54 -03:00
|
|
|
if (send_to_gcs) {
|
|
|
|
send_parameter(name, (enum ap_var_type)phdr.type, idx);
|
|
|
|
}
|
2018-08-06 01:43:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
put variable into queue to be saved
|
|
|
|
*/
|
|
|
|
void AP_Param::save(bool force_save)
|
|
|
|
{
|
2020-12-06 20:03:26 -04:00
|
|
|
struct param_save p, p2;
|
2018-08-06 01:43:30 -03:00
|
|
|
p.param = this;
|
|
|
|
p.force_save = force_save;
|
2020-12-06 20:03:26 -04:00
|
|
|
if (save_queue.peek(p2) &&
|
|
|
|
p2.param == this &&
|
|
|
|
p2.force_save == force_save) {
|
|
|
|
// this one is already at the head of the list to be
|
|
|
|
// saved. This check is cheap and catches the case where we
|
|
|
|
// are flooding the save queue with one parameter (eg. mission
|
|
|
|
// creation, changing MIS_TOTAL)
|
|
|
|
return;
|
|
|
|
}
|
2018-08-06 01:43:30 -03:00
|
|
|
while (!save_queue.push(p)) {
|
|
|
|
// if we can't save to the queue
|
2021-04-07 22:11:13 -03:00
|
|
|
if (hal.util->get_soft_armed() && hal.scheduler->in_main_thread()) {
|
|
|
|
// if we are armed in main thread then don't sleep, instead we lose the
|
2018-08-06 01:43:30 -03:00
|
|
|
// parameter save
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// when we are disarmed then loop waiting for a slot to become
|
|
|
|
// available. This guarantees completion for large parameter
|
|
|
|
// set loads
|
2019-04-28 02:05:11 -03:00
|
|
|
hal.scheduler->expect_delay_ms(1);
|
2018-08-06 01:43:30 -03:00
|
|
|
hal.scheduler->delay_microseconds(500);
|
2019-04-28 02:05:11 -03:00
|
|
|
hal.scheduler->expect_delay_ms(0);
|
2018-08-06 01:43:30 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
background function for saving parameters. This runs on the IO thread
|
|
|
|
*/
|
|
|
|
void AP_Param::save_io_handler(void)
|
|
|
|
{
|
|
|
|
struct param_save p;
|
|
|
|
while (save_queue.pop(p)) {
|
2021-04-08 02:35:54 -03:00
|
|
|
p.param->save_sync(p.force_save, true);
|
2018-08-06 01:43:30 -03:00
|
|
|
}
|
2021-01-21 01:57:19 -04:00
|
|
|
if (hal.scheduler->is_system_initialized()) {
|
|
|
|
// pay the cost of parameter counting in the IO thread
|
|
|
|
count_parameters();
|
|
|
|
}
|
2018-08-06 01:43:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
wait for all parameters to save
|
|
|
|
*/
|
|
|
|
void AP_Param::flush(void)
|
|
|
|
{
|
|
|
|
uint16_t counter = 200; // 2 seconds max
|
|
|
|
while (counter-- && save_queue.available()) {
|
2019-04-28 02:05:11 -03:00
|
|
|
hal.scheduler->expect_delay_ms(10);
|
2018-08-06 01:43:30 -03:00
|
|
|
hal.scheduler->delay(10);
|
2019-04-28 02:05:11 -03:00
|
|
|
hal.scheduler->expect_delay_ms(0);
|
2018-08-06 01:43:30 -03:00
|
|
|
}
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Load the variable from EEPROM, if supported
|
|
|
|
//
|
|
|
|
bool AP_Param::load(void)
|
|
|
|
{
|
2012-11-05 07:08:43 -04:00
|
|
|
uint32_t group_element = 0;
|
2012-02-12 03:22:57 -04:00
|
|
|
const struct GroupInfo *ginfo;
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting group_nesting {};
|
2012-02-23 23:19:00 -04:00
|
|
|
uint8_t idx;
|
2016-02-15 03:37:40 -04:00
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, ginfo, group_nesting, &idx);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info == nullptr) {
|
2012-02-11 07:51:35 -04:00
|
|
|
// 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
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ginfo != nullptr) {
|
2015-12-23 13:25:02 -04:00
|
|
|
phdr.type = ginfo->type;
|
2012-02-12 03:22:57 -04:00
|
|
|
} else {
|
2015-12-23 13:25:02 -04:00
|
|
|
phdr.type = info->type;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2015-12-30 17:27:22 -04:00
|
|
|
set_key(phdr, info->key);
|
2012-02-12 18:54:46 -04:00
|
|
|
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
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
|
|
|
if (!get_base(*info, base)) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-03-08 00:29:48 -04:00
|
|
|
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ginfo != nullptr) {
|
2016-03-08 00:29:48 -04:00
|
|
|
// add in nested group offset
|
|
|
|
ptrdiff_t group_offset = 0;
|
|
|
|
for (uint8_t i=0; i<group_nesting.level; i++) {
|
|
|
|
group_offset += group_nesting.group_ret[i]->offset;
|
|
|
|
}
|
|
|
|
set_value((enum ap_var_type)phdr.type, (void*)(base + ginfo->offset + group_offset),
|
2022-12-29 22:14:05 -04:00
|
|
|
get_default_value(this, *ginfo));
|
2012-08-06 22:00:43 -03:00
|
|
|
} else {
|
2016-04-01 02:16:03 -03:00
|
|
|
set_value((enum ap_var_type)phdr.type, (void*)base,
|
2022-12-29 22:14:05 -04:00
|
|
|
get_default_value(this, *info));
|
2012-08-06 22:00:43 -03:00
|
|
|
}
|
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) {
|
2015-12-29 06:21:54 -04:00
|
|
|
ap = (AP_Param *)((ptrdiff_t)ap) - (idx*sizeof(float));
|
2012-02-27 18:42:34 -04:00
|
|
|
}
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// found it
|
2014-08-13 01:43:19 -03:00
|
|
|
_storage.read_block(ap, ofs+sizeof(phdr), type_size((enum ap_var_type)phdr.type));
|
2012-02-11 07:51:35 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-19 22:29:17 -04:00
|
|
|
bool AP_Param::configured_in_storage(void) const
|
2015-10-21 23:57:05 -03:00
|
|
|
{
|
|
|
|
uint32_t group_element = 0;
|
|
|
|
const struct GroupInfo *ginfo;
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting group_nesting {};
|
2015-10-21 23:57:05 -03:00
|
|
|
uint8_t idx;
|
2016-02-15 03:37:40 -04:00
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, ginfo, group_nesting, &idx);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info == nullptr) {
|
2015-10-21 23:57:05 -03:00
|
|
|
// 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
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ginfo != nullptr) {
|
2015-12-23 13:25:02 -04:00
|
|
|
phdr.type = ginfo->type;
|
2015-10-21 23:57:05 -03:00
|
|
|
} else {
|
2015-12-23 13:25:02 -04:00
|
|
|
phdr.type = info->type;
|
2015-10-21 23:57:05 -03:00
|
|
|
}
|
2015-12-30 17:27:22 -04:00
|
|
|
set_key(phdr, info->key);
|
2015-10-21 23:57:05 -03:00
|
|
|
phdr.group_element = group_element;
|
|
|
|
|
|
|
|
// scan EEPROM to find the right location
|
|
|
|
uint16_t ofs;
|
|
|
|
|
|
|
|
// only vector3f can have non-zero idx for now
|
|
|
|
return scan(&phdr, &ofs) && (phdr.type == AP_PARAM_VECTOR3F || idx == 0);
|
|
|
|
}
|
|
|
|
|
2019-08-19 07:05:33 -03:00
|
|
|
bool AP_Param::configured_in_defaults_file(bool &read_only) const
|
2015-10-21 23:57:05 -03:00
|
|
|
{
|
2019-08-19 07:05:33 -03:00
|
|
|
if (num_param_overrides == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-10-21 23:57:05 -03:00
|
|
|
uint32_t group_element = 0;
|
|
|
|
const struct GroupInfo *ginfo;
|
2016-02-15 03:37:40 -04:00
|
|
|
struct GroupNesting group_nesting {};
|
2015-10-21 23:57:05 -03:00
|
|
|
uint8_t idx;
|
2016-02-15 03:37:40 -04:00
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, ginfo, group_nesting, &idx);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info == nullptr) {
|
2015-10-21 23:57:05 -03:00
|
|
|
// we don't have any info on how to load it
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint16_t i=0; i<num_param_overrides; i++) {
|
2017-01-22 06:42:54 -04:00
|
|
|
if (this == param_overrides[i].object_ptr) {
|
2019-08-19 07:05:33 -03:00
|
|
|
read_only = param_overrides[i].read_only;
|
2015-10-21 23:57:05 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-19 07:05:33 -03:00
|
|
|
bool AP_Param::configured(void) const
|
|
|
|
{
|
|
|
|
bool read_only;
|
|
|
|
return configured_in_defaults_file(read_only) || configured_in_storage();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AP_Param::is_read_only(void) const
|
|
|
|
{
|
|
|
|
if (num_read_only == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool read_only;
|
|
|
|
if (configured_in_defaults_file(read_only)) {
|
|
|
|
return read_only;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-17 03:18:11 -03:00
|
|
|
// set a AP_Param variable to a specified value
|
2013-05-30 08:45:25 -03:00
|
|
|
void AP_Param::set_value(enum ap_var_type type, void *ptr, float value)
|
2012-08-06 22:00:43 -03:00
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case AP_PARAM_INT8:
|
2013-05-30 08:45:25 -03:00
|
|
|
((AP_Int8 *)ptr)->set(value);
|
2012-08-06 22:00:43 -03:00
|
|
|
break;
|
|
|
|
case AP_PARAM_INT16:
|
2013-05-30 08:45:25 -03:00
|
|
|
((AP_Int16 *)ptr)->set(value);
|
2012-08-06 22:00:43 -03:00
|
|
|
break;
|
|
|
|
case AP_PARAM_INT32:
|
2013-05-30 08:45:25 -03:00
|
|
|
((AP_Int32 *)ptr)->set(value);
|
2012-08-06 22:00:43 -03:00
|
|
|
break;
|
|
|
|
case AP_PARAM_FLOAT:
|
2013-05-30 08:45:25 -03:00
|
|
|
((AP_Float *)ptr)->set(value);
|
2012-08-06 22:00:43 -03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-12 17:40:42 -04:00
|
|
|
// load default values for scalars in a group. This does not recurse
|
|
|
|
// into other objects. This is a static function that should be called
|
|
|
|
// in the objects constructor
|
|
|
|
void AP_Param::setup_object_defaults(const void *object_pointer, const struct GroupInfo *group_info)
|
2012-08-06 22:00:43 -03:00
|
|
|
{
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t base = (ptrdiff_t)object_pointer;
|
2012-08-06 22:00:43 -03:00
|
|
|
uint8_t type;
|
2015-12-27 16:22:32 -04:00
|
|
|
for (uint8_t i=0;
|
|
|
|
(type=group_info[i].type) != AP_PARAM_NONE;
|
|
|
|
i++) {
|
2012-12-12 17:40:42 -04:00
|
|
|
if (type <= AP_PARAM_FLOAT) {
|
2015-12-23 13:25:02 -04:00
|
|
|
void *ptr = (void *)(base + group_info[i].offset);
|
2017-01-22 06:42:54 -04:00
|
|
|
set_value((enum ap_var_type)type, ptr,
|
2022-12-29 22:14:05 -04:00
|
|
|
get_default_value((const AP_Param *)ptr, group_info[i]));
|
2022-07-27 14:23:08 -03:00
|
|
|
} else if (type == AP_PARAM_VECTOR3F) {
|
|
|
|
// Single default for all components
|
|
|
|
void *ptr = (void *)(base + group_info[i].offset);
|
2022-12-29 22:14:05 -04:00
|
|
|
const float default_val = get_default_value((const AP_Param *)ptr, group_info[i]);
|
2022-07-27 14:23:08 -03:00
|
|
|
((AP_Vector3f *)ptr)->set(Vector3f{default_val, default_val, default_val});
|
2012-08-06 22:00:43 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 20:37:41 -03:00
|
|
|
// set a value directly in an object. This should only be used by
|
|
|
|
// example code, not by mainline vehicle code
|
2016-10-04 05:07:21 -03:00
|
|
|
bool AP_Param::set_object_value(const void *object_pointer,
|
|
|
|
const struct GroupInfo *group_info,
|
2014-07-20 20:37:41 -03:00
|
|
|
const char *name, float value)
|
|
|
|
{
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t base = (ptrdiff_t)object_pointer;
|
2014-07-20 20:37:41 -03:00
|
|
|
uint8_t type;
|
2016-10-04 05:07:21 -03:00
|
|
|
bool found = false;
|
2015-12-27 16:22:32 -04:00
|
|
|
for (uint8_t i=0;
|
|
|
|
(type=group_info[i].type) != AP_PARAM_NONE;
|
|
|
|
i++) {
|
2014-07-20 20:37:41 -03:00
|
|
|
if (strcmp(name, group_info[i].name) == 0 && type <= AP_PARAM_FLOAT) {
|
2015-12-23 13:25:02 -04:00
|
|
|
void *ptr = (void *)(base + group_info[i].offset);
|
2014-07-20 20:37:41 -03:00
|
|
|
set_value((enum ap_var_type)type, ptr, value);
|
2016-10-04 05:07:21 -03:00
|
|
|
// return true here ?
|
|
|
|
found = true;
|
2014-07-20 20:37:41 -03:00
|
|
|
}
|
|
|
|
}
|
2016-10-04 05:07:21 -03:00
|
|
|
return found;
|
2014-07-20 20:37:41 -03:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:00:43 -03:00
|
|
|
|
2012-12-12 17:40:42 -04:00
|
|
|
// load default values for all scalars in a sketch. This does not
|
|
|
|
// recurse into sub-objects
|
2012-12-13 18:58:23 -04:00
|
|
|
void AP_Param::setup_sketch_defaults(void)
|
2012-08-06 22:00:43 -03:00
|
|
|
{
|
2012-12-13 18:58:23 -04:00
|
|
|
setup();
|
2015-12-30 17:27:22 -04:00
|
|
|
for (uint16_t i=0; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
uint8_t type = info.type;
|
2012-12-12 17:40:42 -04:00
|
|
|
if (type <= AP_PARAM_FLOAT) {
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 20:40:59 -04:00
|
|
|
if (get_base(info, base)) {
|
2017-01-22 06:42:54 -04:00
|
|
|
set_value((enum ap_var_type)type, (void*)base,
|
2022-12-29 22:14:05 -04:00
|
|
|
get_default_value((const AP_Param *)base, info));
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
2012-08-06 22:00:43 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-11 07:51:35 -04:00
|
|
|
// Load all variables from EEPROM
|
|
|
|
//
|
2018-06-14 17:03:41 -03:00
|
|
|
bool AP_Param::load_all()
|
2012-02-11 07:51:35 -04:00
|
|
|
{
|
|
|
|
struct Param_header phdr;
|
|
|
|
uint16_t ofs = sizeof(AP_Param::EEPROM_header);
|
2012-08-06 22:00:43 -03:00
|
|
|
|
2018-06-26 12:54:36 -03:00
|
|
|
reload_defaults_file(false);
|
2015-04-01 22:24:45 -03:00
|
|
|
|
2018-08-06 01:43:30 -03:00
|
|
|
if (!registered_save_handler) {
|
|
|
|
registered_save_handler = true;
|
|
|
|
hal.scheduler->register_io_process(FUNCTOR_BIND((&save_dummy), &AP_Param::save_io_handler, void));
|
|
|
|
}
|
|
|
|
|
2014-08-13 01:43:19 -03:00
|
|
|
while (ofs < _storage.size()) {
|
|
|
|
_storage.read_block(&phdr, ofs, sizeof(phdr));
|
2015-12-30 17:27:22 -04:00
|
|
|
if (is_sentinal(phdr)) {
|
2012-02-11 07:51:35 -04:00
|
|
|
// we've reached the sentinal
|
2019-08-27 00:30:51 -03:00
|
|
|
sentinal_offset = ofs;
|
2012-02-11 07:51:35 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct AP_Param::Info *info;
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
info = find_by_header(phdr, &ptr);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info != nullptr) {
|
2014-08-13 01:43:19 -03:00
|
|
|
_storage.read_block(ptr, ofs+sizeof(phdr), type_size((enum ap_var_type)phdr.type));
|
2012-02-11 07:51:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ofs += type_size((enum ap_var_type)phdr.type) + sizeof(phdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// we didn't find the sentinal
|
2014-11-09 17:09:08 -04:00
|
|
|
Debug("no sentinal in load_all");
|
2012-02-11 07:51:35 -04:00
|
|
|
return false;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
|
2017-01-09 05:52:36 -04:00
|
|
|
/*
|
2018-06-26 12:54:36 -03:00
|
|
|
* reload from hal.util defaults file or embedded param region
|
|
|
|
* @last_pass: if this is the last pass on defaults - unknown parameters are
|
|
|
|
* ignored but if this is set a warning will be emitted
|
2017-01-09 05:52:36 -04:00
|
|
|
*/
|
2018-06-26 12:54:36 -03:00
|
|
|
void AP_Param::reload_defaults_file(bool last_pass)
|
2017-01-09 05:52:36 -04:00
|
|
|
{
|
2024-01-14 20:34:05 -04:00
|
|
|
#if AP_PARAM_DEFAULTS_FILE_PARSING_ENABLED
|
2024-01-17 22:35:43 -04:00
|
|
|
|
2017-01-09 05:52:36 -04:00
|
|
|
/*
|
|
|
|
if the HAL specifies a defaults parameter file then override
|
|
|
|
defaults using that file
|
|
|
|
*/
|
|
|
|
const char *default_file = hal.util->get_custom_defaults_file();
|
|
|
|
if (default_file) {
|
2024-01-17 22:35:43 -04:00
|
|
|
#if AP_FILESYSTEM_FILE_READING_ENABLED
|
|
|
|
load_defaults_file_from_filesystem(default_file, last_pass);
|
|
|
|
#elif defined(HAL_HAVE_AP_ROMFS_EMBEDDED_H)
|
|
|
|
load_defaults_file_from_romfs(default_file, last_pass);
|
2024-01-14 20:34:05 -04:00
|
|
|
#endif
|
2017-01-09 05:52:36 -04:00
|
|
|
}
|
2024-01-17 22:35:43 -04:00
|
|
|
|
2024-01-14 20:34:05 -04:00
|
|
|
#endif // AP_PARAM_DEFAULTS_FILE_PARSING_ENABLED
|
|
|
|
|
|
|
|
#if AP_PARAM_MAX_EMBEDDED_PARAM > 0
|
|
|
|
if (param_defaults_data.length != 0) {
|
|
|
|
load_embedded_param_defaults(last_pass);
|
|
|
|
}
|
2017-01-09 05:52:36 -04:00
|
|
|
#endif
|
2024-01-14 20:34:05 -04:00
|
|
|
|
2020-10-24 12:33:25 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL && !defined(HAL_BUILD_AP_PERIPH)
|
2020-08-23 03:25:40 -03:00
|
|
|
hal.util->set_cmdline_parameters();
|
|
|
|
#endif
|
2017-01-09 05:52:36 -04:00
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
|
2024-01-17 22:35:43 -04:00
|
|
|
#if AP_FILESYSTEM_FILE_READING_ENABLED
|
|
|
|
void AP_Param::load_defaults_file_from_filesystem(const char *default_file, bool last_pass)
|
|
|
|
{
|
|
|
|
if (load_defaults_file(default_file, last_pass)) {
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
|
|
|
printf("Loaded defaults from %s\n", default_file);
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
|
|
|
AP_HAL::panic("Failed to load defaults from %s\n", default_file);
|
|
|
|
#else
|
|
|
|
printf("Failed to load defaults from %s\n", default_file);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // AP_FILESYSTEM_FILE_READING_ENABLED
|
|
|
|
|
|
|
|
#if defined(HAL_HAVE_AP_ROMFS_EMBEDDED_H)
|
|
|
|
void AP_Param::load_defaults_file_from_romfs(const char *default_file, bool last_pass)
|
|
|
|
{
|
|
|
|
const char *prefix = "@ROMFS/";
|
|
|
|
if (strncmp(default_file, prefix, strlen(prefix)) != 0) {
|
|
|
|
// does not start with ROMFS, do not attempt to retrieve from it
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// filename without the prefix:
|
|
|
|
const char *trimmed_filename = &default_file[strlen(prefix)];
|
|
|
|
|
|
|
|
uint32_t string_length;
|
|
|
|
const uint8_t *text = AP_ROMFS::find_decompress(trimmed_filename, string_length);
|
|
|
|
if (text == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
load_param_defaults((const char*)text, string_length, last_pass);
|
|
|
|
|
|
|
|
AP_ROMFS::free(text);
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // HAL_HAVE_AP_ROMFS_EMBEDDED_H
|
2015-12-29 06:21:54 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
Load all variables from EEPROM for a particular object. This is
|
|
|
|
required for dynamically loaded objects
|
|
|
|
*/
|
|
|
|
void AP_Param::load_object_from_eeprom(const void *object_pointer, const struct GroupInfo *group_info)
|
|
|
|
{
|
|
|
|
struct Param_header phdr;
|
2016-04-01 02:16:03 -03:00
|
|
|
uint16_t key;
|
2015-12-29 06:21:54 -04:00
|
|
|
|
2016-04-01 02:16:03 -03:00
|
|
|
if (!find_key_by_pointer(object_pointer, key)) {
|
2022-03-21 06:36:54 -03:00
|
|
|
DEV_PRINTF("ERROR: Unable to find param pointer\n");
|
2015-12-29 06:21:54 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-01 02:16:03 -03:00
|
|
|
for (uint8_t i=0; group_info[i].type != AP_PARAM_NONE; i++) {
|
2015-12-29 06:21:54 -04:00
|
|
|
if (group_info[i].type == AP_PARAM_GROUP) {
|
|
|
|
ptrdiff_t new_offset = 0;
|
2016-04-01 02:16:03 -03:00
|
|
|
if (!adjust_group_offset(key, group_info[i], new_offset)) {
|
2015-12-29 06:21:54 -04:00
|
|
|
continue;
|
|
|
|
}
|
2017-02-27 02:39:12 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(group_info[i]);
|
|
|
|
if (ginfo != nullptr) {
|
|
|
|
load_object_from_eeprom((void *)(((ptrdiff_t)object_pointer)+new_offset), ginfo);
|
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
}
|
|
|
|
uint16_t ofs = sizeof(AP_Param::EEPROM_header);
|
|
|
|
while (ofs < _storage.size()) {
|
|
|
|
_storage.read_block(&phdr, ofs, sizeof(phdr));
|
|
|
|
// note that this is an || not an && for robustness
|
|
|
|
// against power off while adding a variable
|
2015-12-30 17:27:22 -04:00
|
|
|
if (is_sentinal(phdr)) {
|
2015-12-29 06:21:54 -04:00
|
|
|
// we've reached the sentinal
|
2019-08-27 00:30:51 -03:00
|
|
|
sentinal_offset = ofs;
|
2015-12-29 06:21:54 -04:00
|
|
|
break;
|
|
|
|
}
|
2016-04-01 02:16:03 -03:00
|
|
|
if (get_key(phdr) == key) {
|
2015-12-29 06:21:54 -04:00
|
|
|
const struct AP_Param::Info *info;
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
info = find_by_header(phdr, &ptr);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (info != nullptr) {
|
2015-12-29 06:21:54 -04:00
|
|
|
if ((ptrdiff_t)ptr == ((ptrdiff_t)object_pointer)+group_info[i].offset) {
|
|
|
|
_storage.read_block(ptr, ofs+sizeof(phdr), type_size((enum ap_var_type)phdr.type));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ofs += type_size((enum ap_var_type)phdr.type) + sizeof(phdr);
|
|
|
|
}
|
|
|
|
}
|
2021-01-21 01:57:19 -04:00
|
|
|
|
2024-02-01 21:24:00 -04:00
|
|
|
if (!done_all_default_params) {
|
|
|
|
/*
|
|
|
|
the new subtree may need defaults from defaults.parm
|
|
|
|
*/
|
|
|
|
reload_defaults_file(false);
|
|
|
|
}
|
|
|
|
|
2021-01-21 01:57:19 -04:00
|
|
|
// reset cached param counter as we may be loading a dynamic var_info
|
|
|
|
invalidate_count();
|
2015-12-29 06:21:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
// return the first variable in _var_info
|
2022-06-13 13:04:41 -03:00
|
|
|
AP_Param *AP_Param::first(ParamToken *token, enum ap_var_type *ptype, float *default_val)
|
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) {
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(0), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
// should be impossible, first var needs to be non-pointer
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2016-04-01 02:16:03 -03:00
|
|
|
}
|
2022-06-13 13:04:41 -03:00
|
|
|
if (ptype != nullptr) {
|
|
|
|
*ptype = (enum ap_var_type)var_info(0).type;
|
|
|
|
}
|
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
if (default_val != nullptr) {
|
2022-12-29 22:14:05 -04:00
|
|
|
*default_val = get_default_value((AP_Param *)base, var_info(0));
|
2022-06-13 13:04:41 -03:00
|
|
|
}
|
|
|
|
check_default((AP_Param *)base, default_val);
|
|
|
|
#endif
|
2016-04-01 02:16:03 -03:00
|
|
|
return (AP_Param *)base;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the next variable in a group, recursing into groups
|
|
|
|
/// as needed
|
2021-01-21 01:57:19 -04:00
|
|
|
AP_Param *AP_Param::next_group(const uint16_t vindex, const struct GroupInfo *group_info,
|
2012-02-12 03:22:57 -04:00
|
|
|
bool *found_current,
|
2021-01-21 01:57:19 -04:00
|
|
|
const uint32_t group_base,
|
|
|
|
const uint8_t group_shift,
|
|
|
|
const ptrdiff_t group_offset,
|
2012-02-19 01:57:49 -04:00
|
|
|
ParamToken *token,
|
2021-01-21 01:57:19 -04:00
|
|
|
enum ap_var_type *ptype,
|
2022-06-13 13:04:41 -03:00
|
|
|
bool skip_disabled,
|
|
|
|
float *default_val)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
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;
|
2015-12-27 16:22:32 -04:00
|
|
|
(type=(enum ap_var_type)group_info[i].type) != AP_PARAM_NONE;
|
2012-02-12 03:22:57 -04:00
|
|
|
i++) {
|
2017-02-07 19:45:20 -04:00
|
|
|
if (!check_frame_type(group_info[i].flags)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
|
|
|
// a nested group
|
2017-02-27 02:39:12 -04:00
|
|
|
const struct GroupInfo *ginfo = get_group_info(group_info[i]);
|
|
|
|
if (ginfo == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
AP_Param *ap;
|
2015-12-29 06:21:54 -04:00
|
|
|
ptrdiff_t new_offset = group_offset;
|
|
|
|
|
|
|
|
if (!adjust_group_offset(vindex, group_info[i], new_offset)) {
|
|
|
|
continue;
|
2015-12-27 16:22:32 -04:00
|
|
|
}
|
2015-12-29 06:21:54 -04:00
|
|
|
|
2016-02-15 03:37:40 -04:00
|
|
|
ap = next_group(vindex, ginfo, found_current, group_id(group_info, group_base, i, group_shift),
|
2022-06-13 13:04:41 -03:00
|
|
|
group_shift + _group_level_shift, new_offset, token, ptype, skip_disabled, default_val);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ap != nullptr) {
|
2012-02-12 03:22:57 -04:00
|
|
|
return ap;
|
|
|
|
}
|
2015-12-27 16:22:32 -04:00
|
|
|
} else {
|
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;
|
2016-02-15 03:37:40 -04:00
|
|
|
token->group_element = group_id(group_info, group_base, i, group_shift);
|
2012-02-23 23:19:00 -04:00
|
|
|
token->idx = 0;
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ptype != nullptr) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*ptype = type;
|
2012-02-12 04:18:24 -04:00
|
|
|
}
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
2021-01-21 01:57:19 -04:00
|
|
|
|
|
|
|
AP_Param *ret = (AP_Param*)(base + group_info[i].offset + group_offset);
|
|
|
|
|
|
|
|
if (skip_disabled &&
|
|
|
|
_hide_disabled_groups &&
|
|
|
|
group_info[i].type == AP_PARAM_INT8 &&
|
|
|
|
(group_info[i].flags & AP_PARAM_FLAG_ENABLE) &&
|
|
|
|
((AP_Int8 *)ret)->get() == 0) {
|
|
|
|
token->last_disabled = 1;
|
|
|
|
}
|
2022-06-13 13:04:41 -03:00
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
if (default_val != nullptr) {
|
2022-12-29 22:14:05 -04:00
|
|
|
*default_val = get_default_value(ret, group_info[i]);
|
2022-06-13 13:04:41 -03:00
|
|
|
}
|
|
|
|
#endif
|
2021-01-21 01:57:19 -04:00
|
|
|
return ret;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2016-02-15 03:37:40 -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;
|
2021-01-21 01:57:19 -04:00
|
|
|
if (token->last_disabled) {
|
|
|
|
token->last_disabled = 0;
|
|
|
|
return nullptr;
|
|
|
|
}
|
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++;
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ptype != nullptr) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*ptype = AP_PARAM_FLOAT;
|
|
|
|
}
|
2016-04-01 02:16:03 -03:00
|
|
|
ptrdiff_t base;
|
2022-01-07 01:25:38 -04:00
|
|
|
if (!get_base(var_info(vindex), base)) {
|
2016-04-01 02:16:03 -03:00
|
|
|
continue;
|
|
|
|
}
|
2022-12-29 22:14:05 -04:00
|
|
|
ptrdiff_t ofs = base + group_info[i].offset + group_offset;
|
|
|
|
ofs += sizeof(float)*(token->idx - 1u);
|
2022-06-13 13:04:41 -03:00
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
if (default_val != nullptr) {
|
2022-12-29 22:14:05 -04:00
|
|
|
*default_val = get_default_value((AP_Param *)ofs, group_info[i]);
|
2022-06-13 13:04:41 -03:00
|
|
|
}
|
|
|
|
#endif
|
2012-02-23 23:19:00 -04:00
|
|
|
return (AP_Param *)ofs;
|
|
|
|
}
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the next variable in _var_info, recursing into groups
|
|
|
|
/// as needed
|
2022-06-13 13:04:41 -03:00
|
|
|
AP_Param *AP_Param::next(ParamToken *token, enum ap_var_type *ptype, bool skip_disabled, float *default_val)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
2015-12-30 17:27:22 -04:00
|
|
|
uint16_t i = token->key;
|
2012-02-12 03:22:57 -04:00
|
|
|
bool found_current = false;
|
|
|
|
if (i >= _num_vars) {
|
|
|
|
// illegal token
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
2022-01-07 01:25:38 -04:00
|
|
|
enum ap_var_type type = (enum ap_var_type)var_info(i).type;
|
2012-02-23 23:19:00 -04:00
|
|
|
|
|
|
|
// 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++;
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ptype != nullptr) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*ptype = AP_PARAM_FLOAT;
|
|
|
|
}
|
2022-12-29 22:14:05 -04:00
|
|
|
AP_Param *ret = (AP_Param *)(((token->idx - 1u)*sizeof(float))+(ptrdiff_t)var_info(i).ptr);
|
2022-06-13 13:04:41 -03:00
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
if (default_val != nullptr) {
|
2022-12-29 22:14:05 -04:00
|
|
|
*default_val = get_default_value(ret, var_info(i));
|
2022-06-13 13:04:41 -03:00
|
|
|
}
|
|
|
|
#endif
|
2022-12-29 22:14:05 -04:00
|
|
|
return ret;
|
2012-02-23 23:19:00 -04:00
|
|
|
}
|
|
|
|
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type != AP_PARAM_GROUP) {
|
|
|
|
i++;
|
|
|
|
found_current = true;
|
|
|
|
}
|
|
|
|
for (; i<_num_vars; i++) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const auto &info = var_info(i);
|
|
|
|
if (!check_frame_type(info.flags)) {
|
2017-02-07 19:45:20 -04:00
|
|
|
continue;
|
|
|
|
}
|
2022-01-07 20:40:59 -04:00
|
|
|
type = (enum ap_var_type)info.type;
|
2012-02-12 03:22:57 -04:00
|
|
|
if (type == AP_PARAM_GROUP) {
|
2022-01-07 20:40:59 -04:00
|
|
|
const struct GroupInfo *group_info = get_group_info(info);
|
2017-02-27 02:39:12 -04:00
|
|
|
if (group_info == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-06-13 13:04:41 -03:00
|
|
|
AP_Param *ap = next_group(i, group_info, &found_current, 0, 0, 0, token, ptype, skip_disabled, default_val);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ap != nullptr) {
|
2012-02-12 03:22:57 -04:00
|
|
|
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;
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ptype != nullptr) {
|
2012-02-23 23:19:00 -04:00
|
|
|
*ptype = type;
|
2012-02-12 04:18:24 -04:00
|
|
|
}
|
2022-06-13 13:04:41 -03:00
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
if (default_val != nullptr) {
|
2022-12-29 22:14:05 -04:00
|
|
|
*default_val = get_default_value((AP_Param *)info.ptr, info);
|
2022-06-13 13:04:41 -03:00
|
|
|
}
|
|
|
|
#endif
|
2022-01-07 20:40:59 -04:00
|
|
|
return (AP_Param *)(info.ptr);
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
return nullptr;
|
2012-02-12 03:22:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the next scalar in _var_info, recursing into groups
|
|
|
|
/// as needed
|
2022-06-13 13:04:41 -03:00
|
|
|
AP_Param *AP_Param::next_scalar(ParamToken *token, enum ap_var_type *ptype, float *default_val)
|
2012-02-12 03:22:57 -04:00
|
|
|
{
|
|
|
|
AP_Param *ap;
|
2012-02-12 04:18:24 -04:00
|
|
|
enum ap_var_type type;
|
2022-06-13 13:04:41 -03:00
|
|
|
while ((ap = next(token, &type, true, default_val)) != nullptr && type > AP_PARAM_FLOAT) ;
|
2015-12-29 07:43:25 -04:00
|
|
|
|
2021-01-21 01:57:19 -04:00
|
|
|
if (ap != nullptr) {
|
|
|
|
if (ptype != nullptr) {
|
|
|
|
*ptype = type;
|
|
|
|
}
|
2012-02-12 04:18:24 -04:00
|
|
|
}
|
2022-06-13 13:04:41 -03:00
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
check_default(ap, default_val);
|
|
|
|
#endif
|
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
|
2013-04-19 04:46:40 -03:00
|
|
|
float AP_Param::cast_to_float(enum ap_var_type type) const
|
2012-02-12 04:18:58 -04:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2016-12-30 19:49:43 -04:00
|
|
|
/*
|
|
|
|
find an old parameter and return it.
|
|
|
|
*/
|
|
|
|
bool AP_Param::find_old_parameter(const struct ConversionInfo *info, AP_Param *value)
|
2013-05-30 08:45:25 -03:00
|
|
|
{
|
|
|
|
// find the old value in EEPROM.
|
|
|
|
uint16_t pofs;
|
|
|
|
AP_Param::Param_header header;
|
2015-12-23 13:25:02 -04:00
|
|
|
header.type = info->type;
|
2015-12-30 17:27:22 -04:00
|
|
|
set_key(header, info->old_key);
|
2015-12-23 13:25:02 -04:00
|
|
|
header.group_element = info->old_group_element;
|
2013-05-30 08:45:25 -03:00
|
|
|
if (!scan(&header, &pofs)) {
|
2016-12-30 19:49:43 -04:00
|
|
|
// the old parameter isn't saved in the EEPROM.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// load the old value from EEPROM
|
|
|
|
_storage.read_block(value, pofs+sizeof(header), type_size((enum ap_var_type)header.type));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wformat"
|
|
|
|
// convert one old vehicle parameter to new object parameter
|
2017-01-10 02:07:53 -04:00
|
|
|
void AP_Param::convert_old_parameter(const struct ConversionInfo *info, float scaler, uint8_t flags)
|
2016-12-30 19:49:43 -04:00
|
|
|
{
|
|
|
|
uint8_t old_value[type_size(info->type)];
|
|
|
|
AP_Param *ap = (AP_Param *)&old_value[0];
|
|
|
|
|
|
|
|
if (!find_old_parameter(info, ap)) {
|
2013-05-30 08:45:25 -03:00
|
|
|
// the old parameter isn't saved in the EEPROM. It was
|
|
|
|
// probably still set to the default value, which isn't stored
|
|
|
|
// no need to convert
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the new variable in the variable structures
|
|
|
|
enum ap_var_type ptype;
|
|
|
|
AP_Param *ap2;
|
2015-10-25 16:01:02 -03:00
|
|
|
ap2 = find(&info->new_name[0], &ptype);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (ap2 == nullptr) {
|
2022-03-21 06:36:54 -03:00
|
|
|
DEV_PRINTF("Unknown conversion '%s'\n", info->new_name);
|
2013-05-30 08:45:25 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if we can load it from EEPROM
|
2017-01-10 02:07:53 -04:00
|
|
|
if (!(flags & CONVERT_FLAG_FORCE) && ap2->configured_in_storage()) {
|
2013-05-30 08:45:25 -03:00
|
|
|
// the new parameter already has a value set by the user, or
|
|
|
|
// has already been converted
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-02-16 22:29:47 -04:00
|
|
|
// see if they are the same type and no scaling applied
|
2017-01-10 02:07:53 -04:00
|
|
|
if (ptype == info->type && is_equal(scaler, 1.0f) && flags == 0) {
|
2013-05-30 08:45:25 -03:00
|
|
|
// copy the value over only if the new parameter does not already
|
|
|
|
// have the old value (via a default).
|
|
|
|
if (memcmp(ap2, ap, sizeof(old_value)) != 0) {
|
|
|
|
memcpy(ap2, ap, sizeof(old_value));
|
|
|
|
// and save
|
|
|
|
ap2->save();
|
|
|
|
}
|
2016-12-30 19:49:43 -04:00
|
|
|
} else if (ptype <= AP_PARAM_FLOAT && info->type <= AP_PARAM_FLOAT) {
|
2013-05-30 08:45:25 -03:00
|
|
|
// perform scalar->scalar conversion
|
2016-12-30 19:49:43 -04:00
|
|
|
float v = ap->cast_to_float(info->type);
|
2017-01-10 02:07:53 -04:00
|
|
|
if (flags & CONVERT_FLAG_REVERSE) {
|
|
|
|
// convert a _REV parameter to a _REVERSED parameter
|
|
|
|
v = is_equal(v, -1.0f)?1:0;
|
|
|
|
}
|
2015-05-04 23:35:47 -03:00
|
|
|
if (!is_equal(v,ap2->cast_to_float(ptype))) {
|
2013-05-30 08:45:25 -03:00
|
|
|
// the value needs to change
|
2016-02-16 22:29:47 -04:00
|
|
|
set_value(ptype, ap2, v * scaler);
|
2013-05-30 08:45:25 -03:00
|
|
|
ap2->save();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// can't do vector<->scalar conversion, or different vector types
|
2022-03-21 06:36:54 -03:00
|
|
|
DEV_PRINTF("Bad conversion type '%s'\n", info->new_name);
|
2013-05-30 08:45:25 -03:00
|
|
|
}
|
|
|
|
}
|
2015-01-01 03:55:11 -04:00
|
|
|
#pragma GCC diagnostic pop
|
2013-05-30 08:45:25 -03:00
|
|
|
|
|
|
|
|
2023-12-13 17:51:31 -04:00
|
|
|
// convert old vehicle parameters to new object parameters
|
2017-01-10 02:07:53 -04:00
|
|
|
void AP_Param::convert_old_parameters(const struct ConversionInfo *conversion_table, uint8_t table_size, uint8_t flags)
|
2023-12-13 17:51:31 -04:00
|
|
|
{
|
2024-01-19 19:57:56 -04:00
|
|
|
convert_old_parameters_scaled(conversion_table, table_size, 1.0f, flags);
|
2023-12-13 17:51:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// convert old vehicle parameters to new object parameters with scaling - assumes all parameters will have the same scaling factor
|
|
|
|
void AP_Param::convert_old_parameters_scaled(const struct ConversionInfo *conversion_table, uint8_t table_size, float scaler, uint8_t flags)
|
2013-05-30 08:45:25 -03:00
|
|
|
{
|
|
|
|
for (uint8_t i=0; i<table_size; i++) {
|
2023-12-13 17:51:31 -04:00
|
|
|
convert_old_parameter(&conversion_table[i], scaler, flags);
|
2013-05-30 08:45:25 -03:00
|
|
|
}
|
2019-04-28 02:05:11 -03:00
|
|
|
// we need to flush here to prevent a later set_default_by_name()
|
|
|
|
// causing a save to be done on a converted parameter
|
|
|
|
flush();
|
2013-05-30 08:45:25 -03:00
|
|
|
}
|
2015-04-01 19:54:13 -03:00
|
|
|
|
2021-10-08 05:15:10 -03:00
|
|
|
// move all parameters from a class to a new location
|
|
|
|
// is_top_level: Is true if the class had its own top level key, param_key. It is false if the class was a subgroup
|
|
|
|
void AP_Param::convert_class(uint16_t param_key, void *object_pointer,
|
|
|
|
const struct AP_Param::GroupInfo *group_info,
|
2024-02-21 17:31:59 -04:00
|
|
|
uint16_t old_index, bool is_top_level)
|
2021-10-08 05:15:10 -03:00
|
|
|
{
|
|
|
|
const uint8_t group_shift = is_top_level ? 0 : 6;
|
|
|
|
|
|
|
|
for (uint8_t i=0; group_info[i].type != AP_PARAM_NONE; i++) {
|
|
|
|
struct ConversionInfo info;
|
|
|
|
info.old_key = param_key;
|
|
|
|
info.type = (ap_var_type)group_info[i].type;
|
|
|
|
info.new_name = nullptr;
|
2022-01-10 02:27:34 -04:00
|
|
|
|
|
|
|
uint16_t idx = group_info[i].idx;
|
|
|
|
if (group_shift != 0 && idx == 0) {
|
|
|
|
// Note: Index 0 is treated as 63 for group bit shifting purposes. See group_id()
|
|
|
|
idx = 63;
|
|
|
|
}
|
|
|
|
|
|
|
|
info.old_group_element = (idx << group_shift) + old_index;
|
2021-10-08 05:15:10 -03:00
|
|
|
|
|
|
|
uint8_t old_value[type_size(info.type)];
|
|
|
|
AP_Param *ap = (AP_Param *)&old_value[0];
|
|
|
|
|
|
|
|
if (!AP_Param::find_old_parameter(&info, ap)) {
|
|
|
|
// the parameter wasn't set in the old eeprom
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_Param *ap2 = (AP_Param *)(group_info[i].offset + (uint8_t *)object_pointer);
|
2022-03-28 02:00:55 -03:00
|
|
|
if (ap2->configured_in_storage()) {
|
|
|
|
// user has already set a value, or previous conversion was done
|
|
|
|
continue;
|
|
|
|
}
|
2021-10-08 05:15:10 -03:00
|
|
|
memcpy(ap2, ap, sizeof(old_value));
|
|
|
|
// and save
|
|
|
|
ap2->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
// we need to flush here to prevent a later set_default_by_name()
|
|
|
|
// causing a save to be done on a converted parameter
|
|
|
|
flush();
|
|
|
|
}
|
|
|
|
|
2024-02-26 19:51:19 -04:00
|
|
|
// convert an object which was stored in a vehicle's G2 into a new
|
|
|
|
// object in AP_Vehicle.cpp:
|
2024-02-21 07:23:06 -04:00
|
|
|
void AP_Param::convert_g2_objects(const void *g2, const G2ObjectConversion g2_conversions[], uint8_t num_conversions)
|
|
|
|
{
|
|
|
|
// Find G2's Top Level Key
|
|
|
|
ConversionInfo info;
|
|
|
|
if (!find_top_level_key_by_pointer(g2, info.old_key)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (uint8_t i=0; i<num_conversions; i++) {
|
|
|
|
const auto &c { g2_conversions[i] };
|
2024-02-21 17:31:59 -04:00
|
|
|
convert_class(info.old_key, c.object_pointer, c.var_info, c.old_index, false);
|
2024-02-21 07:23:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-27 07:54:14 -04:00
|
|
|
void AP_Param::convert_toplevel_objects(const TopLevelObjectConversion conversions[], uint8_t num_conversions)
|
|
|
|
{
|
|
|
|
for (uint8_t i=0; i<num_conversions; i++) {
|
|
|
|
const auto &c { conversions[i] };
|
|
|
|
convert_class(c.old_index, c.object_pointer, c.var_info, 0, true);
|
|
|
|
}
|
|
|
|
}
|
2024-02-21 07:23:06 -04:00
|
|
|
|
2020-01-13 00:40:03 -04:00
|
|
|
/*
|
|
|
|
convert width of a parameter, allowing update to wider scalar values
|
|
|
|
without changing the parameter indexes
|
|
|
|
*/
|
2024-04-16 15:23:22 -03:00
|
|
|
bool AP_Param::_convert_parameter_width(ap_var_type old_ptype, float scale_factor, bool bitmask)
|
2020-01-13 00:40:03 -04:00
|
|
|
{
|
|
|
|
if (configured_in_storage()) {
|
|
|
|
// already converted or set by the user
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t group_element = 0;
|
|
|
|
const struct GroupInfo *ginfo;
|
|
|
|
struct GroupNesting group_nesting {};
|
|
|
|
uint8_t idx;
|
|
|
|
const struct AP_Param::Info *info = find_var_info(&group_element, ginfo, group_nesting, &idx);
|
|
|
|
|
|
|
|
if (info == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// remember the type
|
|
|
|
ap_var_type new_ptype;
|
|
|
|
if (ginfo != nullptr) {
|
|
|
|
new_ptype = (ap_var_type)ginfo->type;
|
|
|
|
} else {
|
|
|
|
new_ptype = (ap_var_type)info->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the header we will use to scan for the variable
|
|
|
|
struct Param_header phdr;
|
|
|
|
phdr.type = old_ptype;
|
|
|
|
set_key(phdr, info->key);
|
|
|
|
phdr.group_element = group_element;
|
|
|
|
|
|
|
|
// scan EEPROM to find the right location
|
|
|
|
uint16_t pofs;
|
|
|
|
if (!scan(&phdr, &pofs)) {
|
|
|
|
// it isn't in storage
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// load the old value from EEPROM
|
|
|
|
uint8_t old_value[type_size(old_ptype)];
|
|
|
|
_storage.read_block(old_value, pofs+sizeof(phdr), sizeof(old_value));
|
|
|
|
|
|
|
|
AP_Param *old_ap = (AP_Param *)&old_value[0];
|
|
|
|
|
2024-04-16 15:23:22 -03:00
|
|
|
if (!bitmask) {
|
|
|
|
// Numeric conversion
|
|
|
|
// going via float is safe as the only time we would be converting
|
|
|
|
// from AP_Int32 is when converting to float
|
|
|
|
float old_float_value = old_ap->cast_to_float(old_ptype);
|
|
|
|
set_value(new_ptype, this, old_float_value*scale_factor);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Bitmask conversion, go via uint32
|
|
|
|
// int8 -1 should convert to int16 255
|
|
|
|
uint32_t mask;
|
|
|
|
switch (old_ptype) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
mask = (uint8_t)(*(AP_Int8*)old_ap);
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
mask = (uint16_t)(*(AP_Int16*)old_ap);
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
mask = (uint32_t)(*(AP_Int32*)old_ap);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (new_ptype) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
((AP_Int8 *)this)->set(mask);
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
((AP_Int16 *)this)->set(mask);
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
((AP_Int32 *)this)->set(mask);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 00:40:03 -04:00
|
|
|
|
|
|
|
// force save as the new type
|
|
|
|
save(true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-01 19:54:13 -03:00
|
|
|
/*
|
2015-08-10 04:25:29 -03:00
|
|
|
set a parameter to a float value
|
2015-04-01 19:54:13 -03:00
|
|
|
*/
|
2015-08-10 04:25:29 -03:00
|
|
|
void AP_Param::set_float(float value, enum ap_var_type var_type)
|
2015-04-01 19:54:13 -03:00
|
|
|
{
|
|
|
|
if (isnan(value) || isinf(value)) {
|
2015-08-10 04:25:29 -03:00
|
|
|
return;
|
2015-04-01 19:54:13 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// add a small amount before casting parameter values
|
|
|
|
// from float to integer to avoid truncating to the
|
|
|
|
// next lower integer value.
|
2015-04-24 00:57:36 -03:00
|
|
|
float rounding_addition = 0.01f;
|
2015-04-01 19:54:13 -03:00
|
|
|
|
|
|
|
// handle variables with standard type IDs
|
|
|
|
if (var_type == AP_PARAM_FLOAT) {
|
2015-08-10 04:25:29 -03:00
|
|
|
((AP_Float *)this)->set(value);
|
2015-04-01 19:54:13 -03:00
|
|
|
} else if (var_type == AP_PARAM_INT32) {
|
|
|
|
if (value < 0) rounding_addition = -rounding_addition;
|
|
|
|
float v = value+rounding_addition;
|
2022-01-19 10:57:30 -04:00
|
|
|
v = constrain_float(v, INT32_MIN, INT32_MAX);
|
2015-08-10 04:25:29 -03:00
|
|
|
((AP_Int32 *)this)->set(v);
|
2015-04-01 19:54:13 -03:00
|
|
|
} else if (var_type == AP_PARAM_INT16) {
|
|
|
|
if (value < 0) rounding_addition = -rounding_addition;
|
|
|
|
float v = value+rounding_addition;
|
2022-01-19 10:57:30 -04:00
|
|
|
v = constrain_float(v, INT16_MIN, INT16_MAX);
|
2015-08-10 04:25:29 -03:00
|
|
|
((AP_Int16 *)this)->set(v);
|
2015-04-01 19:54:13 -03:00
|
|
|
} else if (var_type == AP_PARAM_INT8) {
|
|
|
|
if (value < 0) rounding_addition = -rounding_addition;
|
|
|
|
float v = value+rounding_addition;
|
2022-01-19 10:57:30 -04:00
|
|
|
v = constrain_float(v, INT8_MIN, INT8_MAX);
|
2015-08-10 04:25:29 -03:00
|
|
|
((AP_Int8 *)this)->set(v);
|
2015-04-01 19:54:13 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-01 22:24:45 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
parse a parameter file line
|
|
|
|
*/
|
2019-08-19 07:05:33 -03:00
|
|
|
bool AP_Param::parse_param_line(char *line, char **vname, float &value, bool &read_only)
|
2015-04-01 22:24:45 -03:00
|
|
|
{
|
|
|
|
if (line[0] == '#') {
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
char *saveptr = nullptr;
|
2019-08-19 07:05:33 -03:00
|
|
|
/*
|
|
|
|
note that we need the \r\n as delimiters to prevent us getting
|
|
|
|
strings with line termination in the results
|
|
|
|
*/
|
|
|
|
char *pname = strtok_r(line, ", =\t\r\n", &saveptr);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (pname == nullptr) {
|
2015-04-01 22:24:45 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (strlen(pname) > AP_MAX_NAME_SIZE) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-10-15 19:54:55 -03:00
|
|
|
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
|
|
|
// Workaround to prevent FORMAT_VERSION in param file resulting in invalid
|
|
|
|
// EEPROM. For details, see: https://github.com/ArduPilot/ardupilot/issues/15579
|
|
|
|
if (strcmp(pname, "FORMAT_VERSION") == 0) {
|
|
|
|
::printf("Warning: Ignoring FORMAT_VERSION in param file\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-08-19 07:05:33 -03:00
|
|
|
const char *value_s = strtok_r(nullptr, ", =\t\r\n", &saveptr);
|
2016-10-30 02:24:21 -03:00
|
|
|
if (value_s == nullptr) {
|
2015-04-01 22:24:45 -03:00
|
|
|
return false;
|
|
|
|
}
|
2019-10-27 08:51:45 -03:00
|
|
|
value = strtof(value_s, NULL);
|
2015-04-01 22:24:45 -03:00
|
|
|
*vname = pname;
|
2019-08-19 07:05:33 -03:00
|
|
|
|
|
|
|
const char *flags_s = strtok_r(nullptr, ", =\t\r\n", &saveptr);
|
|
|
|
if (flags_s && strcmp(flags_s, "@READONLY") == 0) {
|
|
|
|
read_only = true;
|
|
|
|
} else {
|
|
|
|
read_only = false;
|
|
|
|
}
|
|
|
|
|
2015-04-01 22:24:45 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-11-09 02:45:58 -04:00
|
|
|
|
2024-01-17 21:03:33 -04:00
|
|
|
#if AP_PARAM_DEFAULTS_FILE_PARSING_ENABLED || AP_PARAM_DYNAMIC_ENABLED
|
2017-11-09 02:45:58 -04:00
|
|
|
|
2016-11-07 07:12:46 -04:00
|
|
|
// increments num_defaults for each default found in filename
|
2018-06-14 17:03:41 -03:00
|
|
|
bool AP_Param::count_defaults_in_file(const char *filename, uint16_t &num_defaults)
|
2015-04-01 22:24:45 -03:00
|
|
|
{
|
2022-02-21 20:08:24 -04:00
|
|
|
// try opening the file both in the posix filesystem and using AP::FS
|
|
|
|
int file_apfs = AP::FS().open(filename, O_RDONLY, true);
|
|
|
|
if (file_apfs == -1) {
|
2015-04-01 22:24:45 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
char line[100];
|
|
|
|
|
|
|
|
/*
|
|
|
|
work out how many parameter default structures to allocate
|
|
|
|
*/
|
2022-02-21 20:08:24 -04:00
|
|
|
while (AP::FS().fgets(line, sizeof(line)-1, file_apfs)) {
|
2015-04-01 22:24:45 -03:00
|
|
|
char *pname;
|
|
|
|
float value;
|
2019-08-19 07:05:33 -03:00
|
|
|
bool read_only;
|
|
|
|
if (!parse_param_line(line, &pname, value, read_only)) {
|
2015-04-01 22:24:45 -03:00
|
|
|
continue;
|
|
|
|
}
|
2017-01-22 06:42:54 -04:00
|
|
|
enum ap_var_type var_type;
|
|
|
|
if (!find(pname, &var_type)) {
|
2018-06-14 17:03:41 -03:00
|
|
|
continue;
|
2015-04-01 22:24:45 -03:00
|
|
|
}
|
|
|
|
num_defaults++;
|
|
|
|
}
|
2022-02-21 20:08:24 -04:00
|
|
|
AP::FS().close(file_apfs);
|
2015-04-01 22:24:45 -03:00
|
|
|
|
2016-11-07 06:29:30 -04:00
|
|
|
return true;
|
|
|
|
}
|
2015-04-01 22:24:45 -03:00
|
|
|
|
2023-08-19 18:32:34 -03:00
|
|
|
bool AP_Param::read_param_defaults_file(const char *filename, bool last_pass, uint16_t &idx)
|
2016-11-07 06:29:30 -04:00
|
|
|
{
|
2022-02-21 20:08:24 -04:00
|
|
|
// try opening the file both in the posix filesystem and using AP::FS
|
|
|
|
int file_apfs = AP::FS().open(filename, O_RDONLY, true);
|
|
|
|
if (file_apfs == -1) {
|
2015-10-20 18:37:00 -03:00
|
|
|
AP_HAL::panic("AP_Param: Failed to re-open defaults file");
|
2015-04-01 22:24:45 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-02-01 21:24:00 -04:00
|
|
|
bool done_all = true;
|
2016-11-07 06:29:30 -04:00
|
|
|
char line[100];
|
2022-02-21 20:08:24 -04:00
|
|
|
while (AP::FS().fgets(line, sizeof(line)-1, file_apfs)) {
|
2015-04-01 22:24:45 -03:00
|
|
|
char *pname;
|
|
|
|
float value;
|
2019-08-19 07:05:33 -03:00
|
|
|
bool read_only;
|
|
|
|
if (!parse_param_line(line, &pname, value, read_only)) {
|
2015-04-01 22:24:45 -03:00
|
|
|
continue;
|
|
|
|
}
|
2017-01-22 06:42:54 -04:00
|
|
|
enum ap_var_type var_type;
|
|
|
|
AP_Param *vp = find(pname, &var_type);
|
|
|
|
if (!vp) {
|
2018-06-26 12:54:36 -03:00
|
|
|
if (last_pass) {
|
2021-09-15 05:24:22 -03:00
|
|
|
#if ENABLE_DEBUG
|
2018-06-26 12:54:36 -03:00
|
|
|
::printf("Ignored unknown param %s in defaults file %s\n",
|
|
|
|
pname, filename);
|
|
|
|
hal.console->printf(
|
|
|
|
"Ignored unknown param %s in defaults file %s\n",
|
|
|
|
pname, filename);
|
2021-09-15 05:24:22 -03:00
|
|
|
#endif
|
2018-06-26 12:54:36 -03:00
|
|
|
}
|
2024-02-01 21:24:00 -04:00
|
|
|
done_all = false;
|
2017-01-09 05:52:36 -04:00
|
|
|
continue;
|
2015-04-01 22:24:45 -03:00
|
|
|
}
|
2023-08-19 18:32:34 -03:00
|
|
|
if (idx >= param_overrides_len) {
|
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::flow_of_control);
|
|
|
|
break;
|
|
|
|
}
|
2017-01-22 06:42:54 -04:00
|
|
|
param_overrides[idx].object_ptr = vp;
|
2015-04-01 22:24:45 -03:00
|
|
|
param_overrides[idx].value = value;
|
2019-08-19 07:05:33 -03:00
|
|
|
param_overrides[idx].read_only = read_only;
|
|
|
|
if (read_only) {
|
|
|
|
num_read_only++;
|
|
|
|
}
|
2015-04-01 22:24:45 -03:00
|
|
|
idx++;
|
2017-01-09 23:38:45 -04:00
|
|
|
if (!vp->configured_in_storage()) {
|
|
|
|
vp->set_float(value, var_type);
|
|
|
|
}
|
2015-04-01 22:24:45 -03:00
|
|
|
}
|
2022-02-21 20:08:24 -04:00
|
|
|
AP::FS().close(file_apfs);
|
|
|
|
|
2024-02-01 21:24:00 -04:00
|
|
|
done_all_default_params = done_all;
|
|
|
|
|
2016-11-07 06:29:30 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
load a default set of parameters from a file
|
|
|
|
*/
|
2018-06-26 12:54:36 -03:00
|
|
|
bool AP_Param::load_defaults_file(const char *filename, bool last_pass)
|
2016-11-07 06:29:30 -04:00
|
|
|
{
|
|
|
|
if (filename == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-07 07:12:46 -04:00
|
|
|
char *mutable_filename = strdup(filename);
|
|
|
|
if (mutable_filename == nullptr) {
|
|
|
|
AP_HAL::panic("AP_Param: Failed to allocate mutable string");
|
|
|
|
}
|
|
|
|
|
2016-11-07 06:29:30 -04:00
|
|
|
uint16_t num_defaults = 0;
|
2016-11-07 07:12:46 -04:00
|
|
|
char *saveptr = nullptr;
|
|
|
|
for (char *pname = strtok_r(mutable_filename, ",", &saveptr);
|
|
|
|
pname != nullptr;
|
|
|
|
pname = strtok_r(nullptr, ",", &saveptr)) {
|
2018-06-14 17:03:41 -03:00
|
|
|
if (!count_defaults_in_file(pname, num_defaults)) {
|
2016-11-07 07:12:46 -04:00
|
|
|
free(mutable_filename);
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-07 06:29:30 -04:00
|
|
|
}
|
2016-11-07 07:12:46 -04:00
|
|
|
free(mutable_filename);
|
2016-11-07 06:29:30 -04:00
|
|
|
|
2019-05-07 06:04:11 -03:00
|
|
|
delete[] param_overrides;
|
2023-08-19 18:32:34 -03:00
|
|
|
param_overrides_len = 0;
|
2016-11-07 06:29:30 -04:00
|
|
|
num_param_overrides = 0;
|
2019-08-19 07:05:33 -03:00
|
|
|
num_read_only = 0;
|
2016-11-07 06:29:30 -04:00
|
|
|
|
2019-05-07 06:04:11 -03:00
|
|
|
param_overrides = new param_override[num_defaults];
|
2016-11-07 06:29:30 -04:00
|
|
|
if (param_overrides == nullptr) {
|
|
|
|
AP_HAL::panic("AP_Param: Failed to allocate overrides");
|
|
|
|
return false;
|
|
|
|
}
|
2023-08-19 18:32:34 -03:00
|
|
|
param_overrides_len = num_defaults;
|
2016-11-07 06:29:30 -04:00
|
|
|
|
2019-05-07 06:04:11 -03:00
|
|
|
if (num_defaults == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-11-07 07:12:46 -04:00
|
|
|
saveptr = nullptr;
|
|
|
|
mutable_filename = strdup(filename);
|
|
|
|
if (mutable_filename == nullptr) {
|
|
|
|
AP_HAL::panic("AP_Param: Failed to allocate mutable string");
|
|
|
|
}
|
2023-08-19 18:32:34 -03:00
|
|
|
uint16_t idx = 0;
|
2016-11-07 07:12:46 -04:00
|
|
|
for (char *pname = strtok_r(mutable_filename, ",", &saveptr);
|
|
|
|
pname != nullptr;
|
|
|
|
pname = strtok_r(nullptr, ",", &saveptr)) {
|
2023-08-19 18:32:34 -03:00
|
|
|
if (!read_param_defaults_file(pname, last_pass, idx)) {
|
2016-11-07 07:12:46 -04:00
|
|
|
free(mutable_filename);
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-07 06:29:30 -04:00
|
|
|
}
|
2016-11-07 07:12:46 -04:00
|
|
|
free(mutable_filename);
|
2015-04-01 22:24:45 -03:00
|
|
|
|
|
|
|
num_param_overrides = num_defaults;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2024-01-14 20:34:05 -04:00
|
|
|
#endif // AP_PARAM_DEFAULTS_FILE_PARSING_ENABLED
|
2015-04-01 22:24:45 -03:00
|
|
|
|
2024-02-14 21:23:10 -04:00
|
|
|
#if AP_PARAM_MAX_EMBEDDED_PARAM > 0 || defined(HAL_HAVE_AP_ROMFS_EMBEDDED_H)
|
2017-11-09 02:45:58 -04:00
|
|
|
/*
|
2024-01-17 22:35:43 -04:00
|
|
|
count the number of parameter defaults present in supplied string
|
2017-11-09 02:45:58 -04:00
|
|
|
*/
|
2024-01-17 22:35:43 -04:00
|
|
|
bool AP_Param::count_param_defaults(const volatile char *ptr, int32_t length, uint16_t &count)
|
2017-11-09 02:45:58 -04:00
|
|
|
{
|
|
|
|
count = 0;
|
|
|
|
|
2022-10-04 22:32:24 -03:00
|
|
|
while (length>0) {
|
2017-11-09 02:45:58 -04:00
|
|
|
char line[100];
|
|
|
|
char *pname;
|
|
|
|
float value;
|
2019-08-19 07:05:33 -03:00
|
|
|
bool read_only;
|
2017-11-09 02:45:58 -04:00
|
|
|
uint16_t i;
|
2022-10-04 22:32:24 -03:00
|
|
|
uint16_t n = length;
|
2017-11-09 02:45:58 -04:00
|
|
|
for (i=0;i<n;i++) {
|
|
|
|
if (ptr[i] == '\n') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-10-04 22:32:24 -03:00
|
|
|
|
|
|
|
uint16_t linelen = MIN(i,sizeof(line)-1);
|
|
|
|
memcpy(line, (void *)ptr, linelen);
|
|
|
|
line[linelen] = 0;
|
2017-11-09 02:45:58 -04:00
|
|
|
|
|
|
|
length -= i+1;
|
|
|
|
ptr += i+1;
|
|
|
|
|
|
|
|
if (line[0] == '#' || line[0] == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-19 07:05:33 -03:00
|
|
|
if (!parse_param_line(line, &pname, value, read_only)) {
|
2017-11-09 02:45:58 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ap_var_type var_type;
|
|
|
|
if (!find(pname, &var_type)) {
|
2018-06-14 17:03:41 -03:00
|
|
|
continue;
|
2017-11-09 02:45:58 -04:00
|
|
|
}
|
2018-06-14 17:03:41 -03:00
|
|
|
|
2017-11-09 02:45:58 -04:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-01-17 22:35:43 -04:00
|
|
|
/*
|
|
|
|
* load parameter defaults from supplied string
|
|
|
|
*/
|
|
|
|
void AP_Param::load_param_defaults(const volatile char *ptr, int32_t length, bool last_pass)
|
2017-11-09 02:45:58 -04:00
|
|
|
{
|
2019-05-07 06:04:11 -03:00
|
|
|
delete[] param_overrides;
|
|
|
|
param_overrides = nullptr;
|
2023-08-19 18:32:34 -03:00
|
|
|
param_overrides_len = 0;
|
2017-11-09 02:45:58 -04:00
|
|
|
num_param_overrides = 0;
|
2019-08-19 07:05:33 -03:00
|
|
|
num_read_only = 0;
|
2019-05-07 06:04:11 -03:00
|
|
|
|
2017-11-09 02:45:58 -04:00
|
|
|
uint16_t num_defaults = 0;
|
2024-01-17 22:35:43 -04:00
|
|
|
if (!count_param_defaults(ptr, length, num_defaults)) {
|
2017-11-09 02:45:58 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-07 06:04:11 -03:00
|
|
|
param_overrides = new param_override[num_defaults];
|
2017-11-09 02:45:58 -04:00
|
|
|
if (param_overrides == nullptr) {
|
|
|
|
AP_HAL::panic("AP_Param: Failed to allocate overrides");
|
|
|
|
return;
|
|
|
|
}
|
2019-05-07 06:04:11 -03:00
|
|
|
|
2023-08-19 18:32:34 -03:00
|
|
|
param_overrides_len = num_defaults;
|
|
|
|
|
2017-11-09 02:45:58 -04:00
|
|
|
uint16_t idx = 0;
|
|
|
|
|
2022-10-04 22:32:24 -03:00
|
|
|
while (idx < num_defaults && length > 0) {
|
2017-11-09 02:45:58 -04:00
|
|
|
char line[100];
|
|
|
|
char *pname;
|
|
|
|
float value;
|
2019-08-19 07:05:33 -03:00
|
|
|
bool read_only;
|
2017-11-09 02:45:58 -04:00
|
|
|
uint16_t i;
|
2022-10-04 22:32:24 -03:00
|
|
|
uint16_t n = length;
|
2017-11-09 02:45:58 -04:00
|
|
|
for (i=0;i<n;i++) {
|
|
|
|
if (ptr[i] == '\n') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-10-04 22:32:24 -03:00
|
|
|
|
|
|
|
uint16_t linelen = MIN(i,sizeof(line)-1);
|
|
|
|
memcpy(line, (void *)ptr, linelen);
|
|
|
|
line[linelen] = 0;
|
|
|
|
|
2017-11-09 02:45:58 -04:00
|
|
|
length -= i+1;
|
|
|
|
ptr += i+1;
|
|
|
|
|
|
|
|
if (line[0] == '#' || line[0] == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-19 07:05:33 -03:00
|
|
|
if (!parse_param_line(line, &pname, value, read_only)) {
|
2017-11-09 02:45:58 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
enum ap_var_type var_type;
|
|
|
|
AP_Param *vp = find(pname, &var_type);
|
|
|
|
if (!vp) {
|
2018-06-26 12:54:36 -03:00
|
|
|
if (last_pass) {
|
2021-09-15 05:24:22 -03:00
|
|
|
#if ENABLE_DEBUG
|
2018-06-26 12:54:36 -03:00
|
|
|
::printf("Ignored unknown param %s from embedded region (offset=%u)\n",
|
2018-07-06 20:30:00 -03:00
|
|
|
pname, unsigned(ptr - param_defaults_data.data));
|
2018-06-26 12:54:36 -03:00
|
|
|
hal.console->printf(
|
|
|
|
"Ignored unknown param %s from embedded region (offset=%u)\n",
|
2018-07-06 20:30:00 -03:00
|
|
|
pname, unsigned(ptr - param_defaults_data.data));
|
2021-09-15 05:24:22 -03:00
|
|
|
#endif
|
2018-06-26 12:54:36 -03:00
|
|
|
}
|
2017-11-09 02:45:58 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
param_overrides[idx].object_ptr = vp;
|
|
|
|
param_overrides[idx].value = value;
|
2019-08-19 07:05:33 -03:00
|
|
|
param_overrides[idx].read_only = read_only;
|
|
|
|
if (read_only) {
|
|
|
|
num_read_only++;
|
|
|
|
}
|
2017-11-09 02:45:58 -04:00
|
|
|
idx++;
|
|
|
|
if (!vp->configured_in_storage()) {
|
|
|
|
vp->set_float(value, var_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
num_param_overrides = num_defaults;
|
|
|
|
}
|
2024-02-14 21:23:10 -04:00
|
|
|
#endif // AP_PARAM_MAX_EMBEDDED_PARAM > 0 || defined(HAL_HAVE_AP_ROMFS_EMBEDDED_H)
|
|
|
|
|
|
|
|
|
|
|
|
#if AP_PARAM_MAX_EMBEDDED_PARAM > 0
|
|
|
|
/*
|
|
|
|
* load a default set of parameters from a embedded parameter region
|
|
|
|
* @last_pass: if this is the last pass on defaults - unknown parameters are
|
|
|
|
* ignored but if this is set a warning will be emitted
|
|
|
|
*/
|
|
|
|
void AP_Param::load_embedded_param_defaults(bool last_pass)
|
|
|
|
{
|
|
|
|
load_param_defaults(param_defaults_data.data, param_defaults_data.length, last_pass);
|
|
|
|
}
|
|
|
|
#endif // AP_PARAM_MAX_EMBEDDED_PARAM > 0
|
|
|
|
|
2017-11-09 02:45:58 -04:00
|
|
|
|
2015-04-01 22:24:45 -03:00
|
|
|
/*
|
|
|
|
find a default value given a pointer to a default value in flash
|
|
|
|
*/
|
2022-12-29 22:14:05 -04:00
|
|
|
float AP_Param::get_default_value(const AP_Param *vp, const struct GroupInfo &info)
|
|
|
|
{
|
|
|
|
for (uint16_t i=0; i<num_param_overrides; i++) {
|
|
|
|
if (vp == param_overrides[i].object_ptr) {
|
|
|
|
return param_overrides[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((info.flags & AP_PARAM_FLAG_DEFAULT_POINTER) != 0) {
|
|
|
|
return *((float*)((ptrdiff_t)vp - info.def_value_offset));
|
|
|
|
}
|
|
|
|
return info.def_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AP_Param::get_default_value(const AP_Param *vp, const struct Info &info)
|
2015-04-01 22:24:45 -03:00
|
|
|
{
|
|
|
|
for (uint16_t i=0; i<num_param_overrides; i++) {
|
2017-01-22 06:42:54 -04:00
|
|
|
if (vp == param_overrides[i].object_ptr) {
|
2015-04-01 22:24:45 -03:00
|
|
|
return param_overrides[i].value;
|
|
|
|
}
|
|
|
|
}
|
2022-12-29 22:14:05 -04:00
|
|
|
if ((info.flags & AP_PARAM_FLAG_DEFAULT_POINTER) != 0) {
|
|
|
|
return *((float*)((ptrdiff_t)vp - info.def_value_offset));
|
|
|
|
}
|
|
|
|
return info.def_value;
|
2015-04-01 22:24:45 -03:00
|
|
|
}
|
|
|
|
|
2015-11-08 23:27:39 -04:00
|
|
|
|
2016-03-16 03:03:30 -03:00
|
|
|
void AP_Param::send_parameter(const char *name, enum ap_var_type var_type, uint8_t idx) const
|
2015-11-08 23:27:39 -04:00
|
|
|
{
|
2016-03-16 03:03:30 -03:00
|
|
|
if (idx != 0 && var_type == AP_PARAM_VECTOR3F) {
|
|
|
|
var_type = AP_PARAM_FLOAT;
|
|
|
|
}
|
|
|
|
if (var_type > AP_PARAM_VECTOR3F) {
|
|
|
|
// invalid
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (var_type != AP_PARAM_VECTOR3F) {
|
2015-11-08 23:27:39 -04:00
|
|
|
// nice and simple for scalar types
|
2019-05-26 22:32:42 -03:00
|
|
|
GCS_SEND_PARAM(name, var_type, cast_to_float(var_type));
|
2015-11-08 23:27:39 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-16 03:03:30 -03:00
|
|
|
// for vectors we need to send 3 messages. Note that we also come here for the case
|
|
|
|
// of a set of the first element of a AP_Vector3f. This happens as the ap->save() call can't
|
|
|
|
// distinguish between a vector and scalar save. It means that setting first element of a vector
|
|
|
|
// via MAVLink results in sending all 3 elements to the GCS
|
2021-08-18 08:42:17 -03:00
|
|
|
#if HAL_GCS_ENABLED
|
2016-02-12 13:40:00 -04:00
|
|
|
const Vector3f &v = ((AP_Vector3f *)this)->get();
|
2016-03-16 03:03:30 -03:00
|
|
|
char name2[AP_MAX_NAME_SIZE+1];
|
|
|
|
strncpy(name2, name, AP_MAX_NAME_SIZE);
|
|
|
|
name2[AP_MAX_NAME_SIZE] = 0;
|
|
|
|
char &name_axis = name2[strlen(name)-1];
|
|
|
|
|
|
|
|
name_axis = 'X';
|
2019-05-26 22:32:42 -03:00
|
|
|
GCS_SEND_PARAM(name2, AP_PARAM_FLOAT, v.x);
|
2015-11-08 23:27:39 -04:00
|
|
|
name_axis = 'Y';
|
2019-05-26 22:32:42 -03:00
|
|
|
GCS_SEND_PARAM(name2, AP_PARAM_FLOAT, v.y);
|
2015-11-08 23:27:39 -04:00
|
|
|
name_axis = 'Z';
|
2019-05-26 22:32:42 -03:00
|
|
|
GCS_SEND_PARAM(name2, AP_PARAM_FLOAT, v.z);
|
2021-08-18 08:42:17 -03:00
|
|
|
#endif // HAL_GCS_ENABLED
|
2015-11-08 23:27:39 -04:00
|
|
|
}
|
2016-01-05 23:41:07 -04:00
|
|
|
|
|
|
|
/*
|
2017-04-29 01:05:26 -03:00
|
|
|
return count of all scalar parameters.
|
|
|
|
Note that this function may be called from the IO thread, so needs
|
|
|
|
to be thread safe
|
2016-01-05 23:41:07 -04:00
|
|
|
*/
|
|
|
|
uint16_t AP_Param::count_parameters(void)
|
|
|
|
{
|
|
|
|
// if we haven't cached the parameter count yet...
|
2020-04-18 20:24:54 -03:00
|
|
|
WITH_SEMAPHORE(_count_sem);
|
|
|
|
if (_parameter_count != 0 &&
|
|
|
|
_count_marker == _count_marker_done) {
|
|
|
|
return _parameter_count;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
cope with another thread invalidating the count while we are
|
|
|
|
counting
|
|
|
|
*/
|
|
|
|
uint8_t limit = 4;
|
|
|
|
while ((_parameter_count == 0 ||
|
|
|
|
_count_marker != _count_marker_done) &&
|
|
|
|
limit--) {
|
2016-01-05 23:41:07 -04:00
|
|
|
AP_Param *vp;
|
2021-01-21 06:55:55 -04:00
|
|
|
AP_Param::ParamToken token {};
|
2020-04-18 20:24:54 -03:00
|
|
|
uint16_t count = 0;
|
|
|
|
uint16_t marker = _count_marker;
|
2016-01-05 23:41:07 -04:00
|
|
|
|
2018-03-31 11:40:41 -03:00
|
|
|
for (vp = AP_Param::first(&token, nullptr);
|
|
|
|
vp != nullptr;
|
|
|
|
vp = AP_Param::next_scalar(&token, nullptr)) {
|
2020-04-18 20:24:54 -03:00
|
|
|
count++;
|
2018-03-31 11:40:41 -03:00
|
|
|
}
|
2020-04-18 20:24:54 -03:00
|
|
|
_parameter_count = count;
|
|
|
|
_count_marker_done = marker;
|
2016-01-05 23:41:07 -04:00
|
|
|
}
|
2020-04-18 20:24:54 -03:00
|
|
|
return _parameter_count;
|
2016-01-05 23:41:07 -04:00
|
|
|
}
|
|
|
|
|
2020-04-18 19:36:37 -03:00
|
|
|
/*
|
|
|
|
invalidate parameter count cache
|
|
|
|
*/
|
|
|
|
void AP_Param::invalidate_count(void)
|
|
|
|
{
|
2020-04-18 20:24:54 -03:00
|
|
|
// we don't take the semaphore here as we don't want to block. The
|
|
|
|
// not-equal test is strong enough to ensure we get the right
|
|
|
|
// answer
|
|
|
|
_count_marker++;
|
2020-04-18 19:36:37 -03:00
|
|
|
}
|
|
|
|
|
2016-04-01 02:39:51 -03:00
|
|
|
/*
|
|
|
|
set a default value by name
|
|
|
|
*/
|
|
|
|
bool AP_Param::set_default_by_name(const char *name, float value)
|
|
|
|
{
|
|
|
|
enum ap_var_type vtype;
|
|
|
|
AP_Param *vp = find(name, &vtype);
|
|
|
|
if (vp == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (vtype) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
((AP_Int8 *)vp)->set_default(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
((AP_Int16 *)vp)->set_default(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
((AP_Int32 *)vp)->set_default(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
((AP_Float *)vp)->set_default(value);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// not a supported type
|
|
|
|
return false;
|
|
|
|
}
|
2017-10-20 15:10:09 -03:00
|
|
|
|
2018-11-28 20:54:15 -04:00
|
|
|
/*
|
|
|
|
set parameter defaults from a defaults_struct table
|
|
|
|
sends GCS message and panics (in SITL only) if parameter is not found
|
|
|
|
*/
|
|
|
|
void AP_Param::set_defaults_from_table(const struct defaults_table_struct *table, uint8_t count)
|
|
|
|
{
|
|
|
|
for (uint8_t i=0; i<count; i++) {
|
|
|
|
if (!AP_Param::set_default_by_name(table[i].name, table[i].value)) {
|
2021-11-22 04:20:14 -04:00
|
|
|
AP_BoardConfig::config_error("param deflt fail:%s", table[i].name);
|
2018-11-28 20:54:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-20 15:10:09 -03:00
|
|
|
/*
|
|
|
|
set a value by name
|
|
|
|
*/
|
|
|
|
bool AP_Param::set_by_name(const char *name, float value)
|
|
|
|
{
|
|
|
|
enum ap_var_type vtype;
|
|
|
|
AP_Param *vp = find(name, &vtype);
|
|
|
|
if (vp == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (vtype) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
((AP_Int8 *)vp)->set(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
((AP_Int16 *)vp)->set(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
((AP_Int32 *)vp)->set(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
((AP_Float *)vp)->set(value);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// not a supported type
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-25 12:21:57 -04:00
|
|
|
/*
|
|
|
|
get a value by name
|
|
|
|
*/
|
|
|
|
bool AP_Param::get(const char *name, float &value)
|
|
|
|
{
|
|
|
|
enum ap_var_type vtype;
|
|
|
|
AP_Param *vp = find(name, &vtype);
|
|
|
|
if (vp == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (vtype) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
value = ((AP_Int8 *)vp)->get();
|
|
|
|
break;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
value = ((AP_Int16 *)vp)->get();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
value = ((AP_Int32 *)vp)->get();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
value = ((AP_Float *)vp)->get();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// not a supported type
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-20 15:10:09 -03:00
|
|
|
/*
|
|
|
|
set and save a value by name
|
|
|
|
*/
|
|
|
|
bool AP_Param::set_and_save_by_name(const char *name, float value)
|
|
|
|
{
|
|
|
|
enum ap_var_type vtype;
|
|
|
|
AP_Param *vp = find(name, &vtype);
|
|
|
|
if (vp == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (vtype) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
((AP_Int8 *)vp)->set_and_save(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
((AP_Int16 *)vp)->set_and_save(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
((AP_Int32 *)vp)->set_and_save(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
((AP_Float *)vp)->set_and_save(value);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// not a supported type
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-24 00:42:09 -04:00
|
|
|
|
2021-04-07 22:11:13 -03:00
|
|
|
/*
|
|
|
|
set and save a value by name
|
|
|
|
*/
|
|
|
|
bool AP_Param::set_and_save_by_name_ifchanged(const char *name, float value)
|
|
|
|
{
|
|
|
|
enum ap_var_type vtype;
|
|
|
|
AP_Param *vp = find(name, &vtype);
|
|
|
|
if (vp == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (vtype) {
|
|
|
|
case AP_PARAM_INT8:
|
|
|
|
((AP_Int8 *)vp)->set_and_save_ifchanged(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT16:
|
|
|
|
((AP_Int16 *)vp)->set_and_save_ifchanged(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_INT32:
|
|
|
|
((AP_Int32 *)vp)->set_and_save_ifchanged(value);
|
|
|
|
return true;
|
|
|
|
case AP_PARAM_FLOAT:
|
|
|
|
((AP_Float *)vp)->set_and_save_ifchanged(value);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// not a supported type
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-06-13 13:04:41 -03:00
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
void AP_Param::check_default(AP_Param *ap, float *default_value)
|
|
|
|
{
|
|
|
|
if (default_value == nullptr || ap == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (default_list != nullptr) {
|
|
|
|
for (defaults_list *item = default_list; item; item = item->next) {
|
|
|
|
if (item->ap == ap) {
|
|
|
|
*default_value = item->val;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-29 22:19:56 -04:00
|
|
|
void AP_Param::add_default(AP_Param *ap, float v)
|
2022-06-13 13:04:41 -03:00
|
|
|
{
|
2022-12-29 22:19:56 -04:00
|
|
|
// Embedded defaults trump runtime, don't allow override
|
|
|
|
for (uint16_t i=0; i<num_param_overrides; i++) {
|
|
|
|
if (ap == param_overrides[i].object_ptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (default_list != nullptr) {
|
2022-06-13 13:04:41 -03:00
|
|
|
// check is param is already in list
|
2022-12-29 22:19:56 -04:00
|
|
|
for (defaults_list *item = default_list; item; item = item->next) {
|
2022-06-13 13:04:41 -03:00
|
|
|
// update existing entry
|
|
|
|
if (item->ap == ap) {
|
|
|
|
item->val = v;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add to list
|
|
|
|
defaults_list *new_item = new defaults_list;
|
|
|
|
if (new_item == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
new_item->ap = ap;
|
|
|
|
new_item->val = v;
|
2022-12-29 22:19:56 -04:00
|
|
|
new_item->next = default_list;
|
|
|
|
default_list = new_item;
|
2022-06-13 13:04:41 -03:00
|
|
|
}
|
|
|
|
#endif // AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
|
|
|
|
|
2018-01-24 00:42:09 -04:00
|
|
|
#if AP_PARAM_KEY_DUMP
|
|
|
|
/*
|
|
|
|
do not remove this show_all() code, it is essential for debugging
|
|
|
|
and creating conversion tables
|
|
|
|
*/
|
|
|
|
|
|
|
|
// print the value of all variables
|
|
|
|
void AP_Param::show(const AP_Param *ap, const char *s,
|
|
|
|
enum ap_var_type type, AP_HAL::BetterStream *port)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case AP_PARAM_INT8:
|
2021-04-02 19:40:26 -03:00
|
|
|
::printf("%s: %d\n", s, (int)((AP_Int8 *)ap)->get());
|
2018-01-24 00:42:09 -04:00
|
|
|
break;
|
|
|
|
case AP_PARAM_INT16:
|
2021-04-02 19:40:26 -03:00
|
|
|
::printf("%s: %d\n", s, (int)((AP_Int16 *)ap)->get());
|
2018-01-24 00:42:09 -04:00
|
|
|
break;
|
|
|
|
case AP_PARAM_INT32:
|
2021-04-02 19:40:26 -03:00
|
|
|
::printf("%s: %ld\n", s, (long)((AP_Int32 *)ap)->get());
|
2018-01-24 00:42:09 -04:00
|
|
|
break;
|
|
|
|
case AP_PARAM_FLOAT:
|
2021-04-02 19:40:26 -03:00
|
|
|
::printf("%s: %f\n", s, (double)((AP_Float *)ap)->get());
|
2018-01-24 00:42:09 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// print the value of all variables
|
|
|
|
void AP_Param::show(const AP_Param *ap, const ParamToken &token,
|
|
|
|
enum ap_var_type type, AP_HAL::BetterStream *port)
|
|
|
|
{
|
|
|
|
char s[AP_MAX_NAME_SIZE+1];
|
|
|
|
ap->copy_name_token(token, s, sizeof(s), true);
|
|
|
|
s[AP_MAX_NAME_SIZE] = 0;
|
|
|
|
show(ap, s, type, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
// print the value of all variables
|
|
|
|
void AP_Param::show_all(AP_HAL::BetterStream *port, bool showKeyValues)
|
|
|
|
{
|
|
|
|
ParamToken token;
|
|
|
|
AP_Param *ap;
|
|
|
|
enum ap_var_type type;
|
2022-06-13 13:04:41 -03:00
|
|
|
float default_value = nanf("0x4152"); // from logger quiet_nanf
|
2018-01-24 00:42:09 -04:00
|
|
|
|
2022-06-13 13:04:41 -03:00
|
|
|
for (ap=AP_Param::first(&token, &type, &default_value);
|
2018-01-24 00:42:09 -04:00
|
|
|
ap;
|
2022-06-13 13:04:41 -03:00
|
|
|
ap=AP_Param::next_scalar(&token, &type, &default_value)) {
|
2018-01-24 00:42:09 -04:00
|
|
|
if (showKeyValues) {
|
2022-06-13 13:04:41 -03:00
|
|
|
::printf("Key %u: Index %u: GroupElement %u : Default %f :", (unsigned)var_info(token.key).key, (unsigned)token.idx, (unsigned)token.group_element, default_value);
|
|
|
|
default_value = nanf("0x4152");
|
2018-01-24 00:42:09 -04:00
|
|
|
}
|
|
|
|
show(ap, token, type, port);
|
2019-04-10 22:54:57 -03:00
|
|
|
hal.scheduler->delay(1);
|
2018-01-24 00:42:09 -04:00
|
|
|
}
|
2023-01-02 21:29:29 -04:00
|
|
|
|
|
|
|
#if AP_PARAM_DEFAULTS_ENABLED
|
|
|
|
uint16_t list_len = 0;
|
|
|
|
if (default_list != nullptr) {
|
|
|
|
for (defaults_list *item = default_list; item; item = item->next) {
|
|
|
|
list_len++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
::printf("Defaults list containts %i params (%li bytes)\n", list_len, list_len*sizeof(defaults_list));
|
|
|
|
#endif
|
2018-01-24 00:42:09 -04:00
|
|
|
}
|
|
|
|
#endif // AP_PARAM_KEY_DUMP
|
|
|
|
|
2022-01-07 01:25:38 -04:00
|
|
|
|
|
|
|
#if AP_PARAM_DYNAMIC_ENABLED
|
|
|
|
/*
|
|
|
|
allow for dynamically added parameter tables from scripts
|
|
|
|
|
|
|
|
The layout we create is as follows:
|
|
|
|
- a top level Info with the given prefix, using one of the 10 possible slots in _var_info_dynamic
|
|
|
|
- a dynamically allocated GroupInfo table, never freed, of size (num_params+2)
|
|
|
|
- the GroupInfo table has an initial AP_Int32 hidden entry with a 32 bit CRC of the prefix
|
|
|
|
- the last GroupInfo is a footer
|
|
|
|
*/
|
|
|
|
bool AP_Param::add_table(uint8_t _key, const char *prefix, uint8_t num_params)
|
|
|
|
{
|
|
|
|
// check if the key already exists. We only check base params to allow
|
|
|
|
// for scripting reload without a conflict
|
|
|
|
uint16_t key = uint16_t(_key) + AP_PARAM_DYNAMIC_KEY_BASE;
|
|
|
|
for (uint16_t i=0; i<_num_vars_base; i++) {
|
|
|
|
if (var_info(i).key == key) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (num_params > 63) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we use a crc of the prefix to ensure the table key isn't re-used
|
|
|
|
const int32_t crc = int32_t(crc32_small(0, (const uint8_t *)prefix, strlen(prefix)));
|
|
|
|
int32_t current_crc;
|
|
|
|
if (load_int32(key, 0, current_crc) && current_crc != crc) {
|
|
|
|
// crc mismatch, we have a conflict with an existing use of this key
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the dynamic table if needed. This is never freed
|
|
|
|
if (_var_info_dynamic == nullptr) {
|
|
|
|
_var_info_dynamic = (Info *)calloc(AP_PARAM_MAX_DYNAMIC, sizeof(struct Info));
|
|
|
|
if (_var_info_dynamic == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (uint8_t i=0; i<AP_PARAM_MAX_DYNAMIC; i++) {
|
|
|
|
auto &info = _var_info_dynamic[i];
|
|
|
|
info.type = AP_PARAM_NONE;
|
|
|
|
info.name = _empty_string;
|
|
|
|
info.key = 0xFFFF;
|
|
|
|
info.ptr = nullptr;
|
|
|
|
info.group_info = nullptr;
|
|
|
|
info.flags = 0;
|
|
|
|
}
|
|
|
|
// make tables available
|
|
|
|
_num_vars += AP_PARAM_MAX_DYNAMIC;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find existing key (allows for script reload)
|
|
|
|
uint8_t i;
|
|
|
|
for (i=0; i<AP_PARAM_MAX_DYNAMIC; i++) {
|
|
|
|
auto &info = _var_info_dynamic[i];
|
|
|
|
if (info.type != AP_PARAM_NONE && info.key == key) {
|
|
|
|
if (_dynamic_table_sizes[i] != 0 &&
|
|
|
|
num_params > _dynamic_table_sizes[i]) {
|
|
|
|
// can't expand the table at runtime
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (strcmp(prefix, info.name) != 0) {
|
|
|
|
// prefix has changed, reject as two scripts running
|
|
|
|
// with the same key
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == AP_PARAM_MAX_DYNAMIC) {
|
|
|
|
// find an unused slot
|
|
|
|
for (i=0; i<AP_PARAM_MAX_DYNAMIC; i++) {
|
|
|
|
auto &info = _var_info_dynamic[i];
|
|
|
|
if (info.type == AP_PARAM_NONE ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == AP_PARAM_MAX_DYNAMIC) {
|
|
|
|
// no empty slots
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &info = _var_info_dynamic[i];
|
|
|
|
|
|
|
|
// create memory for the array of floats if needed
|
|
|
|
// first float is used for the crc
|
|
|
|
if (info.ptr == nullptr) {
|
|
|
|
info.ptr = calloc(num_params+1, sizeof(float));
|
|
|
|
if (info.ptr == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// allocate the name
|
|
|
|
if (info.name == _empty_string) {
|
|
|
|
info.name = strdup(prefix);
|
|
|
|
if (info.name == nullptr) {
|
|
|
|
free(const_cast<void*>(info.ptr));
|
|
|
|
info.ptr = nullptr;
|
|
|
|
info.name = _empty_string;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if it doesn't exist then create the table
|
|
|
|
if (info.group_info == nullptr) {
|
|
|
|
info.group_info = (GroupInfo *)calloc(num_params+2, sizeof(GroupInfo));
|
|
|
|
if (info.group_info == nullptr) {
|
|
|
|
free(const_cast<void*>(info.ptr));
|
|
|
|
free(const_cast<char*>(info.name));
|
|
|
|
info.ptr = nullptr;
|
|
|
|
info.name = _empty_string;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// fill in footer for all entries
|
|
|
|
for (uint8_t gi=1; gi<num_params+2; gi++) {
|
|
|
|
auto &ginfo = const_cast<GroupInfo*>(info.group_info)[gi];
|
|
|
|
ginfo.name = _empty_string;
|
|
|
|
ginfo.idx = 0xff;
|
|
|
|
}
|
|
|
|
// hidden first parameter containing AP_Int32 crc
|
|
|
|
auto &hinfo = const_cast<GroupInfo*>(info.group_info)[0];
|
|
|
|
hinfo.flags = AP_PARAM_FLAG_HIDDEN;
|
|
|
|
hinfo.name = _empty_string;
|
|
|
|
hinfo.idx = 0;
|
|
|
|
hinfo.offset = 0;
|
|
|
|
hinfo.type = AP_PARAM_INT32;
|
|
|
|
// fill in default value with the CRC. Relies on sizeof crc == sizeof float
|
|
|
|
memcpy((uint8_t *)&hinfo.def_value, (const uint8_t *)&crc, sizeof(crc));
|
|
|
|
}
|
|
|
|
|
|
|
|
// remember the table size
|
|
|
|
if (_dynamic_table_sizes[i] == 0) {
|
|
|
|
_dynamic_table_sizes[i] = num_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
// make the group active
|
|
|
|
info.key = key;
|
|
|
|
info.type = AP_PARAM_GROUP;
|
|
|
|
|
|
|
|
invalidate_count();
|
|
|
|
|
|
|
|
// save the CRC
|
|
|
|
AP_Int32 *crc_param = const_cast<AP_Int32 *>((AP_Int32 *)info.ptr);
|
|
|
|
crc_param->set(crc);
|
|
|
|
crc_param->save(true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Load an AP_Int32 variable from EEPROM using top level key and group element. Used to confirm
|
|
|
|
a key in add_table()
|
|
|
|
*/
|
|
|
|
bool AP_Param::load_int32(uint16_t key, uint32_t group_element, int32_t &value)
|
|
|
|
{
|
|
|
|
struct Param_header phdr;
|
|
|
|
|
|
|
|
phdr.type = AP_PARAM_INT32;
|
|
|
|
set_key(phdr, key);
|
|
|
|
phdr.group_element = group_element;
|
|
|
|
|
|
|
|
// scan EEPROM to find the right location
|
|
|
|
uint16_t ofs;
|
|
|
|
if (!scan(&phdr, &ofs)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// found it
|
|
|
|
_storage.read_block(&value, ofs+sizeof(phdr), type_size(AP_PARAM_INT32));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
add a parameter to a dynamic table
|
|
|
|
*/
|
|
|
|
bool AP_Param::add_param(uint8_t _key, uint8_t param_num, const char *pname, float default_value)
|
|
|
|
{
|
2023-11-22 15:51:22 -04:00
|
|
|
if (_var_info_dynamic == nullptr) {
|
|
|
|
// No dynamic tables available
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-01-07 01:25:38 -04:00
|
|
|
// check for valid values
|
|
|
|
if (param_num == 0 || param_num > 63 || strlen(pname) > 16) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t key = uint16_t(_key) + AP_PARAM_DYNAMIC_KEY_BASE;
|
|
|
|
// find the info
|
|
|
|
uint8_t i;
|
|
|
|
for (i=0; i<AP_PARAM_MAX_DYNAMIC; i++) {
|
|
|
|
auto &info = _var_info_dynamic[i];
|
|
|
|
if (info.key == key) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == AP_PARAM_MAX_DYNAMIC) {
|
|
|
|
// not found
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (param_num > _dynamic_table_sizes[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &info = _var_info_dynamic[i];
|
|
|
|
if (info.ptr == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check CRC
|
2023-05-23 13:02:46 -03:00
|
|
|
const auto &hinfo = const_cast<GroupInfo*>(info.group_info)[0];
|
2023-05-29 21:43:51 -03:00
|
|
|
const int32_t crc = float_to_int32_le(hinfo.def_value);
|
2022-01-07 01:25:38 -04:00
|
|
|
|
|
|
|
int32_t current_crc;
|
|
|
|
if (load_int32(key, 0, current_crc) && current_crc != crc) {
|
|
|
|
// crc mismatch, we have a conflict with an existing use of this key
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-07 22:09:15 -04:00
|
|
|
// fill in idx of any gaps, leaving them hidden, this allows
|
|
|
|
// scripts to remove parameters
|
|
|
|
for (uint8_t j=1; j<param_num; j++) {
|
|
|
|
auto &g = const_cast<GroupInfo*>(info.group_info)[j];
|
|
|
|
if (g.idx == 0xff) {
|
|
|
|
g.idx = j;
|
|
|
|
g.flags = AP_PARAM_FLAG_HIDDEN;
|
|
|
|
g.offset = j*sizeof(float);
|
|
|
|
g.type = AP_PARAM_FLOAT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-07 01:25:38 -04:00
|
|
|
auto &ginfo = const_cast<GroupInfo*>(info.group_info)[param_num];
|
|
|
|
|
|
|
|
if (ginfo.name == _empty_string) {
|
|
|
|
// we don't allow name change while running
|
|
|
|
ginfo.name = strdup(pname);
|
|
|
|
if (ginfo.name == nullptr) {
|
|
|
|
ginfo.name = _empty_string;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ginfo.offset = param_num*sizeof(float);
|
|
|
|
ginfo.idx = param_num;
|
|
|
|
float *def_value = const_cast<float *>(&ginfo.def_value);
|
|
|
|
*def_value = default_value;
|
|
|
|
ginfo.type = AP_PARAM_FLOAT;
|
|
|
|
|
|
|
|
invalidate_count();
|
|
|
|
|
|
|
|
// load from storage if available
|
|
|
|
AP_Float *pvalues = const_cast<AP_Float *>((const AP_Float *)info.ptr);
|
|
|
|
AP_Float &p = pvalues[param_num];
|
|
|
|
p.set_default(default_value);
|
|
|
|
p.load();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|