Re: LPC port of RepRapFirmware June 02, 2019 12:09PM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware June 07, 2019 01:12AM |
Registered: 7 years ago Posts: 110 |
Quote
flydeprutten
I made the mod on the LAN8720 module where I connected the RX_ER to NC.
Re: LPC port of RepRapFirmware June 13, 2019 11:32PM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware June 14, 2019 03:06AM |
Registered: 11 years ago Posts: 341 |
Quote
sinned
folks who are using the LAN module- what kind of throughput are you getting uploading gcode files? i seem to be topping out at ~ 80-100Kib/sec
good ? bad? ok?
Re: LPC port of RepRapFirmware June 15, 2019 05:07PM |
Registered: 13 years ago Posts: 224 |
Re: LPC port of RepRapFirmware June 17, 2019 01:23AM |
Registered: 11 years ago Posts: 341 |
Quote
jay_s
Bigtreetech have released the SKR pro which uses a STM32F407ZGT6 clocked at 168MHz. Is there any chance of getting a build which would support this? Might perform better than the LPC based boards.
Re: LPC port of RepRapFirmware June 17, 2019 02:34AM |
Registered: 10 years ago Posts: 14,685 |
Re: LPC port of RepRapFirmware June 18, 2019 09:14PM |
Registered: 7 years ago Posts: 110 |
Re: LPC port of RepRapFirmware June 19, 2019 01:55AM |
Registered: 10 years ago Posts: 14,685 |
Re: LPC port of RepRapFirmware June 20, 2019 06:04PM |
Registered: 5 years ago Posts: 148 |
Quote
dc42
I am in touch with someone else who has done a port of RepRapFirmware for STM processors.
Re: LPC port of RepRapFirmware June 25, 2019 05:12PM |
Admin Registered: 11 years ago Posts: 3,096 |
Quote
Pippy
Quote
dc42
I am in touch with someone else who has done a port of RepRapFirmware for STM processors.
That would be nice for the new SKR pro board !
Marlin is so flipping buggy all the time it's awful, it's in desperate need of help from those who can write code without deliberately introducing bugs, even if it's simply to make it safe to use.
Re: LPC port of RepRapFirmware June 28, 2019 03:33PM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware June 29, 2019 03:58AM |
Registered: 11 years ago Posts: 341 |
Quote
4lathe
I have been getting some great help from a board member here but decided to ask if anyone had a board.txt for a bigtree skr v1.3 board. I've been running Marlin 2 on it in an ENDER 3 with bltouch that's pretty frankenstein'd out. I ran Klipper on it before that but both of these need work. I run a duet3d board on a couple deltas and really like that setup. thx for any help
stepper.enablePins = {2.1, 2.8, 0.21, 2.12, 0.10}; stepper.stepPins = {2.2, 0.19, 0.22, 2.13, 0.1}; stepper.directionPins = {2.6, 0.20, 2.11, 0.11, 0.0}; stepper.hasDriverCurrentControl = false; //1.29 X- //1.28 X+ //1.27 Y- //1.26 Y+ //1.25 Z- //1.24 Z+ endstop.pins = {1.29, 1.27, 1.25}; //X, Y, Z Endstops // Bed E0 E1 heat.tempSensePins = {0.23, 0.24, 0.25}; //tb, th0, th1 heat.heatOnPins = {2.5, 2.7, 2.4}; //hbed, he0, he1 fan.pins = {2.3}; //cooling fan lpc.slowPWM.pins = {2.5}; lpc.slowPWM.frequencyHz = 10; //10Hz (for Bed PWM) lpc.fastPWM.pins = {2.7, 2.4}; lpc.fastPWM.frequencyHz = 250; //250Hz (for Hotend/Fan PWM) lpc.servoPins = {2.0}; specialPinMap = {2.0}; externalSDCard.csPin = 1.23; externalSDCard.cardDetectPin = 1.31; lpc.externalSDCard.spiFrequencyHz = 4000000; //LCD Pins (only ST9720 SPI currently supported) lcd.lcdCSPin = 0.16; //LCD Chip Select lcd.lcdBeepPin = 1.30; lcd.encoderPinA = 3.25; lcd.encoderPinB = 3.26; lcd.encoderPinSw = 0.28; //click lcd.lcdDCPin = NoPin; //DataControl Pin (A0) if none used set to NoPin lcd.panelButtonPin = NoPin;
Re: LPC port of RepRapFirmware June 29, 2019 06:05AM |
Registered: 5 years ago Posts: 148 |
Quote
sdavi
I started adding skr 1.3 config to rrf3 not too long ago. I don't have access to one, and was using this pinout diagram as a reference. Currently, there is no support for setting current etc when using drivers that use SPI or UART.
[/code]
Re: LPC port of RepRapFirmware June 29, 2019 06:49AM |
Registered: 11 years ago Posts: 341 |
Quote
Pippy
Does not the duets use SPI TMC drivers ? if so, could it not be added to your LPC port I wonder ?
Re: LPC port of RepRapFirmware June 30, 2019 02:43AM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware June 30, 2019 10:29PM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware June 30, 2019 11:15PM |
Registered: 11 years ago Posts: 341 |
Quote
4lathe
I haven't tackled the tmc2130's yet. still working on the BLTouch. when I issue m280 p0 s10 I get servo index invalid. same for p1-p9. it wants to treat it as a servo on one of the pwm pins but the white and black wires of the BLTouch are attached to the z Endstop( this worked in marlin 2.0) and the servo wires are connected to the skr servo pins (2.0). again this worked in marlin 2.0.
the m558 to define this is - m558 p9 c2 r0.2 h10 f240 t6000
the m574 is - m574 z1 s2
Re: LPC port of RepRapFirmware July 01, 2019 12:06AM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware July 01, 2019 12:29AM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware July 01, 2019 12:44AM |
Registered: 11 years ago Posts: 341 |
Quote
4lathe
YES. Probe now deploying and retracting.
M119 still only shows z: not stopped. Z probe: not stopped after m280 p60 s10 and me pressing and holding probe up.
Re: LPC port of RepRapFirmware July 01, 2019 02:11AM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware July 01, 2019 06:20AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware July 01, 2019 12:24PM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware July 01, 2019 02:04PM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware July 01, 2019 04:41PM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware July 01, 2019 09:02PM |
Registered: 11 years ago Posts: 341 |
Quote
4lathe
another issue. m280 p60 s10 works fine.
in sys/deployprobe.g I have 1 command m280 p60 s10. however when I issue m401 I get
Send: M401
Recv: Bad command: {\rtf1\ansi\ansicpg1252\cocoartf1671\cocoasubrtf500
Recv: Bad command: {\fonttbl\f0\fswiss\fcharset0 Helvetica
Recv: Bad command: {\colortbl
Recv: Bad command: \margl1440\margr1440\vieww10800\viewh8400\viewkind0
Recv: Error: G-Code buffer 'serial' length overflow
WARNING! Received an error from the printer's firmware, ignoring that as configured but you might want to investigate what happened here! Error: G-Code buffer 'serial' length overflow
Recv: Bad command: \f0\fs24 \cf0 M280 P60 S10
Re: LPC port of RepRapFirmware July 01, 2019 10:10PM |
Registered: 5 years ago Posts: 21 |
Re: LPC port of RepRapFirmware July 02, 2019 02:47PM |
Registered: 5 years ago Posts: 21 |
SKR 1.3 with LCD! July 03, 2019 12:57AM |
Registered: 7 years ago Posts: 110 |