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:
authorManuel Coenen <manuel@duet3d.com>2021-01-19 14:17:36 +0300
committerManuel Coenen <manuel@duet3d.com>2021-01-19 14:17:36 +0300
commit13f2a61c28178b8457361f05650c19b5c09e3c37 (patch)
tree57ffa824311d7d1cdcfc1514a58c9e866b6846c1 /src/Hardware
parentea415af6ef6b84519d2b3790e37b2cfd3e7143d8 (diff)
Fix remaining linker issues
Diffstat (limited to 'src/Hardware')
-rw-r--r--src/Hardware/IoPorts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hardware/IoPorts.cpp b/src/Hardware/IoPorts.cpp
index aca4c8b7..29e4238f 100644
--- a/src/Hardware/IoPorts.cpp
+++ b/src/Hardware/IoPorts.cpp
@@ -172,7 +172,7 @@ void IoPort::Release() noexcept
}
// Attach an interrupt to the pin. Nor permitted if we allocated the pin in shared input mode.
-bool IoPort::AttachInterrupt(StandardCallbackFunction callback, enum InterruptMode mode, CallbackParameter param) const noexcept
+bool IoPort::AttachInterrupt(StandardCallbackFunction callback, InterruptMode mode, CallbackParameter param) const noexcept
{
return IsValid() && !isSharedInput && attachInterrupt(GetPinNoCheck(), callback, mode, param);
}