Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2019-12-10 14:39:47 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-12-10 14:39:47 +0300
commite5b1d6c6ede08f2d3246e237a4c868656a71d347 (patch)
tree484f6305a1154480ab0f5d5855f955c5ea6a2952 /src/Hardware/I2C.cpp
parent14db90f06f74494ee811cf1ae4f12190756ed2ca (diff)
Started adding noexcept specifiers
Also pin out9 on Duet3 is also called laser and vfd
Diffstat (limited to 'src/Hardware/I2C.cpp')
-rw-r--r--src/Hardware/I2C.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hardware/I2C.cpp b/src/Hardware/I2C.cpp
index 46bb34a9..c9369f0b 100644
--- a/src/Hardware/I2C.cpp
+++ b/src/Hardware/I2C.cpp
@@ -34,7 +34,7 @@ void I2C::Init()
static TaskHandle_t twiTask = nullptr; // the task that is waiting for a TWI command to complete
-extern "C" void WIRE_ISR_HANDLER()
+extern "C" void WIRE_ISR_HANDLER() noexcept
{
WIRE_INTERFACE->TWI_IDR = 0xFFFFFFFF;
if (twiTask != nullptr)