Re: RADDS work now stable with RepRap Firmware February 27, 2016 10:45PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware February 27, 2016 10:55PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 28, 2016 02:52AM |
Registered: 9 years ago Posts: 11 |
Re: RADDS work now stable with RepRap Firmware February 28, 2016 03:49AM |
Registered: 11 years ago Posts: 14,685 |
Quote
GroupB
I fix my problem. That was the line "G10 P0 S0 R0" , Without a thermistor hook up it fail but as soon as you hook your thermistor its all good, probably a failsafe for broken thermistor I guess
Re: RADDS work now stable with RepRap Firmware February 28, 2016 03:55AM |
Registered: 11 years ago Posts: 14,685 |
Quote
dnewman
I found and fixed the issue with config.g causing a hang when it generates error responses (or any response which isn't an Ok response). The fix is checked in to the RADDS port. A new build (with 1.5.8beta) is at
https://github.com/dcnewman/RepRapFirmware/blob/dev/Release/RepRapFirmware-1.09r-dc42-radds-b.bin
The issue was specific to the RADDS port. It related to there not being network-based reporting paths. I had missed #ifdef'ing out a section. Was easy enough to #ifdef out a couple of enumerations and then let the compiler tell me where all they occurred. (That will also prevent that exact issue from biting again in the future should new code be added using those enum members.)
bool Webserver::GCodeAvailable(const WebSource source) const { return false; } char Webserver::ReadGCode(const WebSource source) return 0; } void Webserver::HandleGCodeReply(const WebSource source, OutputBuffer *reply) { OutputBuffer::ReleaseAll(reply); } void Webserver::HandleGCodeReply(const WebSource source, const char *reply) { }
Re: RADDS work now stable with RepRap Firmware February 28, 2016 10:25AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 29, 2016 10:27AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 11:28AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 12:43PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 12:59PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 01:26PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 01:29PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 01:44PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 01:57PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 02:07PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 02:24PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 03:54PM |
Registered: 9 years ago Posts: 185 |
Quote
GroupB
they talk about the firmware is too fast for the dvr8825 and to add stepper high delay 1 or 2 us... do that sound like this can be my problem ? is there such setting in reprapfirmware ?
edit : more research repetier say dvr8825 need 1.8us delay
Re: RADDS work now stable with RepRap Firmware March 04, 2016 04:13PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 04:57PM |
Registered: 11 years ago Posts: 14,685 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 05:24PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 05:44PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware March 04, 2016 06:02PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 05, 2016 03:08AM |
Registered: 11 years ago Posts: 14,685 |
reprap.GetPlatform()->StepLow(drive); dm = firstDM;
Re: RADDS work now stable with RepRap Firmware March 05, 2016 01:23PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 05, 2016 02:27PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware March 05, 2016 03:37PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 05, 2016 08:10PM |
Registered: 9 years ago Posts: 185 |
Quote
dc42
Dan, you could try adding a delayMicroseconds(2) call after these lines in DDA.cpp, around line 882:
reprap.GetPlatform()->StepLow(drive); dm = firstDM;
Re: RADDS work now stable with RepRap Firmware March 05, 2016 09:31PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware March 06, 2016 12:06AM |
Registered: 9 years ago Posts: 185 |
Quote
GroupB
Tested 1.09-e, its work I went up to 400 mm/sec (24000 mm/min) without problem, not missing a beat, on my 300 mark all the time.
Quote
GroupB
No more reason for dvr8825 user to not give a try to RRF now.
Quote
GroupB
I saw in repetier they have a setting for that too, a delay on direction
Re: RADDS work now stable with RepRap Firmware March 14, 2016 11:19PM |
Registered: 9 years ago Posts: 72 |