Duet 3 hc6 firmware '''issues''
-
Just updated everything exept the frame on my 3d printter.
The printter powers on nicely.
Trying to run the duet in standalone mode, with the micro sd card.
The duet 3 hc6 wont show up on my routters connected devices list.
What are the files i need to place on the micro sd card?
is there somethins else i need, like drivers for my pc?
where can i get the stuff i might need to connect to the board? -
you should have a www folder on the SD card that has the contents of DuetWebControl-SD-x.x.x.zip such that you have www/index.html.gz on the card.
Pick a DuetWebControl-SD-x.x.x.zip file to match the version of the firmware installed on the board from the release page. https://github.com/dc42/RepRapFirmware/releases
Check out the guide for the Duet 2, steps 1-5 for getting connected to the USB console to find the version number https://duet3d.dozuki.com/Guide/1.)+Getting+Connected+to+your+Duet/7
-
Should the files provided be in the root of the sd card or in a folder?
-
D:. ├───sys │ config.g │ └───www │ favicon.ico.gz │ index.html.gz │ ├───css │ app.db918b7e.css.gz │ ├───fonts │ materialdesignicons-webfont.043774d1.woff │ materialdesignicons-webfont.27cb2cf1.woff2 │ materialdesignicons-webfont.9bfeb985.ttf.gz │ materialdesignicons-webfont.e971abae.eot.gz │ └───js app.ab1d3899.js.gz app.ab1d3899.js.map.gz
maybe drawing a "picture" helps?
-
Thanks for the help, this firmware stuff is pretty new to me.
-
The problem now is.
Your Duet rejected the HTTP request: page not found
Check that the SD card is mounted and has the correct files in its /www folder
Has all the data in it dont know if it is the correct once since there is no compatible webcontroll apparently.FIRMWARE_NAME: RepRapFirmware for Duet 3 MB6HC v0.6 or 1.0 FIRMWARE_VERSION: 3.0beta12 ELECTRONICS: Duet 3 MB6HC FIRMWARE_DATE: 2019-11-02b1
Routter can see duet just fine, the problem of geting to webcontroll still remains.
-
can you confirm the filesytem is fat32?
or connect to your duet with usb cable so we can run some commands in a terminal?
(but i do suspect the card is okay, if you're getting an ip address and a response from the duet it should have read your config.g file)
-
Yes i did format the system as fat32
-
and i can run commeands via usb no problem
-
Is this things even connected properly?
-The SD card is in the SD card slot.
-USB is connected.
-Ethernet cable is connected.
-The duet is only powered vai the usb cable, dont have a laptop and am not gonna rist a groundloop.
-Printter is fully asembled, only disconected PSU to avoid a posible surge, PSU is not connected to outlet.-FIRMWARE_NAME: RepRapFirmware for Duet 3 MB6HC v0.6 or 1.0 FIRMWARE_VERSION: 3.0beta12 ELECTRONICS: Duet 3 MB6HC FIRMWARE_DATE: 2019-11-02b1, note i did not find a coresponding version of duetwebcontroll.
version of webcontroll the SD card is 2.04What now?
-
M20 P/www
in the usb termimal should give some insight as to why it cant fine the web interface. -
@bearer said in Duet 3 hc6 firmware '''issues'':
M20 P/www
M20 P/www
Begin file list
NONE
End file list
ok -
well, that explains it; according to the duet the www folder is empty.
Duet Web Control 2.0.4 is the correct version for IRMWARE_VERSION: 3.0beta12 but it seems the files are not placed correctly.
can you put the SD card in your computer and run
tree /f d:\
from a command line if you're using windows (change d:\ to the drive that is your SD card) and compare to what I posted earlier; and make it match if not.if the card has more than one partition, pay attention to using the first one or format the card using the https://www.sdcard.org/downloads/formatter/ tool and copy the files over again.
hopefully that'll help or someone else can assist you as i'm off for a bit.
-
@Torppa You haven't put the DWC files in the www folder, then. Download DuetWebControl-SD.zip from https://github.com/chrishamm/DuetWebControl/releases/tag/2.1.1 , unzip it and copy files into the www folder (if they're not already in one to just copy across).
Setting up the SD card is exactly the same on Duet 3 standalone as on Duet 2. See https://duet3d.dozuki.com/Wiki/SD_Card and https://duet3d.dozuki.com/Wiki/Firmware_Overview#Section_SD_card_structure
Ian
-
M20 P/www
Begin file list
favicon.ico
index.html
css
fonts
js
End file list
okHad to format it, it had 7 partitions for some reason.
-
Now i got to the duet webcontroll page.
-
@Torppa said in Duet 3 hc6 firmware '''issues'':
Had to format it, it had 7 partitions for some reason.
Often Windows 'Quick' format does strange things to SD cards. Using the SD formatting tool is best.
Ian
-
Now the thing randomly looses connection webcontroll and crashes cant change the IP to a statick one since it crashes intantly when i try i.
-
Well this is just Nice...
After crashing
M20 P/www
Begin file list
NONE
End file list
okWindows does not regognize sd card at all.
-
@Torppa How are you trying to change to the IP address? Through the DWC? Ideally, do it via YAT over USB, because you connect to DWC via an IP address! So if you change the IP address, you'll no longer connect.
Realistically, you should connect via YAT, disable networking with M552 S0, then send M552 Pxxx.xxx.xxx.xxx S1, where xxx.xxx.xxx.xxx is the IP address you want to set. Alternatively, write this into the config.g in place of M552 P0.0.0.0 S1 that is there at the moment.
As for the erase of the SD card, make sure it is fully inserted. If you have removed it, then reinserted it, while the Duet is on, it may not mount the SD card unless you send M21.
Though if Windows is not recognising it, it's possible you removed it or powered down the Duet in the middle of a write, or the SD card itself is faulty, or has somehow got zapped, and has got corrupted. Usually the best resolution is to reformat it with the SD formatter utility, and put the files back on.
Ian