M950 and Pin Names
-
Working example for D3 hardware, with several heaters. May or may not help...
-
@Danal Thanks for your quick response - had a quick look but am still unsure where you got the names of your pins from? Your heater names for example: 1out0 and 1out1 where are they specified - it's not knowing what the firmware recognises that does my head in!
-
Pin names are listed at https://duet3d.dozuki.com/Wiki/RepRapFirmware_3_overview#Section_Pin_names.
-
@dc42 Brilliant! Totally missed that. Now to get started. thanks
-
@woodworksimon STILL STRUGGLING!
Custom Config reads:; #####OLD#### RepRap 2.04 ############
; CONVERT HEATERS OUTPUT INTO SWITCHED OUTPUTS
M307 H1 A-1 C-1 D-1
M307 H2 A-1 C-1 D-1
; FANS ON
; M42 P1 S1; ##### NEW #### RepRap3.0 beta12 ############
; ASSIGN OUTPUT PIN
M950 P0 C"E0HEAT"
M950 P1 C"E1HEAT"M950 P2 C"FAN0" M950 P3 C"FAN1" M950 P4 C"FAN2"
; FANS ON - works
M42 P0 S1
; LED Spindle light ON - works
M42 P1 S1; RRF3 fan output FULL POWER AT 2000HZ
M42 p4 s1No voltage out - (tried p2 and p3 as well). Intend running laser off p4, I assume when I change to laser mode I am unable to get output unless G1 is called? So to set up focus position, I would have to return to CNC mode - First things first, why no output on these pins?
-
My guess looking at the duet gcode documentation is that you should be using F for fan rather than P.
So you should have
M950 F0 C"FAN0" -
@jay_s_uk
By my understanding, the rrf3 strips away the intended pin out use and replaces with up to 10 device outputs.
Logically, if I can repurpose heater pins to a pwm output, I should be able to do the same to any of the other configurable ports, irrespective of their original purpose. The proposed use seems to be specified with H(eater), F(an), P(General Purpose port), or S(ervo).
Hence my choice of P.
I'll try 'F' anyway, thanks for the suggestion. -
@woodworksimon said in M950 and Pin Names:
; RRF3 fan output FULL POWER AT 2000HZ
M42 p4 s1No voltage out - (tried p2 and p3 as well). Intend running laser off p4, I assume when I change to laser mode I am unable to get output unless G1 is called? So to set up focus position, I would have to return to CNC mode - First things first, why no output on these pins?
- Was that Fan2 output working when you were using RRF2?
- If you send M950 P4 C"FAN2" from the console, what is the response?
- If you are using laser mode, what M452 command do you ave for RRF3?
-
@dc42
1: Fan 2 (left hand pwm fan output on board) working before upgrade.
2: M950 P4 C"fan2" gives: Pin Fan2 is not free, so sent P4 C"Nil" , but still not free.
3: M452 is set to c"fan2" Q2000, and I have also prefixed the lines in my macro with M950 P4 C"nil" and M950 P4 c"fan2" to double check. -
@woodworksimon said in M950 and Pin Names:
M452 is set to c"fan2" Q2000, and I have also prefixed the lines in my macro with M950 P4 C"nil" and M950 P4 c"fan2" to double check.
That's the problem. You have allocated the Fan2 output to thew laser, so it's not available as GPIO. You can control it using M3 Sxx and M5 commands. and/or with S parameters on G1 commands.
Note, there is a bug in M3/M5 handling in the current RRF3, which will be fixed in the next release (the same bug is already fixed in RRF 2.05RC2). So for now, if using RRF3 then you should only control the laser using S parameters on G1 commands.
-
As I am double handling the CNC, I call the laser with a macro and return it (for safety) to cnc from the macro when when finished. The above settings were made in cnc mode (M453) and the m452 was only called after the M950 line.
If I run P4 C"nil" does that not release the pin anyway? -
@woodworksimon
Re the output from Fan2, (when we get it working) is it available to manually control as intended from a macro when stationery? BTW, am getting a steady 0.2v across the heater pins - correct? -
@woodworksimon said in M950 and Pin Names:
@woodworksimon
Re the output from Fan2, (when we get it working) is it available to manually control as intended from a macro when stationery? BTW, am getting a steady 0.2v across the heater pins - correct?In Laser mode, no. The laser will only fire during movement.
-
@dc42 Ok - Can use a macro to laser engrave after setting up first in cnc mode.
Will still need to send output to Fan 2 - how can I release the pins for output if NOT in M452 mode (nil doesn't work) -
If you haven't allocated the pin in M452 then it will be either free or configured as fan 2. If it is configured as fan 2 then you can free it using:
M950 F2 C"nil"
However, if you have set it up as the M452 laser control output, then I think M452 C"nil" ought to work.
-
@dc42
Been trying for the last hour or so, briefly got it responding, but would give me output in laser mode using M42 without the m452 command?Stubbornly refuses to release in either laser mode or cnc mode.
So put this macro together to try... if I am missing something, I apologise, but the comments are how I understand the logic... still not releasing!; RRF3 fan ON test
;################### HALF POWER AT 50HZ ##################; SET CNC MODE
M453;======================================================
; CLEAR FAN PIN OUTPUT BUFFER
;======================================================; release DUET pins 'fan 2' from FAN output
m950 f2 c"nil"; DOUBLE CHECK: RELEASE MAPPED GPIO OUTPUT P4
M950 P4 C"NIL"; PREPARE GPIOO output 'p4' ONTO FAN2 PINS AT 50HZ
m950 p4 c"fan2" Q50; SWITCH output ON p4 at HALF power 125/255
m42 p4 s125 -
Yes that should work. If you send M950 P4 with no other parameters, what is the response?
-
@dc42
'gpio port has no pin' - so why has the m950 p4 line not mapped onto fan2? -
Syntax query for the new M452 - was originally embedding it in Vectric post processor to automatically switch to laser mode. Ie "M452 P2 R50 F500" (Quotes are expected).
New M452 ie: "M452 C"fan2" R50 F500" errors because of the two sets of quotes I assume. Any thoughts as to a work around? -
@woodworksimon said in M950 and Pin Names:
@dc42
'gpio port has no pin' - so why has the m950 p4 line not mapped onto fan2?Probably because the original M950 P4 command failed, which is probably because the fan2 pin had already been allocated to something else.
@woodworksimon said in M950 and Pin Names:
Syntax query for the new M452 - was originally embedding it in Vectric post processor to automatically switch to laser mode. Ie "M452 P2 R50 F500" (Quotes are expected).
New M452 ie: "M452 C"fan2" R50 F500" errors because of the two sets of quotes I assume. Any thoughts as to a work around?Does the Vectric post processor provide a means for escaping quotes within the string, for example by preceding the embedded quote with a backslash character or a second quote?
If not, then I suggest you pick an un-allocated M-code, for example M4520. Use M4520 with no parameters in your post processor script. Then create file sys/M4520.g and put the full M452 command in that.