From c377018a85384f37bac03590595b7fc0e7f37505 Mon Sep 17 00:00:00 2001 From: driverblock Date: Sun, 2 Feb 2014 17:53:38 -0500 Subject: [PATCH] Add #include Necessary to explicitly include SPI.h since updates to the SD library for Arduino Due support --- examples/shield_sdlog/shield_sdlog.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/shield_sdlog/shield_sdlog.ino b/examples/shield_sdlog/shield_sdlog.ino index 8e4752d..6b948f3 100644 --- a/examples/shield_sdlog/shield_sdlog.ino +++ b/examples/shield_sdlog/shield_sdlog.ino @@ -1,4 +1,4 @@ - +#include #include #include #include @@ -160,4 +160,4 @@ void loop() { } -/* End code */ \ No newline at end of file +/* End code */