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 S.P.S

  1. S

    Assembly Code for data saving from keypad in Registers(8051)

    when the program exits from isr last scanning status retained ,to avoid that JNB instructions are used. remove that lines and run your program to check the effect. I have stopped the main program using 'sjmp $'. you can remove that and enter your program loop there. then you have to use some...
  2. S

    Assembly Code for data saving from keypad in Registers(8051)

    you should enter that in the ISR isr: ACALL SCAN MOV R7,A MOV P1,A ACALL SCAN MOV R6,A MOV P3,A JNB P2.3,$ JNB P2.4,$ JNB P2.5,$ JNB P2.5,$ RET
  3. S

    Assembly Code for data saving from keypad in Registers(8051)

    well,first check the values of r6 and r7. after two key press you have the values in the corresponding registers. where did you add the lines to output it to P1?. i didn't wrote that in my code.
  4. S

    gsm modem restarted while OUTPUT will turn ON/OFF.

    You should use a power supply with rating 2A. Please Refer the datasheet.
  5. S

    Assembly Code for data saving from keypad in Registers(8051)

    i will answer you. but first tell me what you got wrong about the code?. i have double checked and it seems ok.
  6. S

    Universal SMPS design

    check the link http://danyk.cz/index_en.html
  7. S

    Assembly Code for data saving from keypad in Registers(8051)

    move the following lines to ISR ORG 30H ACALL SCAN MOV R7,A ACALL SCAN MOV R6,A RETI
  8. S

    [51] temperature monitoring system using LM35 and 8051

    Check th voltage on Vref/2 pin ,you should make it 1.28V to get exact temperature. Or you can apply correction on software side according to your reference.
  9. S

    [PIC] PIC18F877A Stepper Motor Controller, Proteus Simulation

    set some levels in between 0 an 1024. then compare the read value with these levels and assign values to variable b. for example if you want 10 different speeds as in your program one level should be of size 93 (1024/11) and they are 0-93, 93-186, 186-279 etc. Now get the current ADC reading...
  10. S

    Assembly Code for data saving from keypad in Registers(8051)

    Please don't make multiple threads for one problem. Check the below code and edit it as per your requirement. When you are asking a help please make your side clear and post necessary documents regarding the project. ORG 00H SJMP MAIN ORG 30H MAIN: /* MOV...
  11. S

    [Moved] Why this 8051 code not functioning as expected?

    i must ask, what are you trying to do?. why are you using the interrupt pin??. i have edited the keyboard scanning program. Please note the changes and edit as per your requirement. ORG 0 LJMP MAIN ORG 03H ACALL SCAN RETI...
  12. S

    [Moved] Why this 8051 code not functioning as expected?

    External interrupt service routine should start from 03H and only 8 bytes are allowed.
  13. S

    C code for gsm interfacing with lpc2148

    Refer the tutorial. **broken link removed**

Part and Inventory Search

Back
Top