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
I cannot finish almost any of my prints as they stop after a few minutes (or seconds). The error message I get at the console is:
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.6/threading.py", line 532, in __bootstrap_inner
self.run()
File "/usr/lib/python2.6/threading.py", line 484, in run
self.__target(_self.__args, *_self.__kwargs)
File "/home/misan/Documentos/prusa/Printrun/printcore.py", line 79, in _listen
line=self.printer.readline()
File "/usr/lib/python2.6/dist-packages/serial/serialutil.py", line 60, in readline
c = self.read(1)
File "/usr/lib/python2.6/dist-packages/serial/serialposix.py", line 320, in read
buf = os.read(self.fd, size-len(read))
OSError: [Errno 11] Recurso no disponible temporalmente
I'm running 10.4 64bit Ubuntu with python-serial 2.3.1. Problem happens with or without power in the RAMPS board (I guess it is not an EMI problem). Firmware is Sprinter.
As I understand it, it seems the serial port device vanishes temporarily so serialposix cannot complete a read. dmesg however, does not show a USB disconnect/connect cycle and USB device responds happily. I guess it might be an OS or pyserial problem, but I'm reporting it here just in case.
The text was updated successfully, but these errors were encountered:
I've used other (unrelated) Java code to upload the G-CODE to my printer. I can see that at a (random) given point my board fails to return "Ok". So printing is stopped.
Because of this I do not think Printrun is to blame and I'm closing this issue.
I cannot finish almost any of my prints as they stop after a few minutes (or seconds). The error message I get at the console is:
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.6/threading.py", line 532, in __bootstrap_inner
self.run()
File "/usr/lib/python2.6/threading.py", line 484, in run
self.__target(_self.__args, *_self.__kwargs)
File "/home/misan/Documentos/prusa/Printrun/printcore.py", line 79, in _listen
line=self.printer.readline()
File "/usr/lib/python2.6/dist-packages/serial/serialutil.py", line 60, in readline
c = self.read(1)
File "/usr/lib/python2.6/dist-packages/serial/serialposix.py", line 320, in read
buf = os.read(self.fd, size-len(read))
OSError: [Errno 11] Recurso no disponible temporalmente
I'm running 10.4 64bit Ubuntu with python-serial 2.3.1. Problem happens with or without power in the RAMPS board (I guess it is not an EMI problem). Firmware is Sprinter.
As I understand it, it seems the serial port device vanishes temporarily so serialposix cannot complete a read. dmesg however, does not show a USB disconnect/connect cycle and USB device responds happily. I guess it might be an OS or pyserial problem, but I'm reporting it here just in case.
The text was updated successfully, but these errors were encountered: