This will be my first try at USB intefacing !

May I know how to transfer the data from pins : 11-15 of KT3170 IC to USB ? Data sheet : http://www.datasheetcatalog.org/datasheet/SamsungElectronic/mXuusvq.pdf I guess I will need to configure a Microprocessor for making the OS uderstand what profile of device is this , In that Case what will be my device profile ? Mine is an RF remote control receiver using DTMF which I want to connect to the PC.

I also have a doubt on fast can The KT3170 can interpret the DTMF tone. That is if I press a button (say 1) and immediately within the same second if I press key 2 Will it be able to recieve and decode the DTMF correctly with proper time synchronization ? What will be the latency if I transmit this signal through Frequency Modulation (FM) ?

link|improve this question

14% accept rate
2  
Off-topic for Stack Overflow - try chiphacker.com ? – Paul R Oct 5 '10 at 10:47
Thanks a lot Paul ! Got my info :) – NS Gopikrishnan Oct 6 '10 at 5:42
feedback

1 Answer

Method 1
Get yourself an Actel Igloo Nano Starter kit. This has a small FPGA connected to a USB port using a USB to UART chip and includes all the drivers you need.

Write some simple VHDL to convert the 4 bits into some sort of text pattern, e.g. letters A to F. The data will appear on a virtual serial port on your Windows or Linux PC (not sure if MAC drivers exist)

If you have PCB tools the step to convert your design to bespoke hardware is trivial.

Method 2
This is more difficult and more work, but you could use an LPC2000 device. The LPC2148 would be a good fit. Off the shelf code can be used to create a similar virtual serial port. Again generic drivers exist.
There are many cheap development boards for the LPC

Method 3
Use an USB-FIFO e.g. FTDI FT245BL, This converts parallel data into USB, but you may then have to get involved in writing a device driver. (LIBUSB is your friend here)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.