This commit is contained in:
Willy-JL
2024-03-20 01:48:10 +00:00
588 changed files with 3875 additions and 2957 deletions

View File

@@ -22,7 +22,7 @@ typedef struct {
} FuriHalRegion;
/** Initialize region */
void furi_hal_region_init();
void furi_hal_region_init(void);
/** Get Region Data.
*
@@ -31,7 +31,7 @@ void furi_hal_region_init();
*
* @return pointer to FuriHalRegion instance (in RAM or Flash, check before freeing on region update)
*/
const FuriHalRegion* furi_hal_region_get();
const FuriHalRegion* furi_hal_region_get(void);
/** Set device region data
*
@@ -43,7 +43,7 @@ void furi_hal_region_set(FuriHalRegion* region);
*
* @return true if provisioned, false otherwise
*/
bool furi_hal_region_is_provisioned();
bool furi_hal_region_is_provisioned(void);
/** Get region name
*
@@ -55,7 +55,7 @@ bool furi_hal_region_is_provisioned();
*
* @return Pointer to string
*/
const char* furi_hal_region_get_name();
const char* furi_hal_region_get_name(void);
/** Сheck if transmission is allowed on this frequency for your flipper region
*