mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-25 04:03:07 +00:00
10 lines
150 B
C
10 lines
150 B
C
|
#include <furi_hal_region.h>
|
||
|
|
||
|
bool furi_hal_region_is_provisioned() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
const char* furi_hal_region_get_name() {
|
||
|
return "00";
|
||
|
}
|