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 bld

  1. B

    I2C Bus communication for more than a few meters question

    i2c long distance I think it will be fast enough. Even if you check all sensors in 5s, it's still fast; I don't believe that someone could be so fast to enter, steal and leave from your house in a few seconds.
  2. B

    Transforming constant char - animation with ascii

    Re: transform constant char Why don't you fix first the compiler errors??? :?: First of all you have to remove ; from the for(...); I don't know which are the lines 381, 382, 398, 390, 392, 393, 394, 403 in your code but the compiler reports errors on that lines. Fix the compiler errors and...
  3. B

    multiply decimal numbers in PIC

    model decimal multiplication pic If you know how to implement division in asm, you can try : 432 x 236 / 100. And take care to keep the multiplicands on 16bits. You will loose some precision but you can avoid floating point in this way.
  4. B

    Transforming constant char - animation with ascii

    Re: transform constant char Buna ziua:D Unfortunately, I don't use CCS and I couldn't find in the manual of CCS none of the following function: lcd_outtext, lcd_gotoxy, c_str so I really don't know what they do. But I try to offer you a suggestion: void animatie(unsigned char coloana...
  5. B

    Light up led source code - what went wrong ?

    Re: light up led source code I can't see in your code if you set the configuration bits of the controller, especially the oscillator configuration...
  6. B

    Light up led source code - what went wrong ?

    Re: light up led source code I would suggest: #include <16f877a.h> void main() { output_high(PIN_B7); while(1); } In your code, after the the LED is on, the microcontroler reaches the end of the program and resests. So the result will be a blinking of the LED with a very small duty...
  7. B

    MPLINK linking out uncalled functions, unused object files??

    Re: MPLINK linking out?? Maybe you have code optimizations enabled and the compiler(not the linker!) it's not generating code for the uncalled functions or unused variables...
  8. B

    Which PIC programmer to Buy?

    PICkit2 it's cheap, robust and it can program all PICs.
  9. B

    Executing a software reset through UART on PIC micro

    uart ccs Did you try a jump to address 0? asm("goto 0"); I don't know if CC5X compiler allows for inline assembly code...
  10. B

    Call depth of the interrupts in pic 877a

    Re: Call depth on interrupt Let me show you a bad situation: main() |--------calls func1() |--------calls func2() |----------calls func3() |---------calls func4()...
  11. B

    Unimplemented bits ADCON0

    It does not matter what you actually write on the unimplemented bits, they will always be read as '0'. Your code should work. And it also should work if you put movlw b'10110101' ;CONFIG adc: AN1 Analog input
  12. B

    RS232 Interface question - baud rate selection

    Re: RS232 Interface question What program do you use on your PC to communicate over rs232 line?
  13. B

    Burn HEX file into PIC16F88

    pickit 2 stand alone software Hello evios. Did you try to burn another type of PIC, for example PIC16F84A or PIC16F877A or any other PIC except PIC16F88? Are you sure you plugged in the ICSP connector/pins in the right way...? Sorry for these stupid questions, but it's totally possible to...
  14. B

    Burn HEX file into PIC16F88

    pic16f88 hex I have just programmed (with no error!) a PIC16F88 with PICkit 2 a few hours ago. Maybe your PIC chip is damaged...You should try a new one.
  15. B

    1.25kHz 50% duty cycle wave from a PIC12F508

    tmr0 pic12f508 As much as I know, the most used ones are PIC12F508, PIC16F877A and PIC18F452. But PIC16F887 is a good replacement for PIC16F877A! Basically is almost the same as PIC16F877A but it includes internal oscillator and has some minor differences in how to use its peripherals.

Part and Inventory Search

Back
Top