RetiredWizard / PyDOS

DOS-like OS for microcontroller boards running Micropython or Circuitpython

Home Page:https://www.youtube.com/watch?v=Az_oiq8GE4Y

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

'module' is not iterable error - hardware pins not usable

veryalien opened this issue · comments

There's a little bug in pydos_bcfg.py which gives an error 'module' is not iterable. Unfortunately that means none of the hardware pins are accessible from Pydos.

Line 77:
if 'I2S_DATA' in board:

Should be:
if 'I2S_DATA' in dir(board):

Thanks! Should be fixed now.