mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-26 05:54:46 -07:00
Merge branch 'dev' of https://github.com/flipperdevices/flipperzero-firmware into mntm-dev
This commit is contained in:
@@ -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
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user