summaryrefslogtreecommitdiff
path: root/firmware
AgeCommit message (Collapse)Author
2024-08-30firmware: Add default IP for debug-network-issue.pydebug-network-issuexengineering
That way the script works without any command line options which is convenient. The selected IP is the default IPv4 address used by Zephyr.
2024-08-30firmware: Add tools/debug-network-issue.pyxengineering
This script can be used to analyze an issue which causes that the microcontroller is not able to communicate via the network after roughly every second boot.
2024-08-29firmware: Add minimal READMExengineering
This adds instructions for: - Python environment setup - building the firmware - flashing the firmware - get output from the Zephyr shell - removing the firmware from the device
2024-08-29firmware: zephyrproject: Add requirements.txtxengineering
This is (hopefully) the minimal set of Python dependencies required to execute the firmware build. It is meant to be installed inside a Python virtual environment (venv). To add one which is not accidentally tracked by Git a .gitignore files is added too.
2024-08-29firmware: Adapt CMakeLists.txt to Git submodulesxengineering
The following properties are now set in CMakeLists.txt: - Zephyr kernel path - required Zephyr module paths - selected board This makes the command line call for CMake trivial: cmake -Bbuild -GNinja The user does not have to specify these options on the command line.
2024-08-29firmware: Add Zephyr sources as Git submodulesxengineering
2024-08-23firmware: Implement printk output on button pressxengineering
2024-08-23firmware: Implement minimal IPv6 firmwarexengineering
This firmware enables as much as required for the device to be reachable by ICMP via an link-local IPv6 address. The address can be looked up via the Zephyr shell with `net ipv6`. This is useful to check if the network stack basics work.
2024-04-14fw: Customize shell promptxengineering
The shell prompt was changed from the default 'uart:~$ ' to '[iot-contact] ' so that it is more visible which kind of firmware is running on the device.
2024-04-14fw: Add basic Zephyr application firmwarexengineering
This is enough to validate that the firmware is running by using the integrated Zephyr shell.