Show Posts
|
|
Pages: 1 ... 3 4 [5] 6 7 ... 29
|
|
64
|
Using Arduino / Installation & Troubleshooting / Re: ARDUINO UNO installation problem
|
on: April 08, 2013, 07:35:07 am
|
|
The information in the guide is not accurate.
Here are the proper steps:
Look for Unknown Device under Other devices in Device Manager. Right click the Unknown Device in Device Manager Select Update Driver Software Select Browse my computer for software Click Browse button Select the Drivers folder under the location of your Arduino software installation. (Do not select the FTDI folder inside the Drivers folder) Click OK Click Next
|
|
|
|
|
72
|
Using Arduino / Networking, Protocols, and Devices / Re: How to connect a FTDI cable with GBoard?
|
on: April 02, 2013, 09:03:29 am
|
|
Do you have the Serial Monitor open or any other application connected to that serial port? You need to close the Serial Monitor or disconnect from that serial port before you upload again.
Otherwise, avrdude from the previous upload may not have terminated properly and still have that port open.
Open Task Manager to see if you have any avrdude processes still hanging around after you finish the upload.
|
|
|
|
|
73
|
Using Arduino / Installation & Troubleshooting / Re: Leonardo Serial Port issue with Windows 8
|
on: April 02, 2013, 08:12:28 am
|
|
This is expected behavior with the Leonardo. I am surprised you did not see this behavior with your previous OS.
The Leonardo shows up as two different CDC devices. When the bootloader is running it shows up as a CDC device with a unique device ID and then during normal operation, it shows up as another CDC device with a different device ID.
Windows will see these as two different serial devices and assign a different comm port number to each one.
When uploading to the Leonardo, the IDE will reset the device to initiate the bootloader. That is when you see one of the ports disappear and the other port appear. Once the upload is complete, the sketch will run and switch to the previous port.
It's possible that on your previous systems, you had the same com port number assigned to each CDC device, so that it looked like the same port. However, you still should have seen it briefly disappear and then reappear during the upload.
|
|
|
|
|
74
|
Using Arduino / Networking, Protocols, and Devices / Re: How to connect a FTDI cable with GBoard?
|
on: April 01, 2013, 03:08:58 pm
|
|
The Comm Socket is the correct place to connect your FTDI cable. The "Foca: A Tiny USB to UART Tool" serves the same purpose as your FTDI cable.
You will need to put a header on the Gboard and then rearrange the pins on the FTDI cable to match the following pinout:
Gboard: FTDI:
NC GND black - GND VDD33 red - VCC Rx orange - TXD Tx yellow - RXD GND NC DTR green - RTS#
|
|
|
|
|