I need help with i2c memory


Closed Thread
Results 1 to 18 of 18

Hybrid View

  1. #1
    Join Date
    Jun 2005
    Location
    Wisconsin
    Posts
    382


    Did you find this post helpful? Yes | No

    Default

    You are missing the two pull-up resistors that are required.

    Try wiring it identical to the Melabs user manual. This is your best shot at getting it to work. I have included the drawing in this post.
    Attached Images Attached Images  

  2. #2
    Join Date
    Jun 2005
    Posts
    7


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by DynamoBen
    You are missing the two pull-up resistors that are required.

    Try wiring it identical to the Melabs user manual. This is your best shot at getting it to work. I have included the drawing in this post.
    you are talking about the 2 pull up resistors on scl and sda correct? they are there. as far as i can tell the only difference between what i have and your picture is the cap from vdd to ground on pin 14. ill put that in and see what happens..
    Last edited by -c3-; - 16th June 2005 at 06:54.

  3. #3
    Join Date
    Jun 2005
    Location
    Wisconsin
    Posts
    382


    Did you find this post helpful? Yes | No

    Default

    You may want to wire it exactly like the drawing for testing purposes.

  4. #4
    Join Date
    Jun 2005
    Posts
    7


    Did you find this post helpful? Yes | No

    Default

    alright, ive spent some more time on this, with my new lcd. redid the circuit to the schematic posted, still not working for me, it seems it is not writing at all,

    do i need to set trisb to something? thats my current line of thought,
    thx

  5. #5
    Join Date
    Jun 2005
    Location
    Wisconsin
    Posts
    382


    Did you find this post helpful? Yes | No

    Default

    Whats not working the LCD or the EEProm?

  6. #6
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Usually you don't need to set TRIS for those built-in command like SERIN/SEROUT/LCDOUT and of course for I2CREAD/I2CWRITE.

    For the last, TRIS will change depending if you read ar write from an external I2C device.

    What about your whole stuff??? schematic, Parts, Code???
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  7. #7
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    I think you should go back up and take another look at Ralph's post.

    I know you had an LCD problem at the time, so you may have overlooked it, but it does have 2 important points.

    Most important is the declarations of (sda and scl). Originally you had ...

    sda var byte
    scl var byte
    . . .
    sda=PORTB.0
    scl=PORTB.1

    While it may seem that this is assigning PORTB.0 to the sda variable, it doesn't work that way. What it really does is Read PORTB.0 (which is 1 due to the Pull-up resistor) then place the value in sda. Then when you try to use sda, it get's interpreted as a Pin Number (0-15). A 1 as a Pin Number points to PORTB.1

    The same goes for scl, so both sda and scl will end up pointing to PORTB.1

    The second big point was mentioned by Ben. The address of a 64Kx8 EEPROM has to be a WORD sized variable, not BYTE sized.

    A third point that's not as critical, is shown in ralph's example. You only need to have 1 Control Byte. PBP automatically adjusts the value of the control byte depending on whether iit's a Read or a Write operation. The manual specifically says to leave bit 0 "Clear".

    Oh yeah, a small typo, it should have been Serout2, that's why you got the compiler error previously.

    HTH,
       Darrel

Similar Threads

  1. I2C Master/Slave 16F88/16F767 working code
    By DanPBP in forum Code Examples
    Replies: 2
    Last Post: - 23rd October 2012, 22:31
  2. HARDWARE I2C SAMPLE CODE question
    By Michael Wakileh in forum Code Examples
    Replies: 2
    Last Post: - 16th June 2009, 21:07
  3. I2C Master Slave issues.
    By cpayne in forum mel PIC BASIC Pro
    Replies: 9
    Last Post: - 29th March 2008, 19:33
  4. A help with Write/Read a I2C memory
    By Eugeniu in forum mel PIC BASIC Pro
    Replies: 25
    Last Post: - 28th March 2008, 13:53
  5. Please help with i2cslave i2c slave
    By cycle_girl in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 1st December 2005, 13:55

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