volconst

Results 92 comments of volconst

@ericmarsh, pronterface 2.0+ is python3 . You can start it with ./pronterface.py to avoid mistakes. The clipping problem could be because of display scaling. Launch pronterface and below the log...

Sending M105 is requesting temperature, which should happen after successful connect (this is a personal opinion, not based on the assumptions of the code). Can you see in the log...

> 2\. Were you able to print models longer than 1h before? > Yes. May be this is some memory leak in the GPU memory, e.g gpusSubmitDataBuffers fails to release...

@keefo try this test - double click the 3d viewer to pop up the advanced viewer and in it use the up/down keys to render layer by layer. test all...

> I am printing a large part now the large part could be fine even with 3d viewer.

> Is there way to dry run the print without connect to a printer? Use this as printer https://github.com/kliment/Printrun/blob/master/testtools/mock-printer.py instructions inside

This is a memory leak - dict sentlines is never freed. I believe this can be fixed with a macro even for running instances.

Try this macro: !print('Before free', len(self.p.sentlines)) !_max = 0 !_min = float('inf') !for k in self.p.sentlines.iterkeys(): ! _max = max(_max,k) ! _min = min(_min,k) !print('min max', _min, _max) !if _min...

Thanks for the feedback, @davija ! How large was the file in MB and lines?

2.1M lines, 67MB, thanks.