electronics forum

Rules | Recent posts | topic RSS | Search | Register  | Log in

VHDL code for serial in serial out


Post new topic  Reply to topic    EDAboard.com Forum Index -> PLD, SPLD, GAL, CPLD, FPGA Design -> VHDL code for serial in serial out
Author Message
j hemangini



Joined: 21 Jul 2008
Posts: 35


Post22 Jul 2008 9:08   

serial in serial out vhdl code


I am using spartan-3a starter kit. I want to write VHDL code for serial in serial out . If someone have code for this then please post it.
Thank you.
Back to top
Google
AdSense
Google Adsense




Post22 Jul 2008 9:08   

Ads




Back to top
sree205



Joined: 13 Mar 2006
Posts: 421
Helped: 30


Post22 Jul 2008 9:17   

serial in / serial out in vhdl


library ieee;
use ieee.std_logic_1164.all;

entity SISO is
port (clk : in std_logic;
rst : in std_logic;
s_in : in std_logic;
s_out : out std_logic);
end SISO;

architecture s1 of SISO is
begin
process(clk,rst,sin)
begin
if(rst='0') then
sout <= 1'b0;
elsif(clk='1' and clk'event) then
sout <= sin;
end if;
end process;
end s1;
Back to top
mehrzad321



Joined: 14 Feb 2008
Posts: 6


Post22 Jul 2008 10:54   

verilog tutorial, serial out


Hi,
Can you clearify your need? what kind of process you want to be done on input data? do you really want to just give serial data from one hand and put it outside with another hand? both input and outout are serial?
Back to top
j hemangini



Joined: 21 Jul 2008
Posts: 35


Post24 Jul 2008 11:07   

vhdl coding spartan 3a


Actually I want to communicate my spartan-3a starter kit with hyperterminal and want to display on LCD ,what i write on hyperterminal. I got a vhdl code on website www.OPENCORES.org . But now i am unable to find all the pinouts defined in that code. I know only pinouts for RxD & TxD. If someone can help me then please post your views.
Thank you.
Back to top
Arabic versionBulgarian versionCatalan versionCzech versionDanish versionGerman versionGreek versionEnglish versionSpanish versionFinnish versionFrench versionHindi versionCroatian versionIndonesian versionItalian versionHebrew versionJapanese versionKorean versionLithuanian versionLatvian versionDutch versionNorwegian versionPolish versionPortuguese versionRomanian versionRussian versionSlovak versionSlovenian versionSerbian versionSwedish versionTagalog versionUkrainian versionVietnamese versionChinese version
Post new topic  Reply to topic    EDAboard.com Forum Index -> PLD, SPLD, GAL, CPLD, FPGA Design -> VHDL code for serial in serial out
Page 1 of 1 All times are GMT + 1 Hour
Similar topics:
vhdl code for serial communication (12)
vhdl code for serial communication (7)
vhdl code for seperating serial data (1)
code for serial adc (2)
Verilog/VHDL codes for parallel to serial and vice versa (4)
Need code for Serial comm using PIC16f877 (11)
Code for reading data from serial interface (6)
Test out RS-232 serial cable (1)
visual basic code for MCU to pc serial port connection ? (4)
please HELP- code for serial comm. from 89c51 to PC (1)


Abuse || Administrator || Moderators || Support us || sitemap
topic RSS