Digitaltechnik14 Busse VGAProf. Dr.Jörg Vollrath13 MP3 Player und LFSR |
|
|
entity vga_gen is
generic(
-- VGA 1920x1080 sync parameters 50MHz Clock 3.5 pixels at once -> 548 x 1080 bad ok
HD: integer := 548; -- horizontal display area 640; 800
HF: integer := 34; -- h. front porch (8) 16; 40
HB: integer := 93; -- h. back porch (56) 48; 88
HR: integer := 59; -- h. retrace 96; 128
-- VD+VF+VB+VR-1 -> 1087
VD: integer := 1080; -- vertical display area 480; 600
VF: integer := 1; -- v. front porch (2) 11; 4
VB: integer := 32; -- v. back porch (41) 31; 23
VR: integer := 3 -- v. retrace (2) 2; 1
);
port(
clk, not_reset: in std_logic;
hsync, vsync: out std_logic;
video_on, p_tick: out std_logic;
pixel_x, pixel_y: out std_logic_vector (11 downto 0)
);
end vga_gen;
FPGA Prototyping by VHDL Examples:
|
|
|
|
|
OSI Schicht | Einordnung | Protokollbeispiel | Einheit | Kopplung | |
7 | Anwendung (Application) | Anwendungsorientiert | HTTP FTP SMTP |
Daten | Gateway, Content-switch |
6 | Darstellung (Präsentation) | ||||
5 | Sitzung (Session) | ||||
4 | Transport (Transport) | Transportorientiert | TCP, UDP | Router | |
3 | Vermittlung (Network) | IP | |||
2 | Sicherung (Data Link) | Ethernet, Token Ring | Rahmen, Frames | Bridge, Switch | |
1 | Bitübertragung (Physical) | Bits | Repeater, Hub |
Baud RatenSymbolrate Bitrate (bit/s); Bitdauer |
ParityFehlererkennung Anzahl der '1'er Even Parity (XOR) and odd NOT(XOR) parity |
|
|
|