How to: Project Generator
The CHESTER SDK Project Generator simplifies project initialization and configuration management by providing a structured approach to project setup, all based on a YAML configuration.
File generation
This tool can automatically generate the following files based on the provided YAML configuration:
/project-name |
project.yaml |
/project-name |
app.overlay
Kconfig
Kconfig.variant
prj.conf
CMakeLists.txt
VERSION
|
/project-name/src |
app_config.c
app_config.h
app_shell.c
feature.h
|
/project-name/src |
app_config.c
app_config.h
app_shell.c
feature.h
app_cbor.c
app_cbor.h
app_send.c
app_send.h
app_data.c
app_data.h
app_sensor.c
app_sensor.h
app_handler.c
app_handler.h
app_work.c
app_work.h
app_init.c
app_init.h
app_power.c
app_power.h
|
/project-name |
app.overlay
Kconfig
Kconfig.variant
prj.conf
CMakeLists.txt
VERSION
pm_static.yml*
|
/project-name/codec |
cbor-decoder.yaml
|
/project-name/child_image |
mcuboot.conf
|
/project-name/child_image/boards* |
chester_nrf52840.overlay*
|
project-name/src |
app_cbor.c
app_cbor.h
|
** Project YAML **
The project.yaml
configuration file serves as the cornerstone for setting up and customizing your project.
This comprehensive guide outlines the step-by-step process to effectively configure your project using the provided YAML structure.
Enter essential project details as outlined in the YAML configuration.
project:
variant: Variant-name
company: 2024 COMPANY a.s.
license: 'SPDX-License-Identifier: LicenseRef-COMPANY-5-Clause'
fw_name: CHESTER Example
fw_bundle: com.hardwario.chester.example
fw_version: v1.0.0
Furthermore, the variant is included in Kconfig.variant
such as:
config VARIANT_<VARIANT-NAME>
bool "Enable VARIANT_<VARIANT-NAME>"
default y
It can be used in the project using:
#if defined(CONFIG_VARIANT_<VARIANT-NAME>)
#endif
Feature Specification
This section outlines the available features or subsystems that can be included in the project configuration. Each feature represents a specific functionality or component that can be integrated into the project.
Subsystem features
The term subsystem-
refers to a functional module or component within the software architecture. Example:
features:
- subsystem-bluetooth
Subsystem Feature Options
Name | Feature | Configuration in prj.conf |
---|
Shell | subsystem-shell | CONFIG_CTR_SHELL=y |
ADC | subsystem-adc | CONFIG_CTR_ADC=y |
Accelerometer | subsystem-accel | CONFIG_CTR_ACCEL=y |
Battery | subsystem-batt | CONFIG_CTR_BATT=y |
Buffer | subsystem-buf | CONFIG_CTR_BUF=y |
BLE Tag | subsystem-ble-tag | CONFIG_CTR_BLE_TAG=y |
Bluetooth | subsystem-ble | CONFIG_CTR_BLE=y |
Button | subsystem-button | CONFIG_CTR_BUTTON=y |
CBPrintf FP Support | subsystem-cbprintf-fp-support | CONFIG_CBPRINTF_FP_SUPPORT=y |
Config | subsystem-config | CONFIG_CTR_CONFIG=y |
Cloud | subsystem-cloud | CONFIG_CTR_CLOUD=y |
Defaults | subsystem-defaults | CONFIG_CTR_DEFAULTS=y |
DS18B20 | subsystem-ds18b20 | CONFIG_CTR_DS18B20=y |
Edge | subsystem-edge | CONFIG_CTR_EDGE=y |
Entropy Generator | subsystem-entropy-generator | CONFIG_ENTROPY_GENERATOR=y |
Flash | subsystem-flash | CONFIG_CTR_FLASH=y |
GNSS | subsystem-gnss | CONFIG_CTR_GNSS=y |
GPIO | subsystem-gpio | CONFIG_CTR_GPIO=y |
Hygro | subsystem-hygro | CONFIG_CTR_HYGRO=y |
Info | subsystem-info | CONFIG_CTR_INFO=y |
LED | subsystem-led | CONFIG_CTR_LED=y |
Log | subsystem-log | CONFIG_CTR_LOG=y |
LTE | subsystem-lte | CONFIG_CTR_LTE_CLKSYNC=y |
LTE V2 | subsystem-lte-v2 | CONFIG_CTR_LTE_V2=y |
LRW | subsystem-lrw | CONFIG_CTR_LRW=y |
Machine Probe | subsystem-machine-probe | CONFIG_CTR_MACHINE_PROBE=y |
MB7066-A | subsystem-mb7066-a | CONFIG_MB7066_TIMER4=y CONFIG_MB7066_SAMPLE_COUNT=1 |
MB7066-B | subsystem-mb7066-b | CONFIG_MB7066_TIMER4=y CONFIG_MB7066_SAMPLE_COUNT=1 |
RTC | subsystem-rtc | CONFIG_CTR_RTC=y |
RTD | subsystem-rtd | CONFIG_CTR_RTD=y |
Settings | subsystem-settings | CONFIG_SETTINGS=y |
Signal | subsystem-signal | CONFIG_CTR_SIGNAL=y |
Soil Sensor | subsystem-soil-sensor | CONFIG_CTR_SOIL_SENSOR=y |
Test | subsystem-test | CONFIG_CTR_TEST=y |
Therm | subsystem-therm | CONFIG_CTR_THERM=y |
TinyCrypt SHA256 | subsystem-tinycrypt-sha256 | CONFIG_TINYCRYPT_SHA256=y |
TinyCrypt | subsystem-tinycrypt | CONFIG_TINYCRYPT=y |
WDOG | subsystem-wdog | CONFIG_CTR_WDOG=y |
W1 | subsystem-w1 | CONFIG_CTR_W1=y |
ZCBOR | subsystem-zcbor | CONFIG_ZCBOR=y CONFIG_ZCBOR_STOP_ON_ERROR=y |
BT Filter Accept List | subsystem-bt-filter-accept-list | CONFIG_BT_FILTER_ACCEPT_LIST=y |
BT Observer | subsystem-bt-observer | CONFIG_BT_OBSERVER=y |
Hardware Chester feature