Interconnected chips and pin settings


Closed Thread
Results 1 to 5 of 5

Hybrid View

  1. #1
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default

    What voltage are you running the PIC at and what is the max voltage of the other chip? The max voltage it can handle?
    Dave
    Always wear safety glasses while programming.

  2. #2
    Join Date
    Dec 2008
    Posts
    16


    Did you find this post helpful? Yes | No

    Default

    I am running both the 16f887 and umFPU at 3.3V.

    umFPU can run at up to 5V.

  3. #3


    Did you find this post helpful? Yes | No

    Default

    can you not put resisters between the pic and the mathco? that should stop the mathcpu from grounding sending a pic output line to ground and poping the chip...

    But yes, the startup of the chip needs to send all outputs low and then set the relivant lines to inputs right at the beginning...

    So...

    Code:
    TRISE = %00000111
    TRISD = %00000000
    TRISC = %00000000
    TRISB = %00000000
    TRISA = %11111111
    PORTA = 0
    PORTB = 0
    PORTC = 0
    PORTD = 0
    PORTE = 0
    Setting TRIS to 1 makes that bit an input...
    the PORT commands makes all the ports low...

    I hope that helps

  4. #4
    Join Date
    Dec 2008
    Posts
    16


    Did you find this post helpful? Yes | No

    Default

    Thanks Comwarrior, I think that resistors between the two processors is what was needed.

Similar Threads

  1. Help using 74LS165 & 74LS164 chips with my 16F84A
    By studysession in forum mel PIC BASIC Pro
    Replies: 0
    Last Post: - 2nd March 2009, 10:36
  2. pin 12f683
    By jcleaver in forum mel PIC BASIC Pro
    Replies: 22
    Last Post: - 22nd March 2007, 22:29
  3. Another RTC, DS1287
    By DavidK in forum Code Examples
    Replies: 0
    Last Post: - 12th December 2006, 17:07
  4. Multiple Data on to USART RX pin
    By Squibcakes in forum Serial
    Replies: 2
    Last Post: - 20th July 2006, 00:37
  5. I/O pin and MCLR
    By Dwayne in forum FAQ - Frequently Asked Questions
    Replies: 1
    Last Post: - 15th July 2004, 10:52

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts