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 Jinzpaul4u

  1. Jinzpaul4u

    [SOLVED] Little endian and big endian

    Thanks for your reply... LOL :grin:
  2. Jinzpaul4u

    [General] Some basic Embedded interview questions ??

    Hi Everyone, here I am posting some basic embedded interview questions which I faced recent interviews. Please post the answers for below questions ? it might helpful for all edabaord members .:-D Please post your answer.:idea: Best regards, Paul
  3. Jinzpaul4u

    [SOLVED] Little endian and big endian

    Hi Dora and klaus.. Thanks for replying me. Yeah your logic is working well.. #include <stdio.h> #include <string.h> #define SWAP_ENDIAN(x) \ (((x & 0x000000FF) << 24) \ | ((x & 0x0000FF00) << 8) \ | ((x & 0x00FF0000) >> 8) \...
  4. Jinzpaul4u

    [SOLVED] Little endian and big endian

    Hi Everyone, Recently I faced an interview question regarding Little-Big endians.. Does anyone of you know the answer for the same? I am awaiting for your reply. Thanks and regards, Paul
  5. Jinzpaul4u

    8051 developement board

    Hi, #So it means your hardware does not having any problem. what baud rate are you using to communicate with board? is it 9600bps? # Please verify your flash magic SW supports windows 7 and are using latest version of it? #You need to have a COM port listed in the Device Manager first...
  6. Jinzpaul4u

    [ARM] Problem in low speed sampling adc in LPC2368

    Hi again, ADC 10-bit conversion time ≥ 2.44 µs so the minimum value is 2.44 µs and might vary also.I suggest you to refer adc static characters. I did not get your code fully: while(T0TC<450000){ // Sampling buf3[j]=read_adc(); // Sampling j++...
  7. Jinzpaul4u

    8051 developement board

    Hi again, Try terminal.exe.. and get back me. All the best.. :idea:
  8. Jinzpaul4u

    Problem in PIC microcontroller PIC16F630

    Hello Srevish, You better refer the errata of PIC16F630 mCU. Best regards, PAUL
  9. Jinzpaul4u

    [ARM] Problem in low speed sampling adc in LPC2368

    Hello there, Here I can not help you 100% regarding this concern.. But it may due to the delay occurring inside your CPU. If you come to ADC, Propagation delay, acquisition delay, holding time and sampling time delay, those can vary your total time of adc task. Also it dependents on your...
  10. Jinzpaul4u

    Selection of Accelerometer

    Hello there, It dependents on how much acceleration range do you want to measure..? For a common use you can use 1g-6g accelerometers. Best regards, Paul
  11. Jinzpaul4u

    8051 developement board

    Hello ISPN, Baud rate error may be because of your wrong hardware selection. # Are you using 9600bps? #Can you please manually check your USB-UART bridge ? short your TX-RX pin and try with hyper terminal? Please update me.. if you can. Best regards, PAUL
  12. Jinzpaul4u

    PIC16F877A Timer1 problem

    Hello lignin , Could you please explain what is this If you want to toggle you pin use RB1=~RB1; != is a Relational Operator. please correct me if I am wrong. Best regards,
  13. Jinzpaul4u

    How to make 3Second TURN (ON/OFF) Button for PIC16F877A ??

    Hi wilker , You can use any method as per your requirment .. use timer for delay and hold. Use external interrupt (button ), sleep and watchdog timer for turning on PIC. try these link.. https://embedded-lab.com/blog/?p=3237 Best regards,
  14. Jinzpaul4u

    voltmeter using pic 16f877a problem

    Hi there, Are you sure about this function look(v/10000);?? volt[0] = look(v/10000); volt[1] = look((v/1000)%10); volt[3] = look((v/100)%10); current[0] = look(i/1000); current[2] = look((i/100)%10); current[3] = look((i/10)%10); for current and voltage division...
  15. Jinzpaul4u

    3) please explain the below c program for sorting

    Hi rangerskm , I hope its a local and global scope problem try these.. #define MAXLINES 5000 /* max #lines to be sorted */ #define MAXLEN 1000 /* max length of any input line */ char *lineptr[MAXLINES]; /* pointers to text lines */ int getline(char *, int); char...

Part and Inventory Search

Back
Top