G
Hi,
Sorry I must have missed your topic last week,
The ENODEV error occurs when the device is not available, for example like this:
>>> open('/sd/file.py','w')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OSError: [Errno 19] ENODEV
>>> open('/flash/file.py','w')
<io.TextIOWrapper 3f94f010>
>>> open('/lib/file.py','w')
Which is basically the operation where it stops working.
When I try to write a file to the SD card or lib folder on root, which is not there, it will return the error. Similarly,
>>>open('/flash/lib/file.py', 'w')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OSError: [Errno 2] ENOENT
Will give the error for NO ENTRY, as I did not create the lib folder in /flash/
You are probably supposed to put the files inside a flash or lib folder? Check the pymakr online interface to see if it is correct. Let me know!
Gijs