We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 714d82d commit f15508aCopy full SHA for f15508a
libraries/Wire/Wire_nRF52.cpp
@@ -61,7 +61,7 @@ void TwoWire::begin(void) {
61
_p_twim->PSEL.SDA = _uc_pinSDA;
62
63
NVIC_ClearPendingIRQ(_IRQn);
64
- NVIC_SetPriority(_IRQn, 2);
+ NVIC_SetPriority(_IRQn, 3);
65
NVIC_EnableIRQ(_IRQn);
66
}
67
@@ -91,7 +91,7 @@ void TwoWire::begin(uint8_t address) {
91
_p_twis->INTENSET = TWIS_INTEN_STOPPED_Msk | TWIS_INTEN_ERROR_Msk | TWIS_INTEN_WRITE_Msk | TWIS_INTEN_READ_Msk;
92
93
94
95
96
97
_p_twis->ENABLE = (TWIS_ENABLE_ENABLE_Enabled << TWIS_ENABLE_ENABLE_Pos);
0 commit comments