Skip to content

Commit e8ebbd6

Browse files
committed
update uf2conv
1 parent eb11ab7 commit e8ebbd6

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

platform.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf
103103
recipe.objcopy.zip.pattern="{tools.nrfutil.cmd}" dfu genpkg --dev-type 0x0052 --sd-req {build.sd_fwid} --application "{build.path}/{build.project_name}.hex" "{build.path}/{build.project_name}.zip"
104104

105105
## Create uf2 file
106-
recipe.objcopy.uf2.pattern=python "{runtime.platform.path}/tools/uf2conv/uf2conv.py" -c -o "{build.path}/{build.project_name}.uf2" "{build.path}/{build.project_name}.hex"
106+
#recipe.objcopy.uf2.pattern=python "{runtime.platform.path}/tools/uf2conv/uf2conv.py" -f 0xADA52840 -c -o "{build.path}/{build.project_name}.uf2" "{build.path}/{build.project_name}.hex"
107107

108108
## Save bin
109109
recipe.output.tmp_file_bin={build.project_name}.bin

tools/uf2conv/uf2conv.py

+33-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,19 @@
1212
UF2_MAGIC_START1 = 0x9E5D5157 # Randomly selected
1313
UF2_MAGIC_END = 0x0AB16F30 # Ditto
1414

15+
families = {
16+
'SAMD21': 0x68ed2b88,
17+
'SAMD51': 0x55114460,
18+
'NRF52': 0x1b57745f,
19+
'STM32F1': 0x5ee21072,
20+
'STM32F4': 0x57755a57,
21+
'ATMEGA32': 0x16573617,
22+
}
23+
1524
INFO_FILE = "/INFO_UF2.TXT"
1625

1726
appstartaddr = 0x2000
27+
familyid = 0x0
1828

1929
def isUF2(buf):
2030
w = struct.unpack("<II", buf[0:8])
@@ -63,6 +73,7 @@ def convertFromUF2(buf):
6373
return outp
6474

6575
def convertToUF2(fileContent):
76+
global familyid
6677
datapadding = ""
6778
while len(datapadding) < 512 - 256 - 32 - 4:
6879
datapadding += "\x00\x00\x00\x00"
@@ -71,9 +82,12 @@ def convertToUF2(fileContent):
7182
for blockno in range(0, numblocks):
7283
ptr = 256 * blockno
7384
chunk = fileContent[ptr:ptr + 256]
85+
flags = 0x0
86+
if familyid:
87+
flags |= 0x2000
7488
hd = struct.pack("<IIIIIIII",
7589
UF2_MAGIC_START0, UF2_MAGIC_START1,
76-
0, ptr + appstartaddr, 256, blockno, numblocks, 0)
90+
flags, ptr + appstartaddr, 256, blockno, numblocks, familyid)
7791
while len(chunk) < 256:
7892
chunk += "\x00"
7993
block = hd + chunk + datapadding + struct.pack("<I", UF2_MAGIC_END)
@@ -89,9 +103,13 @@ def __init__(self, addr):
89103
self.bytes.append(0)
90104

91105
def encode(self, blockno, numblocks):
106+
global familyid
107+
flags = 0x0
108+
if familyid:
109+
flags |= 0x2000
92110
hd = struct.pack("<IIIIIIII",
93111
UF2_MAGIC_START0, UF2_MAGIC_START1,
94-
0, self.addr, 256, blockno, numblocks, 0)
112+
flags, self.addr, 256, blockno, numblocks, familyid)
95113
for i in range(0, 256):
96114
hd += chr(self.bytes[i])
97115
while len(hd) < 512 - 4:
@@ -182,7 +200,7 @@ def writeFile(name, buf):
182200
print "Wrote %d bytes to %s." % (len(buf), name)
183201

184202
def main():
185-
global appstartaddr
203+
global appstartaddr, familyid
186204
def error(msg):
187205
print msg
188206
sys.exit(1)
@@ -200,8 +218,20 @@ def error(msg):
200218
help='list connected devices')
201219
parser.add_argument('-c' , '--convert', action='store_true',
202220
help='do not flash, just convert')
221+
parser.add_argument('-f' , '--family', dest='family', type=str,
222+
default="0x0",
223+
help='specify familyID - number or name (default: 0x0)')
203224
args = parser.parse_args()
204225
appstartaddr = int(args.base, 0)
226+
227+
if args.family.upper() in families:
228+
familyid = families[args.family.upper()]
229+
else:
230+
try:
231+
familyid = int(args.family, 0)
232+
except ValueError:
233+
error("Family ID needs to be a number or one of: " + ", ".join(families.keys()))
234+
205235
if args.list:
206236
listdrives()
207237
else:

0 commit comments

Comments
 (0)