Sign In

Don't have a Xilinx account yet?

  • Choose to receive important news and product information
  • Gain access to special content
  • Personalize your web experience on Xilinx.com

Create Account

Username

Password

Forgot your password?
XClose Panel
Xilinx Home
Reply
Visitor
rjmyers
Posts: 6
Registered: ‎04-07-2011
0

Newbie with SP605 board -- any source examples for USB-UART use?

After discussion with my local Xilinx FAEs, I may be gaining access to a SP605 demo board.

Is  there any source examples (C code) that would take character input from a pc and echo it

back?

 

Being a newbie has its disadvantages at times...

 

-Bob

Xilinx Employee
austin
Posts: 3,682
Registered: ‎02-27-2008
0

Re: Newbie with SP605 board -- any source examples for USB-UART use?

Bob,

 

The FPGA is programmable logic, programmed in verilog, or VHDL.  If you want to echo a character, you can use a wire (from TX to RX).


Or, you can put two uarts in, and wire them back to back.


Or you can place a soft processor, and uarts, and then write a program to read uarts when they receive a character, and send it back.  Depending on the processor, there may or may not be a c complier (e.g. PicoBlaze has no gcc, and MicroBlaze does).

 

Austin

Austin Lesea
Principal Engineer
Xilinx San Jose
Visitor
rjmyers
Posts: 6
Registered: ‎04-07-2011
0

Re: Newbie with SP605 board -- any source examples for USB-UART use?

Hi;

 

Initially, I would like to generate a Microblaze system that would allow me to read in from the USB/UART and

then echo the character back via the USB/UART.  (Would have Hyperterm running on the PC).  I need to

demonstrate this ability first, then proceed to increasing  complexity by having the system accept

a command from the PC (echo it back to display on the PC's screen, if needed), interpret the command

and interact with the rest of the fpga (that does what it needs to do).

 

Putting on jumpers to run input to output won't demonstrate that I can get input and return it.

 

Thanks,

Bob

Xilinx Employee
austin
Posts: 3,682
Registered: ‎02-27-2008
0

Re: Newbie with SP605 board -- any source examples for USB-UART use?

http://www.xilinx.com/products/boards/v6embd/reference_designs.htm

 

 

Austin Lesea
Principal Engineer
Xilinx San Jose
Visitor
rjmyers
Posts: 6
Registered: ‎04-07-2011
0

Re: Newbie with SP605 board -- any source examples for USB-UART use?

The link you sent was for the Virtex 6 version of the board -- I am hoping to get

access to the Spartan 6 SP605 board.  I have downloaded the reference design zip file

and have started to look at some of the documentation that is available for it.

 

I have no knowledge of the AXI specs or IP at this time.

 

-Bob

Xilinx Employee
alaney
Posts: 6
Registered: ‎08-15-2011
0

Re: Newbie with SP605 board -- any source examples for USB-UART use?

[ Edited ]
Visitor
svenand
Posts: 7
Registered: ‎04-24-2012
0

Re: Newbie with SP605 board -- any source examples for USB-UART use?

I have written a blog on how to implement a MicroBlaze system on the SP605 board. You find it here: http://www.rte.se/blog/blogg-modesty-corex/benchmarking-microblaze
Visitor
svenand
Posts: 7
Registered: ‎04-24-2012
0

Re: Newbie with SP605 board -- any source examples for USB-UART use?