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 ayan_m

  1. A

    look up table in atmel 89c51

    A lookup table in usually created in the ROM of 89c51. U can create it as follows: ORG 200H DB "1,2,3,4,5," END
  2. A

    Difference between IR receivers

    What is the difference between TSOP 1833 and 1738 other than the frequency range? Is there any way in which the change in IR frequency can be detected? Also is it always necessary to have a different supply for IR LED and IR reciever ? If so which one should be more?
  3. A

    1 second Interrupt from 8051?

    If u need a 1 sec interrupt IanP's method is the best it takes less memory space . The other method suggested might work but why on earth would anyone want take a longer way out when there is a shorter one? unless you are doing many other things on the 89C51 and the registers are not free. Even...
  4. A

    Assembly or Assembler, which one is right term ?

    Assembly or Assembler Now this is making it really technical
  5. A

    Help me make an IR remote controller with a PIC16C745/765

    hello hello A TSOP 1738 is a very cool reciever so that chip is alright. For input a normal port would do that way you can use RX/TX for other purposes, also if you want to use the same board with more sensors in the future using a port would make sense. I don't know about encoding a binary no...
  6. A

    If Statement in assembly

    A lot of really nice replies here but I've always used this: CJNE P0.0,#0,ELSE ;code when equal ELSE: ;code when not equal RET
  7. A

    Passing sbit address as function parameters on 8051

    sbit in keil to pass bits as function parameters define the bit as an sbit at the beginning of the program and then use the same definition as the function parameter e.g:- sbit ACC_0=0xE0; void a_func(ACC_0) { } This works as long as the function calling is properly defined This has been tried...
  8. A

    How can I access the last 128 bytes of memory in 8052?

    8052 128 bytes ram assembler HI, 8052 has 256 bytes of RAM . I am having trouble accessing the last 128 bytes directly. I have read help but nowhere is it that the last 128 bytes cannot be accessed directly. How can I access the last 128 bytes directly? ayan
  9. A

    inline assembly instructions

    How can I write inline assembly instructions in C in Keil (uvision 2)? ayan
  10. A

    Problem with Keils debugging in edge trigger mode

    ke*il's debugging problem Check ur target options to see if nething is different. It works in both modes I've tried it.
  11. A

    Temperature measurement using 89c51

    try reading maszidi . A clear explaination is given regarding interfacing with temp. sensors but he has used Lm35, but the basics are pretty much the same.,
  12. A

    # The Microcontroller Tutorial #

    I agree stepper motors suck as well. On the other hand stepper motors are explained well in any site that talks about micromouse programming. E.g www.micrmouseinfo.com
  13. A

    Help me program a micromouse using 8051

    Micromouse programming Hi, Need help in programming a micromouse using 8051. thanx

Part and Inventory Search

Back
Top