Stamp vinculum connections
azaccagnino
Posts: 11
Hello, was reading on this forum that some of you where able to communicate with the Vinculum VDIP1 module. I am trying to do the same wit a Javelin stamp throught a UART. At the moment I have only connected power to it and the DTR#, DST# pins to my stamp pins.·In the·instructions they tell me that if I·bring DSR# (pin ADBUS5) low than DTR# (ADBUS4) should go low. I am unable to do this. No matter what I do to the DSR# the DTR# is always high!
Can anyone help?
Thank you,
Andrea Zaccagnino
Can anyone help?
Thank you,
Andrea Zaccagnino
Comments
Thank you for your help.
static final int pinTX = CPU.pin4; //transmit output, connect to device RX pin
static final int pinRX = CPU.pin5; //receive input, connect to device TX pin
static final int pinRTS = CPU.pin2; //handshake output, connect to device handshake input pin
static final int pinCTS = CPU.pin3; //handshake input, connect to device handshake output pin
static Uart tx = new Uart(Uart.dirTransmit,
pinTX,
Uart.invert,
pinCTS,
Uart.invert,
Uart.speed9600,
Uart.stop1);
static Uart rx = new Uart(Uart.dirReceive,
pinRX,
Uart.invert,
pinRTS,
Uart.invert,
Uart.speed9600,
Uart.stop1);
I also have an oscilloscope conneted to pinTX. When I send the following command: tx.sendString("Rx07") nothing happens. The pinTX does not send a signal (the oscilloscope is flat) . If on the other hand I associate the pinCTS with the rx Uart and the pinRTS with the tx Uart I have a signal ont the pinTX. What could cause this?
Thank you for your help.
jm.
jm.
1.·Do not have a device plugged onto the Vinculum
or
2. Have a BOMS class (flash drive stick)
The DATAACK line does not go low when DATAREQ is asserted low as described in the FTDI documents.
However if I plug on another device to Vinculum port 2 (HOST), such as a BLUETOOTH dongle, the Vinculum recognizes that a device has been plugged in but it does not recognize the TYPE of device. If I then assert the DATAREQ line low, Then I get the DATAACK line going low as expected.
I can only guesss that the VDAP firmware does not allow DATA MODE if a BOMS class device (flash drive) is plugged in and does not control the DATAACK line if NO DEVICE is detected. I'm waiting for confirmation of this behavior from FTDI.