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 B_A_D

  1. B

    doubt on xbee - prolem with interfacing hyper terminal

    putchar xbee It's always very helpful to see your source code. We can't guess what are doing incorrectly.
  2. B

    PIC16F877 maximum input bitstream speed

    pic16f877a maximum Hi ceibawx. Could you give us the detailed description of your project ? Is your input stream continuous with 256KHz frequency or it's set of 80-bit separated packages ? Dou you understand, that at the time of sending received bytes you can miss the input stream, otherwise...
  3. B

    C code of bitstream input in PIC

    shift_left pic16f8 Look, int CCS int-type by defaut is same as int8. Int this loop b=0; for (j=0;j<8;j++) { b+=eeg[(8*k)+j]*pow(2,j); } variable b can be overflowed, because sum of this expression b+=eeg[(8*k)+j]*pow(2,j); can be greater than 256. So , you need to define b as...
  4. B

    C code of bitstream input in PIC

    shift_left function int eeg[80],b[]; <--- You didn't allocate memory for b[] According to you code, it should be array with at least 10 elements: int eeg[80], b[10]; [/b]
  5. B

    C code of bitstream input in PIC

    code input pic24 In C, the index of array usually starts from zero. Please, firstly correct all these bugs: for (i=0; i<20;i++)
  6. B

    Companies which offer online free sample ordering

    samples free brazil I got about 150 various chips from Microchip. I'm live in Israel.
  7. B

    Software for USBN9604

    usbn9604 Hi !!!!! I'm looking for software for USB communication between PC and USBN9604 + some PIC microcontroller. Best regards.

Part and Inventory Search

Back
Top