boot.h 185 B

123456789101112131415
  1. /*
  2. Flipper devices inc.
  3. Bootloader API, must be implemented by target
  4. */
  5. #ifndef __BOOT_H
  6. #define __BOOT_H
  7. /*
  8. * @brief Request DFU and reboot
  9. */
  10. void boot_restart_in_dfu();
  11. #endif