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

23 lines
339 B
C
Raw Normal View History

2024-08-11 21:23:09 -05:00
// Libraries
2024-09-08 23:16:37 -05:00
/* Main */
2024-08-11 21:23:09 -05:00
#include <furi.h>
2024-09-08 23:16:37 -05:00
/* Backends */
2024-09-08 20:12:29 -05:00
#include "ui/ui.h"
2024-08-11 21:23:09 -05:00
// Entry Point
int32_t flippypass_app(void* p) {
// Not using P Parameter
UNUSED(p);
2024-08-26 04:20:00 -05:00
// Creating App
FP_App* app = fp_app_init();
2024-09-01 15:06:44 -05:00
// Running app
fp_app_run(app);
2024-08-26 23:37:32 -05:00
// Cleanup
fp_app_free(app);
2024-08-11 21:23:09 -05:00
// Exit App
return 0;
}