Altera_Forum
Honored Contributor
8 years agors232 uart ip :: user guide
hi,
// unnamed.v
// Generated using ACDS version 16.0 211
`timescale 1 ps / 1 ps
module unnamed (
input wire address, // avalon_rs232_slave.address
input wire chipselect, // .chipselect
input wire byteenable, // .byteenable
input wire read, // .read
input wire write, // .write
input wire writedata, // .writedata
output wire readdata, // .readdata
input wire clk, // clk.clk
input wire UART_RXD, // external_interface.RXD
output wire UART_TXD, // .TXD
output wire irq, // interrupt.irq
input wire reset // reset.reset
);
unnamed_rs232_0 rs232_0 (
.clk (clk), // clk.clk
.reset (reset), // reset.reset
.address (address), // avalon_rs232_slave.address
.chipselect (chipselect), // .chipselect
.byteenable (byteenable), // .byteenable
.read (read), // .read
.write (write), // .write
.writedata (writedata), // .writedata
.readdata (readdata), // .readdata
.irq (irq), // interrupt.irq
.UART_RXD (UART_RXD), // external_interface.export
.UART_TXD (UART_TXD) // .export
);
endmodule
doccument::ftp://66.35.227.3/up/pub/altera_material/14.0/university_program_ip_cores/communications/rs232.pdf above one is an rs_232 uart ip provided by quartus(generated by qusy).but i am not able to find an user manual for it..so i dont know how can i assign value to 32 bit input register. actual value is only 8 bits what should i do with rest of the bits?? i also dont know chipselect, address & byteenale values ? can anybody help me on this? anyhere please tell me how to use it. any help is really appriciated thanks and regards