Re: LPC port of RepRapFirmware August 01, 2018 10:16PM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
What's the current state of the v2 branch? If it's able to run a full print I'll try it otherwise I'll clone 1.21 first.
How is board selection done in RRF? In Marlin it's done by defining the motherboard in the config but I don't see something similar here. Also, does RRF use the onboard SD reader or the reader on the LCD controller?
Re: LPC port of RepRapFirmware August 02, 2018 10:04PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 02, 2018 11:02PM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware August 03, 2018 07:04AM |
Registered: 6 years ago Posts: 9 |
Re: LPC port of RepRapFirmware August 04, 2018 03:43PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 04, 2018 08:18PM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
@sdavi Is it ok to comment out the SharedSpi lines in the makefile? I'm not using an SPI thermocouple and the build is failing because it can't find the SharedSpi folder.
Re: LPC port of RepRapFirmware August 04, 2018 11:41PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 05, 2018 01:37AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware August 06, 2018 04:15PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 07, 2018 01:06AM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
Unfortunately it looks like the board hangs on startup with the hotend fan on full. Might be a pin config error but not sure how to debug.
Re: LPC port of RepRapFirmware August 07, 2018 10:34AM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 08, 2018 12:15AM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
Here is the LPC folder. Networking should be disabled in the makefile, but I'll double check. I noticed that some of the pins in the special pin map overlap with some of the used pins. Could this cause the issue?
Re: LPC port of RepRapFirmware August 08, 2018 06:52PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 08, 2018 08:29PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 09, 2018 12:18AM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
I'm having a weird issue with fan PWM. The fan only turns on at 50% and runs at full speed from 50-100%. Looks like it's not trying to PWM at all. However, when the fan turns off, the fan LED slowly fades out instead of abruptly turning off. The hotend seems to PWM just fine, so I'm not really sure what could be causing the issue.
Re: LPC port of RepRapFirmware August 12, 2018 02:15PM |
Registered: 11 years ago Posts: 14,685 |
Re: LPC port of RepRapFirmware August 18, 2018 04:57AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware August 18, 2018 05:56AM |
Registered: 11 years ago Posts: 14,685 |
Quote
sdavi
Thanks David, will look into that.
I'm still getting into the FreeRTOS stuff, any recommendations for the priorities of new tasks? I'm using FreeRTOS+TCP for the networking, which has 2 additional tasks - one for IP and one for EMAC. Currently, I moved Heat up a priority level and have them both running at the same priority at the old heat priority. So far it runs quite well on my CNC machine (no actual cutting yet), although CNC movements are a lot slower than a printer, so im not sure how well it will go printing yet. Anything to look out for?
Re: LPC port of RepRapFirmware August 22, 2018 01:53AM |
Registered: 11 years ago Posts: 341 |
Re: LPC port of RepRapFirmware August 22, 2018 09:13AM |
Registered: 6 years ago Posts: 9 |
Re: LPC port of RepRapFirmware August 22, 2018 08:15PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 22, 2018 10:00PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 23, 2018 01:23AM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
Looks like this version is having issues with homing - when I home x or y it resets the board, though z is fine. Do you know what could be causing the issue? The previous version worked with the same gcode configuration.
Re: LPC port of RepRapFirmware August 23, 2018 10:33AM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 23, 2018 10:43PM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 24, 2018 02:03AM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
M119 works correctly for all endstops. The error I got was the following:
22:39:32.817 : Last software reset time unknown, reason: Assertion failed, spinning module GCodes, available RAM 1108 bytes (slot 0)
22:39:32.818 : Software reset code 0x0093 HFSR 0x00000000 CFSR 0x00000000 ICSR 0x00428811 BFAR 0xe000ed38 SP 0x10007cdc Task 0xa5a5a5a5
22:39:32.818 : Stack: 10007b80 00000001 00011103 2007f95c ffffffff ffffffff 2007efd4 2007f95c ffffffff 00000000 02000000 2007f510 000089f7 10007d40 10007d6c 00000002 0000e095 10007d9d 0000e0db 2007f510 0000cf4b 2e353132 a5003030
22:39:32.818 : Error status: 0
Re: LPC port of RepRapFirmware August 24, 2018 02:16AM |
Registered: 9 years ago Posts: 166 |
Re: LPC port of RepRapFirmware August 24, 2018 02:41AM |
Registered: 11 years ago Posts: 341 |
Quote
AlexY
Works now, thanks. Repetier-Host sends M111 S6 on connection, which caused the problem. Is there a way to disable debugging to eliminate the need for manually setting M111 each time, or alternatively preventing Repetier-Host from sending M111 S6 on connection start?
Re: LPC port of RepRapFirmware August 25, 2018 06:10AM |
Registered: 11 years ago Posts: 14,685 |
Re: LPC port of RepRapFirmware August 26, 2018 02:15AM |
Registered: 9 years ago Posts: 166 |