We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56cc627 commit c1abdc9Copy full SHA for c1abdc9
variants/ARDUINO_NANO33BLE/variant.cpp
@@ -140,9 +140,8 @@ void initVariant() {
140
pinMode(LED_PWR, OUTPUT);
141
digitalWrite(LED_PWR, HIGH);
142
143
- // Errata Nano33BLE - I2C pullup is on SWO line, need to disable TRACE
144
- // was being enabled by nrfx_clock_anomaly_132
145
- CoreDebug->DEMCR = 0;
+ // Errata Nano33BLE - I2C pullup is controlled by the SWO pin.
+ // Configure the TRACEMUX to disable routing SWO signal to pin.
146
NRF_CLOCK->TRACECONFIG = 0;
147
148
// FIXME: bootloader enables interrupt on COMPARE[0], which we don't handle
0 commit comments