mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-13 13:29:50 +04:00
16 lines
185 B
C
16 lines
185 B
C
|
|
/*
|
||
|
|
Flipper devices inc.
|
||
|
|
|
||
|
|
Bootloader API, must be implemented by target
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __BOOT_H
|
||
|
|
#define __BOOT_H
|
||
|
|
|
||
|
|
/*
|
||
|
|
* @brief Request DFU and reboot
|
||
|
|
*/
|
||
|
|
void boot_restart_in_dfu();
|
||
|
|
|
||
|
|
#endif
|