Author Topic: Accessing the JTAG COM Port from another µC  (Read 3150 times)

sjoshi

  • Active Member
  • *
  • Posts: 23
Accessing the JTAG COM Port from another µC
« on: July 01, 2020, 01:57:05 PM »
Hello,

this is a long shot but I thought I should ask it here anyways. I have a stm32 with a USB host port. I am planning to interface it with the CYC1000 over some interface. I can communicate with the CYC1000 over UART easily from a PC using realterm. I want to have a similar interface from my µC. Most of the information on the FTDI chips appears to be closed source. They provide a bunch of precompiled binaries and provide the necessary API. USB tree view shows two simple endpoints. It would be interesting to know if someone has come across some information which would make it possible to acces the UART via bare metal.

I cannot connect tha uart from the stm directly to the cyc1000 as all uarts are already occupied.

Regards,
Sjoshi


Thomas D

  • Active Member
  • *
  • Posts: 38
    • Trenz Electronic GmbH
Re: Accessing the JTAG COM Port from another µC
« Reply #1 on: July 08, 2020, 09:45:46 AM »
Hi,
Most of the information on the FTDI chips appears to be closed source. They provide a bunch of precompiled binaries and provide the necessary API.
The library 'libFTDI' is an open source library to communicate with some ftdi chips.
Maybe this will help a bit.

br
Thomas

sjoshi

  • Active Member
  • *
  • Posts: 23
Re: Accessing the JTAG COM Port from another µC
« Reply #2 on: July 08, 2020, 11:47:13 AM »
Hello Thomas,

that looks a lot like what I am looking for. That shall help me a "byte" :). Thanks for the tip!

Regards,
Sjoshi