Hot reload or flipper emulator ? #161
-
Hello, thanks for great work on the official bump to v1 on flipper. Now that we can stabilise any app development for flipper using rust lang, I have a question on tips for app development. Is there a better way to develop more graphic app on flipper than pushing the build into the device ? I am looking for something that will either emulate flipper or use flipper to run the app in hot reload mode. Any tips would be greatly appreciated |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I'm not personally aware of a full Flipper Zero emulator, but a quick search did bring up the archived flippulator project that allows compiling Flipper Zero apps for PC. You can combine An example can now be found in the cargo watch -s 'cargo build --release && run-fap target/thumbv7em-none-eabihf/release/my-project.fap' |
Beta Was this translation helpful? Give feedback.
I'm not personally aware of a full Flipper Zero emulator, but a quick search did bring up the archived flippulator project that allows compiling Flipper Zero apps for PC.
You can combine
cargo-watch
andrun-fap
from the tools directory to automatically build and start the binary on a physical device.An example can now be found in the
flipperzero-template
README:cargo watch -s 'cargo build --release && run-fap target/thumbv7em-none-eabihf/release/my-project.fap'