Re: LPC port of RepRapFirmware October 12, 2019 04:32AM |
Registered: 11 years ago Posts: 341 |
Quote
DocSolo
Hi sdavi,
Thanks for the quick reply. I'll look into it even if I'm not comfortable with coding. I'm always up for learning new stuff.
DocSolo
Re: LPC port of RepRapFirmware October 13, 2019 01:22AM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware October 13, 2019 03:28PM |
Registered: 11 years ago Posts: 14,686 |
Quote
DocSolo
Hi all,
I got my hands on a ENC28J60 LAN ethernet module. I have a BTT SKR v1.3 and got the RRF working when connected to USB. Is there any way to Connect this module to the SKR now that software SPI is implemented. I don't use a LCD screen.
Thanks in advance for any info.
DocSolo
Re: LPC port of RepRapFirmware October 15, 2019 06:56PM |
Registered: 7 years ago Posts: 110 |
Quote
PB
3. On temperature plot I notice short but high spikes at all thermistors. Probably only one reading wrong. Not causing problems. [attachment 112100 Untitled.jpg]
Re: LPC port of RepRapFirmware October 25, 2019 02:26PM |
Registered: 5 years ago Posts: 27 |
Re: LPC port of RepRapFirmware October 26, 2019 02:50AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware October 26, 2019 04:18PM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware October 27, 2019 12:31AM |
Registered: 11 years ago Posts: 341 |
Quote
sinned
I am pretty sure its getting noise from somewhere or there is the tiniest of connection issues. i dont have an oscilloscope to check Agnd, Aref, Vref.
every once and a while after i get 2-3 layers into a print, the controller will spit out a heater fault but I dont have any more info to figure it out with. the fault message usually only appears on the paneldue consol, not DWC.
that is one thing i miss about octoprint- the tempsgraph and the log.
Re: LPC port of RepRapFirmware October 27, 2019 02:20AM |
Registered: 7 years ago Posts: 1,007 |
Quote
sdavi
Quote
sinned
I am pretty sure its getting noise from somewhere or there is the tiniest of connection issues. i dont have an oscilloscope to check Agnd, Aref, Vref.
every once and a while after i get 2-3 layers into a print, the controller will spit out a heater fault but I dont have any more info to figure it out with. the fault message usually only appears on the paneldue consol, not DWC.
that is one thing i miss about octoprint- the tempsgraph and the log.
RRF also allows you to define what conditions define a "heater fault" with M570. You can set how far it can deviate from the set temp and also how long the fault must exist before it triggers the heater fault.
In RRF3 I moved all heater PWM to software so they could be individually configurable, I had to change the priority of the timer generating the software PWM as I noticed that only while printing many very short moves the temp would fluctuate a bit, I suspect this was caused by the step interrupt, so now it is a higher priority than the step interrupt. That priority issue would likely be affecting the V2 version too, but only for those boards that didn't have the heater pin on a hardware capable PWM pin. Although there has been no interest in RRF3 on lpc so I haven't bothered releasing anymore updated binaries for it.
Re: LPC port of RepRapFirmware October 27, 2019 05:43AM |
Registered: 11 years ago Posts: 341 |
Quote
MKSA
For bed heating in bang bang mode (I don't see the need for PID here) I suppose you don't use PWM ?
Re: LPC port of RepRapFirmware October 27, 2019 06:15AM |
Registered: 7 years ago Posts: 1,007 |
Re: LPC port of RepRapFirmware October 27, 2019 02:27PM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware October 27, 2019 11:55PM |
Registered: 11 years ago Posts: 341 |
Quote
sinned
2. I will look into M570 a little bit more. Is there any logging in RRF for the messages?
The most un-nerving thins is that the fault reporting is on the PanelDue, NOT on the gcode console. So unless I am actually at the printer, I dont see the message. And PanelDue messages seem to scroll into oblivion.
Re: LPC port of RepRapFirmware November 02, 2019 11:51PM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware November 04, 2019 11:25AM |
Registered: 7 years ago Posts: 1,007 |
Re: LPC port of RepRapFirmware November 05, 2019 12:10AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware November 05, 2019 07:09PM |
Registered: 7 years ago Posts: 1 |
Re: LPC port of RepRapFirmware November 26, 2019 01:19AM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware November 26, 2019 02:08AM |
Registered: 11 years ago Posts: 14,686 |
Re: LPC port of RepRapFirmware November 26, 2019 02:29AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware November 26, 2019 01:25PM |
Registered: 7 years ago Posts: 110 |
Quote
sdavi
@sinned your also still running RC1 of 2.04. The latest v2.04 was uploaded earlier this month.
Re: LPC port of RepRapFirmware December 02, 2019 07:26PM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware December 02, 2019 08:58PM |
Registered: 11 years ago Posts: 341 |
Quote
sinned
I am hoping to confirm this- if you are using a board with modular stepper drivers, like A4988 or DRV8825's, there is no need for using the M906 command to define motor or idle currents.
M906 X800 Y800 Z800 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
thanks in advance
Re: LPC port of RepRapFirmware December 08, 2019 10:01PM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware December 09, 2019 02:30AM |
Registered: 11 years ago Posts: 14,686 |
Quote
sdavi
Updated binary to RRF 2.05RC2 (download from the releases page): [github.com]
Also included is the latest version of DWC for those using DWC2.
Re: LPC port of RepRapFirmware December 14, 2019 02:13AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware December 14, 2019 05:45PM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware December 16, 2019 12:29PM |
Registered: 7 years ago Posts: 1,007 |
Re: LPC port of RepRapFirmware December 16, 2019 10:04PM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware December 17, 2019 03:02AM |
Registered: 7 years ago Posts: 110 |