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 thegioi21master

  1. T

    [SOLVED] Undeclared Identifier 'USB_Interrupt_Proc' - HELP

    You need to add this descriptor file into your Project. Go to Project --> Add Files to Project
  2. T

    [freeRTOS] Interface UART with SP605 Evaluation Kit

    Hi all, I'm worrking on SP605 board of Xilinx, someone can help me sample code to interface UART in freeRTOS. Thanks
  3. T

    mikroc pro 18f4550 connection problem

    I mean your circuit isn't worked, maybe for interferences, routing or componet.........
  4. T

    mikroc pro 18f4550 connection problem

    If you use HID library, i think everything will be ok. Maybe, cause is your circuit having trouble.
  5. T

    Getting string from UART

    Edit receive() following: char recieve() //Function to receive serial data { unsigned char value; while(RI==0); value=SBUF; P1=value; RI=0; return value } Add this function: void UReadBuffer(void *buff,int len) { int i; for(i=0;i<len;i++) { ((char*)buff)[i]=recieve(); } }
  6. T

    Getting string from UART

    // Program to test serial communication of controller with PC using hyper terminal #include<reg51.h> void ini() // Initialize Timer 1 for serial communication { TMOD=0x20; //Timer1, mode 2, baud rate 9600 bps TH1=0XFD; SCON=0x50; TR1=1; } void recieve() //Function to receive serial data...
  7. T

    Getting string from UART

    Which microcontroller ?
  8. T

    [SOLVED] Interfacing RFID with LPC 1343

    It's just for reference. You should try then ask...
  9. T

    [SOLVED] Interfacing RFID with LPC 1343

    This is my suggestion, you need to improve more for fitting. //////////////////////////////////////////////////////////// //Test SL025x //ARM C source code //LM3S600(6MHz) + EWARM 5.30 //////////////////////////////////////////////////////////// #include "hw_types.h" #include "hw_memmap.h"...
  10. T

    [SOLVED] Interfacing RFID with LPC 1343

    RFID module connect LPC by what? RS232 ,USB, etc Module's datasheet.
  11. T

    How to create and Compile QT Application for Mini 2440 in Fedora 17.

    Install arm-linux-gcc Download & compile QT everywhere by arm-gcc . Then copy some library to Kit https://mini2440vietnam.blogspot.com/2011/04/upgrade-qt462-in-mini2440.html
  12. T

    Counter's increment in 1 second using 50MHz Clock in Altera DE2 Board

    Hope it will be helpful module delay_1s(delay,CLOCK_50); output reg delay; input CLOCK_50; reg [25:0] count; always @(posedge CLOCK_50) begin if(count==26'd49_999_999) begin count<=26'd0; delay<=1; end else begin count<=count+1; delay<=0; end...
  13. T

    DS 1307 with 8051 controller (embedded C code)

    The problem is not new. If need, you can search on google.
  14. T

    learning embedded systems

    learn how to run Led on 8051...simple, easy, fact

Part and Inventory Search

Back
Top