Ola pesoal eu aki de novo bom agora que descobri que minha placa é mesmo Phase-Drive baxei os arkivos do Cientista 13 para emc2 ai tudo bem esta ligando o emc2 mas tenho um plobeminha aki na pinagem pois quando tento mover o eixo Y ele nao se move e quando eu movimento o eixo x os dois se movem X e Y juntos jo troquei a pinagem mas nao resolveu se tiver algem que posa me dar uma forsa ai ficarei eternamente grato
# standard pinout config file for 3-axis steppers
# using a parport for I/O
#
# first load the parport driver
loadrt hal_parport cfg="0x0378"
#
# next connect the parport functions to threads
# read inputs first
addf parport.0.read base-thread 1
# write outputs last
addf parport.0.write base-thread -1
#
# finally connect physical pins to the signals
#Linca X na Porta paralela
net XphaseA => parport.0.pin-02-out
net XphaseB => parport.0.pin-03-out
net XphaseC => parport.0.pin-04-out
net XphaseD => parport.0.pin-05-out
#Linca Y na Porta paralela
net YphaseA => parport.0.pin-17-out
net YphaseB => parport.0.pin-16-out
net YphaseC => parport.0.pin-14-out
net YphaseD => parport.0.pin-01-out
#Linca Z na Porta paralela
net ZphaseD => parport.0.pin-09-out
net ZphaseC => parport.0.pin-08-out
net ZphaseB => parport.0.pin-07-out
net ZphaseA => parport.0.pin-06-out
# create a signal for the estop loopback
net estop-loop iocontrol.0.user-enable-out iocontrol.0.emc-enable-in
# create signals for tool loading loopback
net tool-prep-loop iocontrol.0.tool-prepare iocontrol.0.tool-prepared
net tool-change-loop iocontrol.0.tool-change iocontrol.0.tool-changed
###
### A sample home switch on the X axis (axis 0). make a signal,
### link the incoming parport pin to the signal, then link the signal
### to EMC's axis 0 home switch input pin
###
net Xhome parport.0.pin-13-in => axis.0.home-sw-in
net Yhome parport.0.pin-12-in => axis.1.home-sw-in
net Zhome parport.0.pin-11-in => axis.2.home-sw-in
###
### Shared home switches all on one parallel port pin?
### that's ok, hook the same signal to all the axes, but be sure to
### set HOME_IS_SHARED and HOME_SEQUENCE in the ini file. See the
### user manual!
###
# net homeswitches <= parport.0.pin-10-in
# net homeswitches => axis.0.home-sw-in
# net homeswitches => axis.1.home-sw-in
# net homeswitches => axis.2.home-sw-in
###
### Sample separate limit switches on the X axis (axis 0)
###
# net X-neg-limit parport.0.pin-11-in => axis.0.neg-lim-sw-in
# net X-pos-limit parport.0.pin-12-in => axis.0.pos-lim-sw-in
###
### Just like the shared home switches example, you can wire together
### limit switches. Beware if you hit one, EMC will stop but can't tell
### you which switch/axis has faulted. Use caution when recovering from this.
###
# net Xlimits parport.0.pin-13-in => axis.0.neg-lim-sw-in axis.0.pos-lim-sw-in