Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by fatimamaz

  1. F

    Number of FIFOs in ALTERA De2-115

    Is counting or such memory consumption orders included for estimating consumed RAM memory?
  2. F

    Number of FIFOs in ALTERA De2-115

    Hello, What is the maximum number of FIFOs that can be used in Quartus code for Altera DE2-115?
  3. F

    Output pixel larger than the desired pixel

    Here is my Matlab code. clear all; delete(instrfindall); s = serial('COM6'); info=get(s,{'Type','Name','Port'}); set(s,'BaudRate',115200); s.InputBufferSize = 8000; s.Timeout =200; fopen(s) fprintf(s,'%c','a') Buffer = fscanf(s,'%c'); fclose(s) binary_data=dec2bin(Buffer,8);
  4. F

    Output pixel larger than the desired pixel

    Please answer the following question if it is clear. I am using Altera FPGA board for saving a snapshot to a frame buffer and to send it serially to Matlab. My problem is that all the parts of my code are right but the received data to Matlab code are 14 bits rather than 8 bits. I tested each...
  5. F

    Using Qsys and Nios for sending serial data by Rs232

    By following the steps available in this website https://www.youtube.com/watch?v=nHFVwthr_Ew, it becomes easier to define the serial port. But what is the step after compiling to Nios? And is it necessary to open Nios whenever board programming is needed?
  6. F

    Send Binary Data Serially

    I used Rs232 serial port.
  7. F

    Clock Divider from 921600Hz to 115200Hz

    Hello, I wrote this code for clock division from 921600Hz to 115200Hz, but something is going wrong. Can anyone help me? module step1_divider ( input clki, input reset, output reg clkf ); localparam constantNumber = 4'b1000; reg [3:0] count; always @ (posedge(clki) or posedge(reset)) begin...
  8. F

    Send Binary Data Serially

    Hello, I need to send 8 bits binary pixels serially, can i send it as it is without conversion to ASCII?
  9. F

    Send Serial data through RS-232

    12 bits are the actual data.
  10. F

    Send Serial data through RS-232

    Hello, I have pixels (12 bits each) and i need to send them serially by UART RS-232 while the maximum data bit is 9 bits. How can i send the data of each pixel without any compression? Thanks

Part and Inventory Search

Back
Top