Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Bootup Logos/img2logo.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ class PinecilSettings:


class Pinecilv2Settings:
IMAGE_ADDRESS = 1016 * 1024 # its 2 4k erase pages inset
IMAGE_ADDRESS = 0x23000000 + (
1016 * 1024
) # its 2 4k erase pages inset from the end, + XIP offset
DFU_TARGET_NAME = b"Pinecilv2"
DFU_ALT = 0
DFU_VENDOR = 0x28E9 # These are ignored by blisp so doesnt matter what we use
Expand Down