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 13:16:50 +0300
committerManuel Coenen <manuel@duet3d.com>2021-01-19 13:22:32 +0300
commitea415af6ef6b84519d2b3790e37b2cfd3e7143d8 (patch)
treef690e2556cfc5f5b04cb161972470260597aade3 /src/Hardware/SAME70/Main.cpp
parente48e001033e373a8c59cf7892d7a4b8a5a7c9283 (diff)
Fix more linker issues (still not done)
Diffstat (limited to 'src/Hardware/SAME70/Main.cpp')
-rw-r--r--src/Hardware/SAME70/Main.cpp20
1 files changed, 1 insertions, 19 deletions
diff --git a/src/Hardware/SAME70/Main.cpp b/src/Hardware/SAME70/Main.cpp
index 5851ca16..4d26da64 100644
--- a/src/Hardware/SAME70/Main.cpp
+++ b/src/Hardware/SAME70/Main.cpp
@@ -6,29 +6,11 @@
* License: GNU GPL version 3
*/
-#include <Core.h>
+#include <CoreIO.h>
// Program initialisation
void AppInit() noexcept
{
}
-// syscalls.h must be included by exactly one .cpp file in the project
-#include <syscalls.h>
-
-[[noreturn]] void OutOfMemoryHandler() noexcept
-{
- while (true) { }
-}
-
-extern "C" [[noreturn]] void __cxa_pure_virtual() noexcept
-{
- while (true) { }
-}
-
-extern "C" [[noreturn]] void __cxa_deleted_virtual() noexcept
-{
- while (true) { }
-}
-
// End