You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reboot.h 322B

12345678910111213141516
  1. /**
  2. * Copyright (c) 2022 Brian Starkey <stark3y@gmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef __PICOWOTA_REBOOT_H__
  7. #define __PICOWOTA_REBOOT_H__
  8. #include <stdbool.h>
  9. #define PICOWOTA_BOOTLOADER_ENTRY_MAGIC 0xb105f00d
  10. void picowota_reboot(bool to_bootloader);
  11. #endif /* __PICOWOTA_REBOOT_H__ */