Skip to content

Commit

Permalink
Merge pull request #90 from gagarinlg/add_flags_definitions
Browse files Browse the repository at this point in the history
add missing flagh defines to uf2.h
  • Loading branch information
mmoskal authored Nov 22, 2024
2 parents 93418de + 7744ce6 commit d03b585
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion uf2.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ SOFTWARE.
#define UF2_MAGIC_END 0x0AB16F30UL // Ditto

// If set, the block is "comment" and should not be flashed to the device
#define UF2_FLAG_NOFLASH 0x00000001
#define UF2_FLAG_NOFLASH 0x00000001
#define UF2_FLAG_FILECONTAINER 0x00001000 // fle container
#define UF2_FLAG_FAMILY_ID 0x00002000 // familyID present
#define UF2_FLAG_MD5_CHKSUM 0x00004000 // MD5 checksum present
#define UF2_FLAG_EXTENSION_TAGS 0x00008000 // extension tags present

typedef struct {
// 32 byte header
Expand Down

0 comments on commit d03b585

Please sign in to comment.