├── .checkpatch.conf ├── .clang-format ├── .editorconfig ├── .github └── workflows │ ├── build_zephyr.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── Kconfig ├── LICENSE ├── README.md ├── VERSION ├── boards ├── aludel_elixir_ns.conf ├── aludel_elixir_ns.overlay └── nrf9160dk_nrf9160_ns.overlay ├── pipelines └── cbor-to-lightdb.yml ├── pm_static.yml ├── prj.conf ├── sample.yaml ├── socs └── nrf9160_ns.conf ├── src ├── app_rpc.c ├── app_rpc.h ├── app_sensors.c ├── app_sensors.h ├── app_settings.c ├── app_settings.h ├── app_state.c ├── app_state.h ├── json_helper.h ├── main.c └── main.h ├── sysbuild.conf └── west.yml /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build_zephyr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/.github/workflows/build_zephyr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/VERSION -------------------------------------------------------------------------------- /boards/aludel_elixir_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/boards/aludel_elixir_ns.conf -------------------------------------------------------------------------------- /boards/aludel_elixir_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/boards/aludel_elixir_ns.overlay -------------------------------------------------------------------------------- /boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/boards/nrf9160dk_nrf9160_ns.overlay -------------------------------------------------------------------------------- /pipelines/cbor-to-lightdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/pipelines/cbor-to-lightdb.yml -------------------------------------------------------------------------------- /pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/pm_static.yml -------------------------------------------------------------------------------- /prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/prj.conf -------------------------------------------------------------------------------- /sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/sample.yaml -------------------------------------------------------------------------------- /socs/nrf9160_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/socs/nrf9160_ns.conf -------------------------------------------------------------------------------- /src/app_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_rpc.c -------------------------------------------------------------------------------- /src/app_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_rpc.h -------------------------------------------------------------------------------- /src/app_sensors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_sensors.c -------------------------------------------------------------------------------- /src/app_sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_sensors.h -------------------------------------------------------------------------------- /src/app_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_settings.c -------------------------------------------------------------------------------- /src/app_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_settings.h -------------------------------------------------------------------------------- /src/app_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_state.c -------------------------------------------------------------------------------- /src/app_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/app_state.h -------------------------------------------------------------------------------- /src/json_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/json_helper.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/src/main.h -------------------------------------------------------------------------------- /sysbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/sysbuild.conf -------------------------------------------------------------------------------- /west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golioth/reference-design-template/HEAD/west.yml --------------------------------------------------------------------------------