BL TOUCH ONLY DEPLOYS WHEN I USE THE DEPLOY/RETRACT MACROS...
-
-
Please post the results of sending M122 and M98 P"config.g" in the gcode console.
Does M401 and M402 work to deploy and retract the probe?
Post the contents of your deployprobe.g and retractprobe.g files and confirm that they are located in the /sys folder and not the /macros folder.
Please fix your caps lock key before posting again.
-
@phaedrux said in BL TOUCH ONLY DEPLOYS WHEN I USE THE DEPLOY/RETRACT MACROS...:
M122
M122
=== Diagnostics ===
RepRapFirmware for Duet 2 WiFi/Ethernet version 3.2.2 running on Duet WiFi 1.02 or later
Board ID: 08DLM-996RU-N8PS0-6J1FJ-3S46M-KSTRP
Used output buffers: 3 of 24 (10 max)
=== RTOS ===
Static ram: 23460
Dynamic ram: 73420 of which 48 recycled
Never used RAM 15152, free system stack 191 words
Tasks: NETWORK(ready,162) HEAT(blocked,308) MAIN(running,449) IDLE(ready,20)
Owned mutexes: WiFi(NETWORK)
=== Platform ===
Last reset 00:00:41 ago, cause: software
Last software reset at 2021-08-08 21:07, reason: User, GCodes spinning, available RAM 15116, slot 0
Software reset code 0x0003 HFSR 0x00000000 CFSR 0x00000000 ICSR 0x0041f000 BFAR 0xe000ed38 SP 0x00000000 Task MAIN Freestk 0 n/a
Error status: 0x00
Aux0 errors 0,0,0
MCU temperature: min 24.7, current 25.4, max 25.7
Supply voltage: min 24.1, current 24.2, max 24.2, under voltage events: 0, over voltage events: 0, power good: yes
Driver 0: position 0, standstill, SG min/max not available
Driver 1: position 0, standstill, SG min/max not available
Driver 2: position 0, standstill, SG min/max not available
Driver 3: position 0, standstill, SG min/max not available
Driver 4: position 0, standstill, SG min/max not available
Driver 5: position 0
Driver 6: position 0
Driver 7: position 0
Driver 8: position 0
Driver 9: position 0
Driver 10: position 0
Driver 11: position 0
Date/time: 2021-08-08 21:08:20
Cache data hit count 48716574
Slowest loop: 7.78ms; fastest: 0.21ms
I2C nak errors 0, send timeouts 0, receive timeouts 0, finishTimeouts 0, resets 0
=== Storage ===
Free file entries: 10
SD card 0 detected, interface speed: 20.0MBytes/sec
SD card longest read time 1.0ms, write time 6.2ms, max retries 0
=== Move ===
DMs created 83, maxWait 0ms, bed compensation in use: none, comp offset 0.000
=== MainDDARing ===
Scheduled moves 0, completed moves 0, hiccups 0, stepErrors 0, LaErrors 0, Underruns [0, 0, 0], CDDA state -1
=== AuxDDARing ===
Scheduled moves 0, completed moves 0, hiccups 0, stepErrors 0, LaErrors 0, Underruns [0, 0, 0], CDDA state -1
=== Heat ===
Bed heaters = 0 -1 -1 -1, chamberHeaters = -1 -1 -1 -1
=== GCodes ===
Segments left: 0
Movement lock held by null
HTTP is idle in state(s) 0
Telnet is idle in state(s) 0
File is idle in state(s) 0
USB is idle in state(s) 0
Aux is idle in state(s) 0
Trigger is idle in state(s) 0
Queue is idle in state(s) 0
LCD is idle in state(s) 0
Daemon is idle in state(s) 0
Autopause is idle in state(s) 0
Code queue is empty.
=== Network ===
Slowest loop: 15.56ms; fastest: 0.00ms
Responder states: HTTP(0) HTTP(0) HTTP(0) HTTP(0) FTP(0) Telnet(0), 0 sessions
HTTP sessions: 1 of 8- WiFi -
Network state is active
WiFi module is connected to access point
Failed messages: pending 0, notready 0, noresp 0
WiFi firmware version 1.25
WiFi MAC address 98:f4:ab:d1:f0:18
WiFi Vcc 3.39, reset reason Turned on by main processor
WiFi flash size 4194304, free heap 25360
WiFi IP address 192.168.0.37
WiFi signal strength -51dBm, mode 802.11n, reconnections 0, sleep mode modem
Clock register 00002002
Socket states: 0 0 0 0 0 0 0 0
- WiFi -
-
@phaedrux said in BL TOUCH ONLY DEPLOYS WHEN I USE THE DEPLOY/RETRACT MACROS...:
M98 P"config.g"
M98 P"config.g"
HTTP is enabled on port 80
FTP is disabled
TELNET is disabled
Error: Pin 'fan1' is not free
Error: Fan number 2 not found
Warning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C
Warning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C -
@phaedrux No, M401 and M402 dont work i have M280 in my retract and deploy folders.
generated by RepRapFirmware Configuration Tool v3.1.1 on Thu Jun 04 2020 14:46:02 GMT-0400 (Eastern Daylight Time)
M280 P7 S10 ; deploy BLTouchgenerated by RepRapFirmware Configuration Tool v3.1.1 on Thu Jun 04 2020 14:46:02 GMT-0400 (Eastern Daylight Time)
M280 P7 S90 ; retract BLTouch -
I'm not an expert so I may be wrong,
In your config.g file, you created the BLtouch servo pin using
M950 S0 C"exp.heater3" ; create servo pin 0 for BLTouch
Note 'S0'
In your deploy and retract files, you are calling for servo pin7
M280 P7 S90 ; retract BLTouch
Note 'P7'
In the G-Code Wiki
"RRF3: Before you can use M280 you must create a GPIO port using M950. Then in the M280 command, the P parameter is the GPIO port number, not the logical pin number. Duet 2 supports up to 10 GPIO ports, numbers 0 to 9. No GPIO ports are allocated by default."Try changing the P7 to P0 in both retractprobe.g and deployprobe.g files
-
@phavey said in BL TOUCH ONLY DEPLOYS WHEN I USE THE DEPLOY/RETRACT MACROS...:
Try changing the P7 to P0 in both retractprobe.g and deployprobe.g files
Bingo.
-
@phaedrux You can close this one out but i have another question about how to level the bed manually. I cant use g32 if i dont have multiple z motors can i ?
-
@dakingofhearts2003 said in BL TOUCH ONLY DEPLOYS WHEN I USE THE DEPLOY/RETRACT MACROS...:
@phaedrux You can close this one out but i have another question about how to level the bed manually. I cant use g32 if i dont have multiple z motors can i ?
You can use this to make a manual adjustment assistant if you don't have independent motors and drivers.
https://duet3d.dozuki.com/Wiki/Using_the_manual_bed_levelling_assistant