mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
15 lines
No EOL
224 B
C
15 lines
No EOL
224 B
C
#include "flipper_v2.h"
|
|
|
|
bool init_flipper_api(void) {
|
|
bool no_errors = true;
|
|
|
|
if(!furi_init()) {
|
|
no_errors = false;
|
|
}
|
|
|
|
if(!gpio_api_init()) {
|
|
no_errors = false;
|
|
}
|
|
|
|
return no_errors;
|
|
} |