@chrishamm Yes, that worked. Thanks a lot.
Latest posts made by Yukikaze
-
RE: Confused about recent 12864 Display Fix (3.5.0 rc 2)
-
RE: Confused about recent 12864 Display Fix (3.5.0 rc 2)
@chrishamm No, i tried that already.
-
Confused about recent 12864 Display Fix (3.5.0 rc 2)
I have a duet 5 Mini with a SBC and a 12864 Display.
Since SD card access doesn't work with a SBC i made a button for every Macro:button R26 C40 F0 W64 V0 T"Lights OFF" A"M98 P#0" L"/macros/LightOFF"
This worked flawlessly until some Time last year (can't say exactly which update broke it. I assumed it would be fixed someday so i just ignored it.
Now i updated to 3.5.0 Release Candidate 3 and saw that in rc2 there was a fix that should solve my issue:"In menu files for a 12864 display it was not possible to include a double-quote character in the command string for an A parameter (issue 909). This made it impossible to use the M98 command in such a parameter because the P argument of the M98 command must now be enclosed in double quotes."
https://github.com/Duet3D/RepRapFirmware/issues/909
Sadly, I'm confused how i have to change my code to get it to work. I tried a few things, but none of them worked.
It would be great if someone could modify my code for me.
-
RE: Duet 3 SBC with 12864 Display, SD Card access
@dc42 I installed the 3.5.0bet4 now and it still doesn't report SD 0 as mounted if i send M122:
=== Storage === Free file entries: 20 SD card 0 not detected, interface speed: 0.0MBytes/sec SD card longest read time 0.0ms, write time 0.0ms, max retries 0
I can use my macro files trough the display if i create a button with the corresponding filepath:
button R13 C1 F0 H0 V5 T"- Bed Correction" A"M98 P#0" L"/macros/Bed correction"
But the list files command doesn't work. It complains about not finding an SD:
files R15 N4 I"/gcodes" A"M32 #0|return|return"
or
files R15 N4 I"0:gcodes" A"M32 #0|return|return"
The Documentation of the 12864 Displays tells me that the command isn't supportet with a SBC configuration:
"Display a list of files N files high and allow one of the files to be selected. The list uses the full width of the display. This menu item type is not available when the Duet is used with a Single Board Computer."
-
RE: Duet 3 SBC with 12864 Display, SD Card access
@dc42 RepRapFirmware for Duet 3 Mini 5+ 3.4.0 (2022-03-15)
-
Duet 3 SBC with 12864 Display, SD Card access
I connected a 12864 Display to my Duet 5 mini thats running in SBC mode. The Screen works, but i got no access to the macros and printing files.
I guess the problem is, that in SBC mode, the SD card is a virtual one.
Running M122 tells me that there is no SD0 in my setup.Is there a way to get access to these files trough the display?
Thanks