[DE2-115] Lab.8: Serial Communication with Python
[Serial Comunication] DE2-115 보드와 Python 을 이용하여 Serial Comunication 을 실습한다. [uart_tx.py] 더보기 import serial import time uart = serial.Serial('COM3', 115200, timeout=1) uart.flushInput() try: while True: rxd = uart.read() print('rxd: ', rxd) if rxd == b'0': for x in ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']: print('txd: ', x) uart.write(x.encode()) time.sleep(0.1) except KeyboardInterrupt: uart.clo..
[DE2-115] Lab.7: SRAM Controller
[SRAM Controller] DE2-115 보드를 이용하여 SRAM 을 실습한다. [sram_controller.v] ISSI SRAM datasheet 를 확인하고 Controller 를 Verilog 로 기술한다. 더보기 /////----------------------------------------///// module sram_controller( input clk, input rst_n, input start, input [7:0] din, output reg [7:0] dout, output reg ce_n, output reg oe_n, output reg we_n, output reg ub_n, output reg lb_n, output [19:0] addr, inout [15:0] ..