flipperzero-firmware/target_lo/Src/main.c

15 lines
175 B
C
Raw Normal View History

/*
Flipper devices inc.
Local fw build entry point.
*/
void app();
unsigned int add(unsigned int a, unsigned int b);
int main() {
add(2, 2);
app();
return 0;
}