mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-13 13:01:55 +03:00
Fix typo in elf2bin for QOUT binary generation (#6116)
Fixes #6115 as found by @micjoc
This commit is contained in:
committed by
GitHub
parent
b5560759ec
commit
2b7846da5a
@ -25,7 +25,7 @@ import subprocess
|
|||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
|
|
||||||
fmodeb = { 'dout': 3, 'dio': 2, 'quot': 1, 'qio': 0 }
|
fmodeb = { 'dout': 3, 'dio': 2, 'qout': 1, 'qio': 0 }
|
||||||
ffreqb = { '40': 0, '26': 1, '20': 2, '80': 15 }
|
ffreqb = { '40': 0, '26': 1, '20': 2, '80': 15 }
|
||||||
fsizeb = { '512K': 0, '256K': 1, '1M': 2, '2M': 3, '4M': 4, '8M': 8, '16M': 9 }
|
fsizeb = { '512K': 0, '256K': 1, '1M': 2, '2M': 3, '4M': 4, '8M': 8, '16M': 9 }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user