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 userx51

  1. U

    question with fx2lp GUID

    Got two GUIDs for my device that Fx2LP cypress chip. Not sure why one of them is not working with a non .Net app like c++ but it works with a .Net app?. The GUID used in .NET, in c++ does not see my devices but with .Net it sees them but the other one works with the c++.
  2. U

    comapring project outputs

    Do the output of building a microcontroller project from two builds would be the same, assuming nothing changed?. Using Keil and other stuff.
  3. U

    x51 memory share with ext dev

    those are the only ways?.
  4. U

    x51 memory share with ext dev

    Hello, I am very new to cx51 world. How to make external device like FPGA to have access to external memory of cx51?. FPGA should see any update made to the external memory of 8051.
  5. U

    8051 serial interrupt

    using interrupt in 8051 how to execute series of somehow continuous commands as they arrive through the Rx pin?. Let's assume "unsigned char buffer[128]" is available. A command is composed of 11 bytes, with the first byte being the command identification. After each execution, three bytes 0x123...
  6. U

    8051 interrupts information needed

    what 8051 interrupt 15 is?. What kind of interrupt is it?. Is it a low priority 1 HZ timer?. Are there sample codes implements different interrupts. Any docs that simply explain all the 8051 interrupts?.
  7. U

    [51] question about the x51 xdata

    I have a third party code with declarations, something like: #define LastByte as 0x32 unsigned char xdata ArrayTwo[0x10] _0x128_ Some where in the project I noticed: ArrayTwo[LastByte] = ... Is this possible?. How LastByte can go beyond 0x10?. It runs without a crash. I am not a x51 programmer...
  8. U

    state machine example codes for embedded systems

    thanks. awesome replies. If there are more sites you know of, please share.
  9. U

    state machine example codes for embedded systems

    Needed some embedded code examples in C that covers the State Machine concept. Need some examples to better grasp this topic.
  10. U

    handle the usb request bytes from host

    in the micro controller side , how the fields below are filled from the incoming bytes?: typedef struct usbRequest{ uchar bmRequestType; uchar bRequest; usbWord_t wValue; usbWord_t wIndex; usbWord_t wLength; }usbRequest_t; 8-O
  11. U

    need sample code for PIC

    what compiler to use for for "PIC 1 6 f 1 5 0 3"?. any development kit?. sample code to set i/o pins low or high?.
  12. U

    limit to the output file size

    output of my Keil 8051 project (.HEX) is about 98KB. What is the limits to that size:?:.:thinker:
  13. U

    conditional run time settings

    In my keil program, during the run time I like in my code to check a value and come up with the following: depending on a variable, var1 , bypass one of the settings[] in below.like if var1 = 1, the settings would be the first one and if var = 2,the settings would be the second one. struct SS...
  14. U

    send binary fomrat bytes to PC

    PC expects the data in binary format. sendbinaryBytes, sends the bytes in binary format. sendbinaryBytes sends four binary bytes and PC gets 4 binary bytes.
  15. U

    send binary fomrat bytes to PC

    let say my uC code has a function: void sendbinaryBytes (unsigned char b[4]) { Serial.writeToPC(b[0],4); } using sendbinaryBytes function, how to send 1.764 to PC RS232?. also, in PC upon getting the binary bytes, how to display it as 1.764?. any examples..? you can modify the sendbinaryBytes...

Part and Inventory Search

Back
Top