You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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 }
The text was updated successfully, but these errors were encountered: