Files
Momentum-Firmware/applications/main/clock_loader/clock_loader_app.c
ESurge 244a8456ef Changed the way loader.c loads Clock/iButton/U2F
Added a new variable in application.fam file to add the link to the FAP. It now supports any FAP as long as the application.fam file is formatted correctly and you create a loader "app".

If no link is specified in the application.fam file, it doesn't attempt to load a FAP.
2022-09-21 03:08:32 -07:00

9 lines
151 B
C

#include <applications/services/loader/loader_i.h>
#define TAG "clock_loader_app"
int32_t clock_loader_app(void* p) {
UNUSED(p);
return 0;
}