Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
You see the scroll slider right side? Scroll screen up to see it. But I see the problem. Will add an empty space below to make it easier to access the menu in next version.
-
No you can't. These are closed extensions to the host. They are node extendable. The configs are stored on disk for curaengine in WORKDIR/CuraEngine for slic3r in it's default or set folder. You can get the configs from there any time if you only n…
-
Normally the bootloader protects the last 2 or 4kb of ram preventing it from overwrite by some fuse settings. It might be that the sketch comes into that region, so you need to delete the bootloader and set fuses to unprotect the memory. Do this onl…
-
1) What exactly do you mean. Both host and server use mainly serial connection for printer connection. 2) Configure server to connect with settings you should have in your had book of printer. In host select Repetier-Server connector. When you selec…
-
No, except for Prusa MK3 I don't know any printer having the required sensors for that. So you can square it only by manually entering the values.
-
Triel requires internet connection to verify it is not over. Guess after restart it did not get a connection to license server right away.
-
Look if temperatures change. At print start it wait for heaters to reach temperature. While that happens it will not react on any command until the target temperature is reached.
-
On your pc you need to call the server instance of the pi. On touch display you see the possible IPs in settings->Network. It does not help checking the server with localhost - that shows a instance on your pc instead. Then check a the port is c…
-
Gear button in top line->User Profiles. Just add users and you will be asked to a login/password to connect the server.
-
Homing always goes 2 times towards home direction. Between it should make a back move to untrigger endstop signal. So make sure the back move is not set to 0. Sounds like that is your error.
-
In slic3r this is no problem. Select in object placement extruder 2 for the object. If slic3r des not add T1 or extruder commands without named extruder you can simple activate second extruder and then print.
-
Connect printer to pi directly, not to a pc! If I understand the touchscreen is working, but you do not connect to printer right? RAMBO has the odd behaviour that is powers usb connection over usb but not processor. So in normal browser gui when se…
-
Looks like you only need to reduce 600 byte. #define ARC_SUPPORT 0 should give you that much. Slicers do not generate arcs anyway.
-
Ok, so show us the log where it happens and the debug results. Maybe I get then an idea what is going wrong.
-
Just looked into the code and emergency buffer does not prevent longer commands to be send as long as they fit into buffer. So what are your communication settings and can you post the log where it happens. Please use real log so it contains everyth…
-
What is your buffer size? Try 127 bytes. Haven't had any problems with 127 byte buffers, with 63 it might be too small to add the emergency buffer. Not sure about it, but that might be a reason.
-
It is mono spaced. What I think about is converting to spaces before I store it in log and send around. That would also help the readers of logs.
-
Due to speed limits the console only shows the last I think 1000 lines filtered. As a result even if I not scroll down the next would move up over time. That is the reason I added the pause so I can concentrate on what I'm reading. This stops adding…
-
I have to think about it. But depending on text size it would not always format. e.g. if tab is 4 spaces. Main problem is that html has no concept for tab. A tab is just a whitespace.
-
What is your buffer size set for serial communication? If Marlin states Cap:EMERGENCY_PARSER:1 it will now reduce used buffer to save some byte for emergency. So if you have 63 as buffer length or less it might cause a problem that next command does…
-
Make sure to use the right process in simplify3d with the correct name. Correct name is what you see in url as printer name, not what you see. So "Felix TEC 4" is wrong just because it has spaces in name. You will see in url they got replaced.
-
If you mean a solid object with some small errors making it not solid it always depends on the object. After all it is buggy and no one knows what it would like correct. In windows 10 host has a automatic repair using microsoft/netfabb repair servic…
-
Then you did something wrong with the name. It is not the shown name, but what you see in the browser url. This can differ. Also make sure simplify3d uses the process for second printer with that name.
-
Hard to say. It's clear that until 12:02:29.186: N5456 M105everything was ok and from that point firmware did not return anything causing the timeouts. All you see is what server sends based on timeout, but no no response. Maybe there is a bug in th…
-
I guess GRR have modified the repetier.h to return 3.1 which does not exist. 0.92 sounds likely. But only comparing files would reveal what it is as they also might have started with 0.92 and add new data without changing the comment.
-
No position does not matter. max only works on 2 values so having it called on 4 will not work of course. Question is how did you manage that. Guess at some point a value was required and you have set 3 values instead. So see what variable is used …
-
Guessed that. Check if you changed heater pins compared to old version or used same pin e.g. for fan. Especially for ramps the fan pin is same as second extruder heater pin so it can disable heating when you enable fan for that output.
-
Firmware selector is not working, known bug so autodetect has to do and normally does as you see in windows. Often extruder only work when they are hot. Also make sure dry run is not enabled. Same settings like on windows should work. Linux has pr…
-
There is no userpins.h - that is for individual boards unknown to firmware so you have to create it with contents like in pins.h. So that part was correct. You omit the motherboard selector. LCD will not work directly since the pin usage for lcd/bo…
-
Seems to happen when it wants to set the slic3r infill patterns in host. So removing the settings before starting might help. They are stored in mono registry $HOME/.mono not sure from here on. software/repetier I guess. Then in slicers you see all …