-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I2C Wire library might be blocking in case of communication failures (may need timeout) #134
Comments
@MCUdude consider jacking the new the version of Wire from DxCore, you need to add a tools submenu to select whether build,extra_flags contains -DTWI_MORS (master or slave ) or -DTWI_MANDS (master and slave) - but other than that, there's not much. that needs to be done to make it work over here, the new features are all covered in the readme. and a bunch more is covered in the readme too. MX682X put together a killer reimplementation of Wire that lowers flash usage, supports simultaneous master and slave, (with or without dual mode), supports the slave address mask, secondary address, or general call and provides a way to find out what address triggered the interrupt, and I tacked on two unobtrusive API extensions, to see if there's a transaction in progress (so you can check before sleeping) and to count how many bytes the master read, so your I2C slave can use the register interface model like 99% of other I2C devices. There's one last change going in before it's will be believed to be done, and that is that we found a way to reduce the SRAM footprint in some cases. |
@SpenceKonde wow, a complete rewrite with lots of new features - nice XMas present :-) There is some timout functionality protected with |
@SpenceKonde Thanks, I'll look into it. |
Yeah the timeout is enabled by default. We (myself and the main developer who did the rewrite, I'm not going to tag him over here because I've been tagging him into way too many conversations latel) were pretty pissed that Arduino came out with an implementation of a timeout right at the same time we did (of course, naturally, a much less efficient one that would cause compatibility problems with the rest of the core; I think it depended on millis or micros, which is obviously a no-no on my cores, - disabling millis/micros is one of the most important tools submenu options on my cores because otherwise you can't do anything truly timing critical while interrupts are I think we (mostly he) did a pretty good job of it. |
Im experiencing that my arduino with oled screen freezes/bugs out when a dc motor is added in the circuit. Its only happening when the OLED screen is connected, can this issue be because of it? |
Likely noise on the power rail caused by the inductive load of the DC is resetting the OLED. Use separate supply for the motor, or more aggressive decoupling between motor and sensitive electronics. If it is a single direction motor, and you don't have a snubber diode across the terminals of the motor, add one (just any diode capable of handling full current of motor, connected with it's band toward the positive side of the motor so it won't conduct - except the brief spike when the motor is turned off. Also add more bulk capacitance and make sure that the power supply voltage isn't drooping too much. |
I'm also looking forward to having this feature implemented, had a situation where an I2C sensor froze and the entire MCU stopped as well since there was no communication going on. All blocked. @SpenceKonde , how easy was it for you to replace the In your post on this topic, you said that a special (sub)menu is required for compiling with the proper build flags, could you share some more step-by-step info on how it should be done? Thank you! |
Uh, cam toubcote whereni said it, it may onlynapplymtomsome contects
ofnwhochnondont think this is one
…____________
Spence Konde
Azzy’S Electronics
New products! Check them out at tindie.com/stores/DrAzzy
GitHub: github.com/SpenceKonde
ATTinyCore: Arduino support for almost every ATTiny microcontroller
Contact: ***@***.***
On Sun, Nov 13, 2022, 11:50 Adelin U. ***@***.***> wrote:
I'm also looking forward to having this feature implemented, had a
situation where an I2C sensor froze and the entire MCU stopped as well
since there was no communication going on. All blocked.
@SpenceKonde <https://github.com/SpenceKonde> , how easy was it for you
to replace the MegaCoreX's Wire.h library with the one from DXCore
<https://github.com/SpenceKonde/DxCore/tree/master/megaavr/libraries/Wire>,
on Arduino IDE? I read your post here
<#112 (comment)>
and sounds like there are a lot of improvements to it.
In your post
<#134 (comment)>
on this topic, you said that a special (sub)menu is required for compiling
with the proper build flags, could you share some more step-by-step info on
how it should be done?
Thank you!
—
Reply to this email directly, view it on GitHub
<#134 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABTXEW4GFQHSJGF7MIS463LWIEL4TANCNFSM5I4SQPZA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Some info might’ve been lost in translation. 😁 |
what the heck happened to that message... I think I was falling asleep at the keyboard..... |
Well, I'm not using it for servo (as the original poster of the other thread), but to read data from two sensors HTU21D and HMC5883L . I tried to port both DXCore's and your megaTinyCore version of Wire.h, however it does not compile on Mega4808 using MegaCoreX... MegaTiny error:
DxCore error:
I guess the compiler MegaCoreX uses, does not like the C versions of the TWI files (.h and .c). |
no those are outstanding bugs in in the version of wire you grabbed, I'll go see if they're still in the code. |
I've pulled the master branch, is there another one I should try? |
The master branch as of 20 seconds ago. |
Missing
|
Aaaagh.... yeah you're going to want to put... I guess at the top of Wire.h
|
The badArg() and badCall() functions are used to provide compiletime errors when bogus values are supplied and known at compile time (badArg()) or if a function is called under circumstances where the call is nonsensical ( like a call to millis() when millis() has been disabled, which is an option on my core, or attempting to set Wire to use SMBus levels on a part like a mega0 that doesn't have that option and so on. Their function is simply to halt compilation and give an error, because at that point we know with certainty that no matter what the person had been hoping to do, if it relied on their doing that, it's not going to work. The standard Arduino doctrine is that in that case, to fail silently. I don't know why they think that's a good idea. Any time the user does something that is guaranteed not to work, I try to make sure they're aware of it. Since their sketch isn't going to work, might as well make it a compile error, right? |
"Oh boy, oh boy, it works!" :) THANK YOU A LOT 🥇! I finally managed to compile it. I tested I2C's behavior (by disconnecting the sensor) and no more MCU locking. Wonderful. :) Sending all the best thoughts out there! Thanks! |
I put badCall and badArg into Arduino.h in my cores, because... basically anywhere where an there's code that implements API calls - there are badArg and badCall macros to catch inappropriate uses of them; I'd have expected including the header would have worked. I really like compiletime error checking. It helps to make the absence of exception handling a little less nasty. The TWI_MORS or TWI_MANDS is the part usually handled by the tools menu. |
Just want to share my two cents with whomever might have the same issue as I have. After this, nothing would work anymore, the I2C bus seemed locked. Now, I know I'm "treating" the effect, not the cause, but I found this I2C_ClearBus implementation, which resets the I2 bus (apparently making use of the Internal Pull-Up Resistors), and the Wire library starts to work again. I know it's not a standard Wire implementation, but may be useful to be included in the library too.
** Hardware Note Aside: Can't figure out why what the cause is, why the bus freezes after a while... maybe I'll buy an oscilloscope which would offer some more info of what's going on there. |
For anyone having the issue I had (I2C bus blocked after a while, due to SDA stuck LOW) when using GY-273 boards with HMC5883L on it: Those boards have 4.7k pull-up resistors on it. However, the datasheet of HMC5883L recommend having 2.2k pull-ups. Added two 3.3k additional resistor (in parallel) to each line (SDA, SCL), making the final value a total of ~2k . |
@adelin-mcbsoft Did I understand that correctly that you got the library from @SpenceKonde to work? I would need the dual operation mode feature from it. If you got it ported over, could you please open a pull request so others can benefit from it aswell? |
I've fixed the current version of this reimplementation of Wire library for megaAVR-0 series (some compiling errors). @SpenceKonde : @MCUdude : have you possibility to merge this nice wire library to MegaCoreX in the future? @softhack007 : nice Cannon-Lemming'Fodder avatar! :3 |
There is an open issue on ArduinoCore-megaAvr, that might also be applicable to MegaCoreX - at least the code in question look very similar: arduino/ArduinoCore-megaavr#83
The origin is an enhancement in the "avr" core, which added a timeout to avoid "freezing" when the bus has a failure - see arduino/Arduino#1476,
arduino/ArduinoCore-avr#42 and arduino/reference-en#895. It seems that many user were suffering from such lockups, so the new timeout feature received kind of "standing ovations" ;-)
From looking at the code, it is very clear that the "avr" fix does not work in MegaCoreX or ArduinoCore-megaavr. However I found two scenarios in our code that might cause "blocking" behaviour. Maybe someone with better technical background can clarify if MegaCoreX would really hang, and a timeout would be needed to allow user scetches to proceed (maybe with some error recovery).
In function TWI_MasterWriteRead() we find:
MegaCoreX/megaavr/libraries/Wire/src/utility/twi.c
Line 329 in a384133
MegaCoreX/megaavr/libraries/Wire/src/utility/twi.c
Lines 358 to 368 in a384133
could the "while" loop hang, if the ISR never updates the status? is it possible that the ISR never updates the status due to some error, so that the while loops forever?
could there be another infitite loop with the "goto" instruction, in case of repeated TWIM_RESULT_ARBITRATION_LOST?
The text was updated successfully, but these errors were encountered: