flipperzero-firmware/firmware/targets/local/Src/main.c

13 lines
110 B
C
Raw Normal View History

/*
Flipper devices inc.
Local fw build entry point.
*/
void app();
int main() {
app();
return 0;
}