This application is based on the Nordic Asset Tracker app which can be found in
NCS under applications/asset_tracker_v2. This specific app was forked from
the out-of-tree version of this application.
Follow the Getting Started with the Thingy91 instructions for updating the modem firmware, activating the SIM card, and registering the device with nRF Cloud.
Install Zephyr's dependencies here.
Create a workspace folder:
mkdir ~/thingy91-workspace
cd thingy91-workspaceCreate and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activateInstall west, Zephyr's meta-tool:
pip install westUse west to initialize the workspace with our asset-tracker repo as the
manifest repo and then update the modules from the manifest
memfault-asset-tracker/west.yml:
cd ~/thingy91-workspace
west init -m git@github.com:memfault/memfault-asset-tracker
west updateInstall Python requirements for both Zephyr and NCS:
pip install -r zephyr/scripts/requirements.txt -r nrf/scripts/requirements-build.txtBuild the app with your project key and the Memfault overlay:
cd ~/thingy91-workspace
west build -b thingy91_nrf9160_ns -p always memfault-asset-tracker -- \
-DCONFIG_MEMFAULT_NCS_PROJECT_KEY=\"${MEMFAULT_PROJECT_KEY}\" \
-DOVERLAY_CONFIG=overlay-memfault.confFlash:
west flash --eraseThis app also has an example of how to auto-deploy releases with Memfault.
See ota-deploy.yaml.