rp_binary_info/
consts.rs

1//! Constants for binary info
2
3/// All Raspberry Pi specified IDs have this tag.
4///
5/// You can create your own for custom fields.
6pub const TAG_RASPBERRY_PI: u16 = super::make_tag(b"RP");
7
8/// Used to note the program name - use with StringEntry
9pub const ID_RP_PROGRAM_NAME: u32 = 0x02031c86;
10/// Used to note the program version - use with StringEntry
11pub const ID_RP_PROGRAM_VERSION_STRING: u32 = 0x11a9bc3a;
12/// Used to note the program build date - use with StringEntry
13pub const ID_RP_PROGRAM_BUILD_DATE_STRING: u32 = 0x9da22254;
14/// Used to note the size of the binary - use with IntegerEntry
15pub const ID_RP_BINARY_END: u32 = 0x68f465de;
16/// Used to note a URL for the program - use with StringEntry
17pub const ID_RP_PROGRAM_URL: u32 = 0x1856239a;
18/// Used to note a description of the program - use with StringEntry
19pub const ID_RP_PROGRAM_DESCRIPTION: u32 = 0xb6a07c19;
20/// Used to note some feature of the program - use with StringEntry
21pub const ID_RP_PROGRAM_FEATURE: u32 = 0xa1f4b453;
22/// Used to note some whether this was a Debug or Release build - use with StringEntry
23pub const ID_RP_PROGRAM_BUILD_ATTRIBUTE: u32 = 0x4275f0d3;
24/// Used to note the Pico SDK version used - use with StringEntry
25pub const ID_RP_SDK_VERSION: u32 = 0x5360b3ab;
26/// Used to note which board this program targets - use with StringEntry
27pub const ID_RP_PICO_BOARD: u32 = 0xb63cffbb;
28/// Used to note which `boot2` image this program uses - use with StringEntry
29pub const ID_RP_BOOT2_NAME: u32 = 0x7f8882e1;
30
31// End of file