Hey there,
I’m compiling a custom application for Flipper Zero. I’m using ufbt. The code is including crypto1.h like his:
#include <lib/nfc/protocols/mf_classic/crypto1.h>
I made sure that this include follows the path to crypto1.h in the dev branch of the official firmware repository on GitHub: https://github.com/flipperdevices/flipperzero-firmware/blob/dev/lib/nfc/protocols/mf_classic/crypto1.h
I made sure ufbt is using firmware’s latest dev branch by running:
ufbt update --channel=dev
However, when running ufbt, I get the following error:
fatal error: lib/nfc/protocols/mf_classic/crypto1.h: No such file or directory
3 | #include <lib/nfc/protocols/mf_classic/crypto1.h>
What’s the correct way to include crypto1.h?
Thanks.