-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request
Description
See this link:
https://devzone.nordicsemi.com/f/nordic-q-a/15908/nrf52-twi-excess-current-consumption/60684#60684
Errata 89 tells that this is an anomaly inside the chip. And the work around is given.
Just add below code when you want to disable TWI
For TWI0 for number 89 anomaly on nRF52
*(uint32_t *)(0x40003000 + 0xFFC ) = 0;
*(uint32_t *)(0x40003000 + 0xFFC ) = 1;
For TWI1 for number 89 anomaly on nRF52
*(uint32_t *)(0x40004000 + 0xFFC ) = 0;
*(uint32_t *)(0x40004000 + 0xFFC ) = 1;
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request