Configuration
Bristlemouth offers device configurations that can be accessed over the network, or locally on a device. Configuration parameters are stored in key value pairs, it can be thought of in the following format:
"key" : value
Key is a string. Value can be one of the following types:
UINT32
32 bit unsigned integerINT32
32 bit signed integerFLOAT
32 bit floating point valueSTR
character stringBYTES
8 bit integer buffer
Some examples of how these configuration parameters can be used within a custom application are as follows:
Set the sampling rate on how often a device takes readings of a sensor
Enabling and disabling certain features on the device
Configuring minimum and maximum sensor readings on a device
In order to be able to configure a device over the network or locally on the device, integrators must implement the required API to write/read to a non-volatile memory location. This is done by following this guide:
Configuration values can be stored in three separate partitions:
System
User
Hardware
Local API
The following header file path must be included when calling local configuration API:
#include "configuration.h"
All of the following API are utilized to set configuration values on the local device.
Public API supported by the configuration module is as follows:
-
bool get_config_uint(BmConfigPartition partition, const char *key, size_t key_len, uint32_t *value);
Get a configuration value that is an unsigned 32 bit integer.
- Parameters:
partition – Partition to get key from
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
- Returns:
true if configuration key is found and is of the right type, false otherwise
-
bool get_config_int(BmConfigPartition partition, const char *key, size_t key_len, int32_t *value);
Get a configuration value that is a signed 32 bit integer.
- Parameters:
partition – Partition to get key from
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
- Returns:
true if configuration key is found and is of the right type, false otherwise
-
bool get_config_float(BmConfigPartition partition, const char *key, size_t key_len, float *value);
Get a configuration value that is a 32 bit float.
- Parameters:
partition – Partition to get key from
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
- Returns:
true if configuration key is found and is of the right type, false otherwise
-
bool get_config_string(BmConfigPartition partition, const char *key, size_t key_len, char *value, size_t *value_len);
Get a configuration value that is a string.
- Parameters:
partition – Partition to get key from
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
value_len – Length of the value to obtain in bytes
- Returns:
true if configuration key is found and is of the right type, false otherwise
-
bool get_config_buffer(BmConfigPartition partition, const char *key, size_t key_len, uint8_t *value, size_t *value_len);
Get a configuration value that is an 8 bit buffer.
- Parameters:
partition – Partition to get key from
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
value_len – Length of the value to obtain in bytes
- Returns:
true if configuration key is found and is of the right type, false otherwise
-
bool get_config_cbor(BmConfigPartition partition, const char *key, size_t key_len, uint8_t *value, size_t *value_len);
Get the cbor encoded buffer for a given key.
- Parameters:
partition – Partition to get key from
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
value_len – Length of the value to obtain in bytes
- Returns:
true if configuration key is found, false otherwise
-
bool set_config_uint(BmConfigPartition partition, const char *key, size_t key_len, uint32_t value);
Set a configuration value that is an unsigned 32 bit integer.
- Parameters:
partition – Partition to set key to
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
- Returns:
true if configuration key is found and is set properly, false otherwise
-
bool set_config_int(BmConfigPartition partition, const char *key, size_t key_len, int32_t value);
Set a configuration value that is a signed 32 bit integer.
- Parameters:
partition – Partition to set key to
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
- Returns:
true if configuration key is found and is set properly, false otherwise
-
bool set_config_float(BmConfigPartition partition, const char *key, size_t key_len, float value);
Set a configuration value that is a 32 bit float.
- Parameters:
partition – Partition to set key to
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
- Returns:
true if configuration key is found and is set properly, false otherwise
-
bool set_config_string(BmConfigPartition partition, const char *key, size_t key_len, char *value, size_t *value_len);
Set a configuration value that is a string.
- Parameters:
partition – Partition to set key to
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
value_len – Length of the value to obtain in bytes
- Returns:
true if configuration key is found and is set properly, false otherwise
-
bool set_config_buffer(BmConfigPartition partition, const char *key, size_t key_len, uint8_t *value, size_t *value_len);
Set a configuration value that is an 8 bit buffer.
- Parameters:
partition – Partition to set key to
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
value_len – Length of the value to obtain in bytes
- Returns:
true if configuration key is found and is set properly, false otherwise
-
bool set_config_cbor(BmConfigPartition partition, const char *key, size_t key_len, uint8_t *value, size_t *value_len);
Set the cbor encoded buffer for a given key, the value must be encoded before passing it into this API with the appropriate cbor API:
cbor_encode_uint
cbor_encode_int
cbor_encode_float
cbor_encode_text_string
cbor_encode_byte_string
or by obtaining already encoded data in some other way
- Parameters:
partition – Partition to set key to
key – NULL terminated key name
key_len – Length of key name
value – Value of configuration key requested
value_len – Length of the value to obtain in bytes
- Returns:
true if configuration key is found and is set properly, false otherwise
-
bool remove_key(BmConfigPartition partition, const char *key, size_t key_len)
Remove a key pair value from a selected partition.
- Parameters:
partition – Partition to remove key from
key – NULL terminated key name
key_len – Length of key name
- Returns:
true if configuration key is found and is removed properly, false otherwise
-
bool save_config(BmConfigPartition partition, bool restart);
Save updated values to a partition, this also can restart the device if requested
- Parameters:
partition – Partition to save
restart – Whether to restart the device after saving or not
- Returns:
true if partition was saved, false otherwise
-
bool needs_commit(BmConfigPartition partition);
Determines whether or not configuration values have been updated in RAM, but have not been saved to NVM.
- Parameters:
partition – Partition to check if it needs to be saved
- Returns:
true if values need to be saved, false otherwise
-
const ConfigKey *get_stored_keys(BmConfigPartition partition, uint8_t *num_stored_keys);
Get the stored key pair values from the specified partition. Also obtains the number of stored keys in partition.
- Parameters:
partition – Partition to obtain the key pair values from
num_stored_keys – Pointer that is assigned the number of keys in the specified partition
- Returns:
The key pair values of the requested partition
Local Enumerations
Local Type Definitions
-
struct ConfigKey
Configuration key that will be stored in NVM. This structure’s data is packed.
-
char key_buf[MAX_KEY_LEN_BYTES]
Buffer to hold the key
-
size_t key_len
Length of the specified key
-
ConfigDataTypes value_type
Type of value that the key holds
-
char key_buf[MAX_KEY_LEN_BYTES]
Network API
Configuration messages are sent over the Bristlemouth Control Messaging Protocol (BCMP). Please see the following guide for further information on BCMP.
The following header file path must be included when calling BCMP configuration API:
#include "messages/config.h"
Public API supported by the BCMP configuration module is as follows:
-
bool bcmp_config_get(uint64_t target_node_id, BmConfigPartition partition, size_t key_len, const char *key, BmErr *err, BmErr (*reply_cb)(uint8_t*))
Get a configuration value from a target node, in a selected partition by key name.
- Parameters:
target_node_id – Target node id to obtain config value
partition – Partition to obtain configuration from
key_len – Length of the key name
key – Pointer to the key name string
err – Error value passed in as a pointer
reply_cb –
Callback when a reply is received over the bus, can be NULL the uint8_t buffer should be cast to BmConfigValue * before use, ex:
- BmErr my_cb_function(uint8_t *data) {
BmConfigValue *msg = (BmConfigValue *)data;
// … insert other logic here …
}
- Returns:
true if get message is sent properly, false otherwise
-
bool bcmp_config_set(uint64_t target_node_id, BmConfigPartition partition, size_t key_len, const char *key, BmErr *err, BmErr (*reply_cb)(uint8_t*))
Set a configuration value on a target node, in a selected partition by key name.
- Parameters:
target_node_id – Target node id to set config value
partition – Partition to set configuration
key_len – Length of the key name
key – Pointer to the key name string
err – Error value passed in as a pointer
reply_cb –
Callback when a reply is received over the bus, can be NULL the uint8_t buffer should be cast to BmConfigSet * before use, ex:
- BmErr my_cb_function(uint8_t *data) {
BmConfigSet *msg = (BmConfigSet *)data;
// … insert other logic here …
}
- Returns:
true if set message is sent properly, false otherwise
-
bool bcmp_config_commit(uint64_t target_node_id, BmConfigPartition partition, BmErr *err)
Commit a configuration partition on a target node. This saves any updated configuration values and resets the device.
- Parameters:
target_node_id – Target node id to commit the configuration partition to
partition – Partition to commit
err – Error value passed in as a pointer
- Returns:
true if commit message is sent properly, false otherwise
-
bool bcmp_config_status_request(uint64_t target_node_id, BmConfigPartition partition, BmErr *err, BmErr (*reply_cb)(uint8_t*))
Get all of the key names from a target node’s partition.
- Parameters:
target_node_id – Target node id to obtaion the key names from
partition – Configuration partition to obtain the key names from
err – Error value passed in as a pointer
reply_cb –
Callback when a reply is received over the bus, can be NULL the uint8_t buffer should be cast to BmConfigStatusRequest * before use, ex:
- BmErr my_cb_function(uint8_t *data) {
BmConfigStatusRequest *msg = (BmConfigStatusRequest *)data;
// … insert other logic here …
}
- Returns:
true if status message is sent properly, false otherwise
-
bool bcmp_config_del_key(uint64_t target_node_id, BmConfigPartition partition, size_t key_len, const char *key, BmErr (*reply_cb)(uint8_t*))
Delete a key from a target node’s configuration partition.
- Parameters:
target_node_id – Target node id to delete config value
partition – Partition to delete configuration value from
key_len – Length of the key name
key – Pointer to the key name string
reply_cb –
Callback when a reply is received over the bus, can be NULL the uint8_t buffer should be cast to BmConfigDeleteKeyRequest * before use, ex:
- BmErr my_cb_function(uint8_t *data) {
BmConfigDeleteKeyRequest *msg = (BmConfigDeleteKeyRequest *)data;
// … insert other logic here …
}
- Returns:
true if delete message is sent properly, false otherwise
- bool bcmp_config_clear_partition(uint64_t target_node_id,
- BmConfigPartition partition,
- BmErr (*reply_cb)(uint8_t *));
- Removes all keys from a partition
- Parameters:
target_node_id – Target node id to remove configuration values from
partition – Partition to delete configuration values from
reply_cb –
Callback when a reply is received over the bus, can be NULL the uint8_t buffer should be cast to BmConfigClearRequest * before use, ex:
- BmErr my_cb_function(uint8_t *data) {
BmConfigClearRequest *msg = (BmConfigClearRequest *)data;
// … insert other logic here …
}
:return true if clear partition message is sent properly, false otherwise