katapult/src/deployer.h
Kevin O'Connor f4ac6470bf deployer: Add support for a CanBoot "deployer"
Support building a "flashing application" that one may run from an
existing bootloader.  This flashing application will then flash the
main CanBoot binary to the start of flash.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-29 12:20:00 -04:00

13 lines
297 B
C

#ifndef __DEPLOYER_H
#define __DEPLOYER_H
#include <stdint.h> // uint8_t
int deployer_is_active(void);
// Code in out/canboot_payload.c generated by scripts/buildbinary.py
extern const uint8_t deployer_canboot_binary[];
extern const uint32_t deployer_canboot_binary_size;
#endif // deployer.h