1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
=pod
=head1 NAME
gpx - G-code to X3G converter
=head1 SYNOPSIS
=over
=item gpx [F<-CFdgilpqrstvw>] [F<-b BAUDRATE>] [F<-c CONFIG>] [F<-e EEPROM>] [F<-f DIAMETER>] [F<-m MACHINE>] [F<-N h|t|ht>] [F<-n SCALE>] [F<-x X>] [F<-y Y>] [F<-z Z>] F<IN> [F<OUT>]
=back
=head1 OPTIONS
=over
=item B<-C>
Create temporary file with a copy of the machine configuration
=item B<-C>
Create temporary file with a copy of the machine configuration
=item B<-F>
write X3G on-wire framing data to output file
=item B<-N> F<h|t|ht>
Disable writing of the X3G header (start build notice), tail (end build notice), or both
=item B<-d>
simulated ditto printing
=item B<-g>
Makerbot/ReplicatorG GCODE flavor
=item B<-i>
enable stdin and stdout support for command line pipes
=item B<-l>
log to file
=item B<-p>
override build percentage
=item B<-q>
quiet mode
=item B<-r>
Reprap GCODE flavor
=item B<-s>
enable USB serial I/O and send x3G output to 3D printer
=item B<-t>
truncate filename (DOS 8.3 format)
=item B<-v>
verose mode
=item B<-w>
rewrite 5d extrusion values
=item B<-b> F<BAUDRATE>
Set F<BAUDRATE> for serial I/O. Default is 115200.
=item B<-c> F<CONFIG>
F<CONFIG> is the filename of a custom machine definition (ini file).
=item B<-e> F<EEPROM>
F<EEPROM> is the filename of an eeprom settings definition (ini file).
=item B<-f> F<DIAMETER>
F<DIAMETER> is the actual filament diameter in the printer.
=item B<-m> F<MACHINE>
F<MACHINE> is the predefined machine type. Available configurations are:
=over
=item c3
= Cupcake Gen3 XYZ, Mk5/6 + Gen4 Extruder
=item c4
= Cupcake Gen4 XYZ, Mk5/6 + Gen4 Extruder
=item cp4
= Cupcake Pololu XYZ, Mk5/6 + Gen4 Extruder
=item cpp
= Cupcake Pololu XYZ, Mk5/6 + Pololu Extruder
=item cxy
= Core-XY with HBP - single extruder
=item cxysz
= Core-XY with HBP - single extruder, slow Z
=item cr1
= Clone R1 Single with HBP
=item cr1d
= Clone R1 Dual with HBP
=item r1
= Replicator 1 - single extruder
=item r1d
= Replicator 1 - dual extruder
=item r2
= Replicator 2 (default)
=item r2h
= Replicator 2 with HBP
=item r2x
= Replicator 2X
=item t6
= TOM Mk6 - single extruder
=item t7
= TOM Mk7 - single extruder
=item t7d
= TOM Mk7 - dual extruder
=item z
= ZYYX - single extruder
=item zd
= ZYYX - dual extruder
=back
=item B<-n> F<SCALE>
F<SCALE> is the coordinate system scale for the conversion (ABS = 1.0035)
=item B<-x> F<X>, B<-y> F<Y>, B<-z> F<Y>
F<X> = the x axis offset
F<Y> = the y axis offset
F<Z> = the z axis offset
=back
=head1 EXAMPLES
=over
=item gpx -p -m r2 my-sliced-model.gcode
=item gpx -c custom-tom.ini example.gcode /volumes/things/example.x3g
=item gpx -x 3 -y -3 offset-model.gcode
=item gpx -m c4 -s sio-example.gcode /dev/tty.usbmodem
=back
=cut
|