-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cc26x2x7] Implement Key Value Store (#7472)
* Implement Key Value Store * Widened KVS crc to 16 bits * Implement parallel key value storage Create a key itemID and a value itemID within the config module. The subIDs of each of these are kept in synch to allow arbitrary key creation. * Add persistent storage example for cc26x2x7 * fix print formatting for persistent-storage app
- Loading branch information
1 parent
7187e19
commit 1bee4af
Showing
16 changed files
with
1,228 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright (c) 2020 Project CHIP Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import("//build_overrides/build.gni") | ||
|
||
# The location of the build configuration file. | ||
buildconfig = "${build_root}/config/BUILDCONFIG.gn" | ||
|
||
# CHIP uses angle bracket includes. | ||
check_system_includes = true | ||
|
||
default_args = { | ||
target_cpu = "arm" | ||
target_os = "freertos" | ||
|
||
import("//args.gni") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Copyright (c) 2020 Project CHIP Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import("//build_overrides/build.gni") | ||
import("//build_overrides/chip.gni") | ||
import("//build_overrides/openthread.gni") | ||
import("//build_overrides/ti_simplelink_sdk.gni") | ||
|
||
import("${build_root}/config/defaults.gni") | ||
|
||
import("${ti_simplelink_sdk_build_root}/ti_simplelink_executable.gni") | ||
import("${ti_simplelink_sdk_build_root}/ti_simplelink_sdk.gni") | ||
|
||
assert(current_os == "freertos") | ||
|
||
project_dir = "${chip_root}/examples/persistent-storage/cc13x2x7_26x2x7" | ||
|
||
ti_simplelink_sdk("sdk") { | ||
include_dirs = [ "${project_dir}/include" ] | ||
|
||
defines = [] | ||
if (is_debug) { | ||
defines += [ "BUILD_RELEASE=0" ] | ||
} else { | ||
defines += [ "BUILD_RELEASE=1" ] | ||
} | ||
} | ||
|
||
ti_sysconfig("sysconfig") { | ||
sources = [ "${project_dir}/chip.syscfg" ] | ||
|
||
outputs = [ | ||
"ti_devices_config.c", | ||
"ti_drivers_config.c", | ||
"ti_drivers_config.h", | ||
] | ||
|
||
public_configs = [ ":sdk_dmm_config" ] | ||
|
||
cflags = [ | ||
"-Wno-comment", | ||
"@" + rebase_path("${target_gen_dir}/sysconfig/ti_ble_app_config.opt", | ||
root_build_dir), | ||
"@" + rebase_path("${target_gen_dir}/sysconfig/ti_build_config.opt", | ||
root_build_dir), | ||
] | ||
} | ||
|
||
ti_simplelink_executable("persistent_storage") { | ||
output_name = "chip-${ti_simplelink_board}-persistent_storage.out" | ||
|
||
sources = [ | ||
"${project_dir}/../KeyValueStorageTest.cpp", | ||
"${project_dir}/main.cpp", | ||
] | ||
|
||
deps = [ | ||
":sdk", | ||
":sysconfig", | ||
"${chip_root}/src/lib", | ||
] | ||
|
||
include_dirs = [ | ||
"${project_dir}", | ||
"${project_dir}/..", | ||
] | ||
|
||
cflags = [ | ||
"-Wno-implicit-fallthrough", | ||
"-Wno-sign-compare", | ||
"-Wconversion", | ||
] | ||
|
||
ldscript = "${ti_simplelink_sdk_root}/source/ti/dmm/apps/common/freertos/cc13x2x7_cc26x2x7.lds" | ||
|
||
inputs = [ ldscript ] | ||
|
||
ldflags = [ | ||
"-L${ti_simplelink_sdk_root}/source", | ||
"-T" + rebase_path(ldscript, root_build_dir), | ||
] | ||
|
||
output_dir = root_out_dir | ||
} | ||
|
||
group("cc13x2x7_26x2x7") { | ||
deps = [ ":persistent_storage" ] | ||
} | ||
|
||
group("default") { | ||
deps = [ ":cc13x2x7_26x2x7" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,255 @@ | ||
# CHIP CC1352 CC2652 Persistent Storage Example Application | ||
|
||
An example test application showing the persistent storage system for | ||
[CHIP][chip] on the Texas Instruments CC13X2_26X2 family of Wireless MCUs. | ||
|
||
--- | ||
|
||
- [CHIP CC1352 CC2652 Persistent Storage Application](#chip-cc1352-cc2652-persistent-storage-example-application) | ||
- [Introduction](#introduction) | ||
- [Device UI](#device-ui) | ||
- [Building](#building) | ||
- [Preparation](#preparation) | ||
- [Compilation](#compilation) | ||
- [Programming](#programming) | ||
- [Code Composer Studio](#code-composer-studio) | ||
- [UniFlash](#uniflash) | ||
- [Viewing Logging Output](#viewing-logging-output) | ||
- [TI Support](#ti-support) | ||
|
||
--- | ||
|
||
## Introduction | ||
|
||
This example serves to test the key value storage implementation and API and | ||
offers information on proper usage of the KVS system. | ||
|
||
This example is enabled to build for CC2652R7 devices. This upcoming devices are | ||
currently not yet in full production. For more information on device | ||
availability or early access to an engineering build of our CHIP-enabled SDK, | ||
please reach out [here][ti_cc13x2_26x2_r7_chip_request]. | ||
|
||
## Device UI | ||
|
||
Over the debug UART connection you should see the output: | ||
|
||
``` | ||
Running Tests: | ||
TestEmptyString(): PASSED | ||
TestString(): PASSED | ||
TestUint32(): PASSED | ||
TestArray(): PASSED | ||
TestStruct(): PASSED | ||
TestUpdateValue(): PASSED | ||
TestMultiRead(): PASSED | ||
``` | ||
|
||
This indicates a successful run of the test suite. | ||
|
||
## Building | ||
|
||
### Preparation | ||
|
||
Some initial setup is necessary for preparing the build environment. This | ||
section will need to be done when migrating to new versions of the SDK. This | ||
guide assumes that the environment is linux based, and recommends Ubuntu 20.04. | ||
|
||
- An engineering SDK from TI is required. Please request access for it | ||
[here][ti_cc13x2_26x2_r7_chip_request]. | ||
|
||
- Follow the default installation instructions when executing the | ||
installer. | ||
|
||
- The version of OpenThread used in this repository is newer than the one | ||
packaged with the TI SDK. Check the following section for a list of | ||
changes needed. | ||
|
||
- Download and install [SysConfig][sysconfig] ([recommended | ||
version][sysconfig_recommended]) | ||
|
||
- This may have already been installed with your SimpleLink SDK install. | ||
|
||
- If you have installed different versions, the build defaults will need to be | ||
changed to reflect this in | ||
`${chip_root}/examples/build_overrides/ti_simplelink_sdk.gni`. | ||
|
||
- Install Python 3.8 for the GN build system: | ||
|
||
``` | ||
# Linux | ||
$ sudo apt-get install python3.8 python3.8-distutils python3.8-dev python3.8-venv | ||
# Distutils listed due to a package manager error on Ubuntu 18.04 | ||
``` | ||
- You will have to ensure that the default version of Python 3 is Python | ||
3.8. | ||
- Check python3 version: | ||
``` | ||
$ python3 --version | ||
Python 3.8.0 | ||
``` | ||
- If it is not Python 3.8: | ||
``` | ||
$ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1 | ||
``` | ||
- This may affect your environment in other ways if there was a | ||
specific dependency on the prior python3 version (e.g. apt). | ||
After completing the build process for this example, you can | ||
revert the python3 version, for instance: | ||
``` | ||
$ sudo update-alternatives --config python3 | ||
There are 2 choices for the alternative python3 (providing /usr/bin/python3). | ||
Selection Path Priority Status | ||
------------------------------------------------------------- | ||
0 /usr/bin/python3.8 1 auto mode | ||
1 /usr/bin/python3.6 1 manual mode | ||
* 2 /usr/bin/python3.8 1 manual mode | ||
Press <enter> to keep the current choice[*], or type selection number: 1 | ||
update-alternatives: using /usr/bin/python3.6 to provide /usr/bin/python3 (python3) in manual mode | ||
``` | ||
- Run the bootstrap script to setup the build environment. | ||
``` | ||
$ cd ~/connectedhomeip | ||
$ source ./scripts/bootstrap.sh | ||
``` | ||
### Compilation | ||
It is necessary to activate the environment in every new shell. Then run GN and | ||
Ninja to build the executable. | ||
- Activate the build environment with the repository activate script. | ||
``` | ||
$ cd ~/connectedhomeip | ||
$ source ./scripts/activate.sh | ||
``` | ||
- Run the build to produce a default executable. By default on Linux both the | ||
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's | ||
home directory, and you must provide the absolute path to them. For example | ||
`/home/username/ti/simplelink_cc13x2_26x2_sdk_4_40_05_02_eng` and | ||
`/home/username/ti/sysconfig_1.7.0`. On Windows the default directory is | ||
`C:\ti`. Take note of this install path, as it will be used in the next | ||
step. | ||
``` | ||
$ cd ~/connectedhomeip/examples/lock-app/cc13x2x7_26x2x7 | ||
$ export TI_SIMPLELINK_SDK_ROOT=$HOME/ti/simplelink_cc13x2_26x2_sdk_4_40_05_02_eng | ||
$ export TI_SYSCONFIG_ROOT=$HOME/ti/sysconfig_1.7.0 | ||
$ gn gen out/debug --args="ti_simplelink_sdk_root=\"${TI_SIMPLELINK_SDK_ROOT}\" ti_sysconfig_root=\"${TI_SYSCONFIG_ROOT}\"" | ||
$ ninja -C out/debug | ||
``` | ||
## Programming | ||
Loading the built image onto a LaunchPad is supported through two methods; | ||
Uniflash and Code Composer Studio (CCS). UniFlash can be used to load the image. | ||
Code Composer Studio can be used to load the image and debug the source code. | ||
### Code Composer Studio | ||
Programming with CCS will allow for a full debug environment within the IDE. | ||
This is accomplished by creating a target connection to the XDS110 debugger and | ||
starting a project-less debug session. The CCS IDE will attempt to find the | ||
source files on the local machine based on the debug information embedded within | ||
the ELF. CCS may prompt you to find the source code if the image was built on | ||
another machine or the source code is located in a different location than is | ||
recorded within the ELF. | ||
Download and install [Code Composer Studio][ccs]. | ||
First open CCS and create a new workspace. | ||
Create a target connection (sometimes called the CCXML) for your target SoC and | ||
debugger as described in the [Manual Method][ccs_manual_method] section of the | ||
CCS User's Guide. | ||
Next initiate a project-less debug session as described in the [Manual | ||
Launch][ccs_manual_launch] section of the CCS User's Guide. | ||
CCS should switch to the debug view described in the [After | ||
Launch][ccs_after_launch] section of the User's Guide. The SoC core will likely | ||
be disconnected and symbols will not be loaded. Connect to the core as described | ||
in the [Debug View][ccs_debug_view] section of the User's Guide. Once the core | ||
is connected, use the `Load` button on the toolbar to load the ELF image. | ||
Note that the default configuration of the CCXML uses 2-wire cJTAG instead of | ||
the full 4-wire JTAG connection to match the default jumper configuration of the | ||
LaunchPad. | ||
### UniFlash | ||
Uniflash is Texas Instrument's uniform programming tool for embedded processors. | ||
This will allow you to erase, flash, and inspect the SoC without setting up a | ||
debugging environment. | ||
Download and install [UniFlash][uniflash]. | ||
First open UniFlash. Debug probes connected to the computer will usually be | ||
displayed under the Detected Devices due to the automatic device detection | ||
feature. If your device does not show up in this view it my be disconnected, or | ||
you may have to create a New Configuration. If you already have a CCXML for your | ||
SoC and debug connection you can use that in the section at the bottom. Once | ||
your device is selected, click the `Start` button within the section to launch | ||
the session. | ||
Select the ELF image to load on the device with the `Browse` button. This file | ||
is placed in the `out/debug` folder by this guide and ends with the `*.out` file | ||
extension. | ||
Finally click the `Load Image` button to load the executable image onto the | ||
device. You should be able to see the log output over the XDS110 User UART. | ||
Note that programming the device through JTAG sets the Halt-in-Boot flag and may | ||
cause issues when performing a software reset. This flag can be reset by | ||
power-cycling the LaunchPad. | ||
## Viewing Logging Output | ||
By default the log output will be sent to the Application/User UART. Open a | ||
terminal emulator to that port to see the output with the following options: | ||
| Parameter | Value | | ||
| ------------ | -------- | | ||
| Speed (baud) | `115200` | | ||
| Data bits | `8` | | ||
| Stop bits | `1` | | ||
| Parity | `None` | | ||
| Flow control | `None` | | ||
## TI Support | ||
For technical support, please consider creating a post on TI's [E2E forum][e2e]. | ||
Additionally, we welcome any feedback. | ||
[chip]: https://github.com/project-chip/connectedhomeip | ||
[ccs]: https://www.ti.com/tool/CCSTUDIO | ||
[ccs_after_launch]: | ||
https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#after-launch | ||
[ccs_debug_view]: | ||
https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#debug-view | ||
[ccs_manual_launch]: | ||
https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#manual-launch | ||
[ccs_manual_method]: | ||
https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#manual-method | ||
[e2e]: https://e2e.ti.com/support/wireless-connectivity/zigbee-and-thread | ||
[sysconfig]: https://www.ti.com/tool/SYSCONFIG | ||
[sysconfig_recommended]: | ||
https://software-dl.ti.com/ccs/esd/sysconfig/sysconfig-1.7.0_1746-setup.run | ||
[ti_cc13x2_26x2_r7_chip_request]: https://ti.com/chip_sdk | ||
[uniflash]: https://www.ti.com/tool/download/UNIFLASH |
Oops, something went wrong.