# iot-contact iot-contact is an IoT device to check if doors and windows are closed or open. Furthermore roller shutter motors should be controlled. Currently two boards are supported: - `native_sim/native/64` without bootloader - `nucleo_f767zi` with bootloader ## Usage To build the firmware a firmware signing key is required. It is generated with the `imgtool.py`. ``` mkdir -p ~/mcuboot ./imgtool.py keygen --key ~/mcuboot/key.pem --type ed25519 ``` The content of this repository can be build with CMake and Ninja. The application firmware will be built for the simulation board to easily use it without special hardware. The bootloader is built for `nucleo_f767zi` since the simulation board is currently not supported. ``` cmake -Bbuild -GNinja -DKEY=~/mcuboot/key.pem ninja -C build ``` To run the simulated firmware a virtual network interface `zeth` and a router advertisement daemon have to be provided with an embedded script. Root rights are required for that (prefix e.g. with `sudo`). ``` ./fw/simulate-network.sh ``` With the firmware built and the network being prepared the simulated firmware can be run. ``` ./build/fw/zephyr/zephyr.exe ``` To build the firmware in a clean `nucleo` build folder, flash it and open a serial interface another script can be used for convenience. ``` ./fw/nucleo.sh ``` Next to the firmware artifacts the exported files related to the printed circuit board (PCB) can be found in the build folder. ``` tree build/pcb ```