Offline
Jr. Member
Karma: 1
Posts: 78
|
 |
« on: July 10, 2012, 02:53:03 pm » |
I'm not sure if this is the correct area for this issue, but it is the most applicable that I 've found.
History: I have some 3.3V I2C peripherals which are not 5V tollerant. I2C friendly,Bidirectional Level Translators would seem to be the common solution. I have a real hard time hand soldering mini SMD's and do not like reflow. Plus, "Keep It Simple Stupid" works really well for me.... Mike Cook (Grumpy Mike) posted a response to another thread in the general electronics section which indicated that: 1) if you could 'HACK' thw Wire library to turn off internal pull ups ( on A04 & A05), and 2) (i think that this is what he meant) connected the Analog Ref in to 3.3V, and 3) ran your pull ups to 3.3V bus, you could do I2C with these types of devices without the need of level translators (again, this is what I think he was getting at. Have'nt been able to get him to respond to the thread to confirm or deny).
My Objective: If my assumptions are correct, why can'nt someone add a function to (NOT the Wire lib, but to:) twi.c in /libraries/Wire/utility/... to turn off the pull ups used by I2C? "twi_init(void)" in twi.c (arduino 0022, I haven't had a chance to check 1.0 yet) sets the port bits to enable the pull ups, based upon the type of controller. Is there a simple way to add parameter checking to stop this process, or, a function to reverse it? Or is there a way to do it in the user's (my) code?
I'm old and senile, but I aint stupid (though many others have disputed that issue), but I don't have enough smarts to put this one together....
Thanks for any help and consideration.
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
Boston area, metrowest
Offline
Brattain Member
Karma: 245
Posts: 16515
Available for Design & Build services
|
 |
« Reply #1 on: July 10, 2012, 03:07:45 pm » |
"2) (i think that this is what he meant) connected the Analog Ref in to 3.3V,"
That part would not necessarily be needed. Your part is not putting out an analog signal that needs measuring is it?
I agree with the rest - need a software guy to do that, or figure out how to add "if define # no_pullup" or something.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 1
Posts: 78
|
 |
« Reply #2 on: July 10, 2012, 03:22:38 pm » |
Crossroads, Yes sir, Bi-directional comms between the periph and the Arduino. In the thread which was referenced, I think it was you who mentioned TXBxxx devices, but they don't seem to work too well with I2C (0108's in particular). A TI support engineer suggested a PCA9306 and is sending me two samples, but those little bugs are really small....
So, you think that, electrically, it should work? Given that, what do you think about putting inline asm code in, after the wire.begin, to reset the port bits and turn the pull ups off that way??
Thanks for the response and getting me in the right board.
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
Boston area, metrowest
Offline
Brattain Member
Karma: 245
Posts: 16515
Available for Design & Build services
|
 |
« Reply #3 on: July 10, 2012, 03:39:00 pm » |
"Given that, what do you think about putting inline asm code in, after the wire.begin, to reset the port bits and turn the pull ups off that way??"
Could work. I don't know if the library will keep turning them on. Need more software knowledge than I have.
|
|
|
|
|
Logged
|
|
|
|
|
Manchester (England England)
Offline
Brattain Member
Karma: 277
Posts: 25493
Solder is electric glue
|
 |
« Reply #4 on: July 10, 2012, 04:50:04 pm » |
The problem with doing that is that they will have spent some time being on. You are better just removing the lines that turns them on in the libary. It is very easy to find. If you can't do that then use a libary that dosn't enable them by default like the "I2C Master" libary.
|
|
|
|
|
Logged
|
|
|
|
|
Pittsburgh, PA, USA
Offline
Faraday Member
Karma: 30
Posts: 2918
I only know some basic electricity....
|
 |
« Reply #5 on: July 10, 2012, 04:58:52 pm » |
Could you run it on a stand-alone MCU at 3.3V?
|
|
|
|
|
Logged
|
Examples can be found at Learning in the Main Site and at the Playground
|
|
|
|
Offline
Jr. Member
Karma: 1
Posts: 78
|
 |
« Reply #6 on: July 10, 2012, 05:56:48 pm » |
Grumpy_Mike, Oops, yea, that sounds logical and dangerous... Rats,, but thanks for saving the lives of a couple of breakout boards. I've found the code that turns the pull ups on in twi.c (under /libraries/Wire/utilities/). Not famiiar with library I2C_Master. Google, here I come. I knew you were the guy to ask. Many thanks.
Smoke, in production, yes,,maybe, but, in development, no. I need easy access to the serial monitor for debugging. Good idea though. Thanks.
Crossroads, yea, sounded good to me to. Oh, well, I guess that I'll just rip the Wire & utility libs.....
Thanks Guys. Good one to ya'.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Edison Member
Karma: 15
Posts: 1006
Arduino rocks
|
 |
« Reply #7 on: July 10, 2012, 07:47:53 pm » |
1) Look in twi.c
2) Find digitalWrite
3) Comment it out
It might be a better idea to copy the Wire library to something like Wire_Nopullup before doing it, so you can do both (and then rename the .h and .cpp files to Wire_Nopullup also)
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 1
Posts: 78
|
 |
« Reply #8 on: July 11, 2012, 10:39:24 am » |
Wiz, I think a better idea is to change the SET BIT instructions in the twi.c initialization to CLEAR BITs.
I would probablly have to do the same if I use I2C Master lib (to change the default settings from enable pullup to disable pullups).
|
|
|
|
|
Logged
|
|
|
|
|
|