From 9a731c83dc63d31c744a703846f6510fe6794a52 Mon Sep 17 00:00:00 2001 From: Robert Konklewski Date: Wed, 13 Apr 2016 17:45:51 +0200 Subject: [PATCH] watchdog.c: fix compilation with module enabled. There was a linker error regarding missing MASK function, which is actually a macro defined in 'pinio.h'. After #including the file, problem disappeared. --- watchdog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/watchdog.c b/watchdog.c index b4feb9c..436d9db 100644 --- a/watchdog.c +++ b/watchdog.c @@ -15,6 +15,7 @@ #include #include #include "memory_barrier.h" +#include "pinio.h" #include "arduino.h" #ifndef EXTRUDER