Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in Arduino/tools/elf2bin.py gives key error when using qout flash mode. #6115

Closed
micjoc opened this issue May 19, 2019 · 0 comments · Fixed by #6116
Closed

Typo in Arduino/tools/elf2bin.py gives key error when using qout flash mode. #6115

micjoc opened this issue May 19, 2019 · 0 comments · Fixed by #6116
Assignees
Milestone

Comments

@micjoc
Copy link

micjoc commented May 19, 2019

Just upgraded to 2.2.1. Generating the bin file did not work in one design because it was using qout mode. Could nail it down to this typo 'quot' instead of 'qout' gives a dictionary error when running it.

Arduino/tools/elf2bin.py
Line 22: fmodeb = { 'dout': 3, 'dio': 2, 'quot': 1, 'qio': 0 }

should be:
fmodeb = { 'dout': 3, 'dio': 2, 'qout': 1, 'qio': 0 }

@earlephilhower earlephilhower added this to the 2.5.2 milestone May 19, 2019
@earlephilhower earlephilhower self-assigned this May 19, 2019
earlephilhower added a commit to earlephilhower/Arduino that referenced this issue May 19, 2019
earlephilhower added a commit that referenced this issue May 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants