This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/flippypass.c

11 lines
161 B
C
Raw Normal View History

2024-08-11 21:23:09 -05:00
// Libraries
#include <furi.h>
// Entry Point
int32_t flippypass_app(void* p) {
// Not using P Parameter
UNUSED(p);
// Exit App
return 0;
}