From 5b3f5e7991c45677b88431659028450b2436a9ed Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Sun, 19 May 2019 09:17:46 -0700 Subject: [PATCH] Fix typo in elf2bin for QOUT binary generation Fixes #6115 as found by @micjoc --- tools/elf2bin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/elf2bin.py b/tools/elf2bin.py index 5d63c4fdbb..214cd9407a 100755 --- a/tools/elf2bin.py +++ b/tools/elf2bin.py @@ -25,7 +25,7 @@ import sys 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 } fsizeb = { '512K': 0, '256K': 1, '1M': 2, '2M': 3, '4M': 4, '8M': 8, '16M': 9 }