Possible to see initial startup messages via WiFi?
-
Greetings,
I've just completed the commissioning process for a new T3P3 Kossel Mini with Duet WiFi and Titan Extruder. Build process went very smoothly, as did the commissioning.
One question:
When connected to Pronterface via USB, I was able to see feedback from the initial commands in config.g. I noticed I was getting some messages about certain commands being unnecessary or deprecated. When only connected via WiFi, I don't see a way to review the initial startup logs – is there a way?
I have updated to the following releases:
Firmware Name: RepRapFirmware for Duet WiFi
Firmware Electronics: Duet WiFi 1.0
Firmware Version: 1.18.1 (2017-04-09)
WiFi Server Version: 1.03 (ch fork)
Web Interface Version: 1.15aThanks for any advice.
John
Below is my current config.g in case there are obvious items that aren't needed for the Kossel Mini with DuetWifi runnign 1.18.1:
; Configuration file for T3P3 Mini Kossel R3 with Duet WiFi ; Communication and general M111 S0 ; Debug off M550 PCharlotte3D ; Machine name (can be anything you like) M551 Preprap ; Machine password (used for FTP) M555 P2 ; Set output to look like Marlin M575 P1 B57600 S1 ;No longer required: Set auxiliary serial port baud rate and require checksum (for PanelDue) ; For WiFi only M552 S1 ; Start WiFi ; Axis and motor configuration M569 P0 S1 ; Drive 0 goes forwards M569 P1 S1 ; Drive 1 goes forwards M569 P2 S1 ; Drive 2 goes forwards M569 P3 S1 ; Drive 3 goes forwards M569 P4 S0 ; Drive 4 goes forwards M574 X2 Y2 Z2 P1 ; set endstop configuration (all endstops at high end, active high) ;*** The homed height is deliberately set too high in the following - you will adjust it during calibration ; M665 R105.6 L215.0 B85 H250 ; set delta radius, diagonal rod length, printable radius and homed height M665 R103.615 L215.0 B85.0 H247.525 X-0.360 Y-0.290 ; osh - auto calibrate 5/7/2017 ; M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them M666 X0.80 Y-0.62 Z-0.17 ; osh - auto calibrate 5/7/2017 M92 X80 Y80 Z80 ; Set axis steps/mm M906 X1000 Y1000 Z1000 E800 I60 ; Set motor currents (mA) and increase idle current to 60% M201 X1000 Y1000 Z1000 E1000 ; Accelerations (mm/s^2) M203 X20000 Y20000 Z20000 E3600 ; Maximum speeds (mm/min) M566 X1200 Y1200 Z1200 E1200 ; Maximum instant speed changes mm/minute G21 ; Work in millimetres G90 ; Send absolute coordinates... M83 ; ...but relative extruder moves ; Thermistors and heaters M305 P0 T100000 B3950 R4700 H0 L0 ; Typical Chinese bed thermistor. Put your own H and/or L values here to set the bed thermistor ADC correction. M305 P1 T100000 B4388 R4700 H0 L0 ; E3Dv6 hot end. Put your own H and/or L values here if necessary to set the first nozzle thermistor ADC correction. ; M301 H0 P20 I0.5 D1000 T0.85 W150 B5 ; Default PID settings for the bed M143 S290 ; Set maximum hotend temperature for tightening V6 nozzle. Comment out for default maximum 262C M570 H1 P120 T120 ;extend the heater fault timeout to 120 seconds for testing M301 H1 P10.4 I0.07 D34.6 T0.50 ; Legacy PID settings for extruder 0. M307 H1 A569.6 C157.6 D4.7 B0 ; Measured PID for E0 = E3D V6 with 24V 40W cartridge M570 S200 ; Allow extra heating time ; Tool definitions M563 P0 D0 H1 ; Define tool 0 G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures M92 E404 ; Set extruder steps per mm - osh 5/5/2017 ; Z probe and compensation definition M558 P1 X0 Y0 Z0 H3 F300 T12000 ; Z probe is IR and is not used for homing any axes, Z probe dive height 3mm, probing speed 300mm/min, travel speed 12000mm/min G31 X0 Y0 Z0.245 P500 ; Set the zprobe offset and threshold (put your own values here). For a delta, use zero X and Y offset and measure Z. ;*** If you are using axis compensation, put the figures in the following command ; M556 S78 X0 Y0 Z0 ; Axis compensation here ; M207 S7.0 F3600 Z0.1 ; Set firmware retraction details. Comment out pending more info ; M572 D0 S0.1 ; set pressure advance. Comment out pending more info T0 ; select first print head
-
The network isn't started until config.g has been fully processed, so the startup messages are not visible through the the network interface.
In your configuration.g file the M570 S200 command is redundant. The M143 command should preferably have parameter H1 to specify the heater number. The comment on the G31 command about using zero XY offset for the Z probe no longer applies. The M301 command is redundant because the M307 command overrides it.
-
Thanks for the explanation, David.
I will make the suggested changes.
John