Skip to content

Commit 2b7846d

Browse files
Fix typo in elf2bin for QOUT binary generation (#6116)
Fixes #6115 as found by @micjoc
1 parent b556075 commit 2b7846d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/elf2bin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import sys
2626
import tempfile
2727

28-
fmodeb = { 'dout': 3, 'dio': 2, 'quot': 1, 'qio': 0 }
28+
fmodeb = { 'dout': 3, 'dio': 2, 'qout': 1, 'qio': 0 }
2929
ffreqb = { '40': 0, '26': 1, '20': 2, '80': 15 }
3030
fsizeb = { '512K': 0, '256K': 1, '1M': 2, '2M': 3, '4M': 4, '8M': 8, '16M': 9 }
3131

0 commit comments

Comments
 (0)