2020-08-17 09:45:53 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
extern "C" {
|
2020-10-11 11:03:05 +00:00
|
|
|
#include "flipper.h"
|
2020-10-26 07:16:54 +00:00
|
|
|
#include "flipper_v2.h"
|
2020-10-11 11:03:05 +00:00
|
|
|
#include "log.h"
|
2020-10-20 05:45:38 +00:00
|
|
|
#include "applications.h"
|
2020-10-11 11:03:05 +00:00
|
|
|
#include "tty_uart.h"
|
2020-08-17 09:45:53 +00:00
|
|
|
}
|
2020-08-07 06:58:20 +00:00
|
|
|
|
2020-10-10 10:32:06 +00:00
|
|
|
// for testing purpose
|
|
|
|
uint32_t exitcode = 0;
|
|
|
|
extern "C" void set_exitcode(uint32_t _exitcode) {
|
|
|
|
exitcode = _exitcode;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int app() {
|
2020-10-26 07:16:54 +00:00
|
|
|
init_flipper_api();
|
2020-08-26 18:32:22 +00:00
|
|
|
register_tty_uart();
|
|
|
|
|
|
|
|
FuriRecordSubscriber* log = get_default_log();
|
|
|
|
fuprintf(log, "\n=== Welcome to Flipper Zero! ===\n\n");
|
|
|
|
|
2020-08-24 15:31:22 +00:00
|
|
|
// FURI startup
|
2020-10-05 10:17:34 +00:00
|
|
|
const size_t flipper_app_count = sizeof(FLIPPER_STARTUP) / sizeof(FLIPPER_STARTUP[0]);
|
|
|
|
FuriApp* handlers[flipper_app_count];
|
2020-08-17 09:45:53 +00:00
|
|
|
|
2020-10-05 10:17:34 +00:00
|
|
|
for(size_t i = 0; i < flipper_app_count; i++) {
|
|
|
|
// TODO create a dependency tree and run tasks in the desired order
|
2020-10-08 14:37:19 +00:00
|
|
|
furiac_wait_libs(&FLIPPER_STARTUP[i].libs);
|
2020-08-24 15:31:22 +00:00
|
|
|
handlers[i] = furiac_start(FLIPPER_STARTUP[i].app, FLIPPER_STARTUP[i].name, NULL);
|
2020-08-07 06:58:20 +00:00
|
|
|
}
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
bool is_alive = false;
|
|
|
|
do {
|
|
|
|
is_alive = false;
|
2020-10-05 10:17:34 +00:00
|
|
|
for(size_t i = 0; i < flipper_app_count; i++) {
|
2020-08-24 15:31:22 +00:00
|
|
|
if(handlers[i]->handler != NULL) {
|
|
|
|
is_alive = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delay(500);
|
|
|
|
} while(is_alive);
|
2020-10-05 10:17:34 +00:00
|
|
|
|
|
|
|
fuprintf(log, "\n=== Bye from Flipper Zero! ===\n\n");
|
2020-10-10 10:32:06 +00:00
|
|
|
|
|
|
|
return (int)exitcode;
|
2020-08-07 06:58:20 +00:00
|
|
|
}
|