From 5880da2e3537a5691ef33075e843b894d3f06ba8 Mon Sep 17 00:00:00 2001 From: Pharap <2933055+Pharap@users.noreply.github.com> Date: Wed, 24 Jan 2018 22:21:00 +0000 Subject: [PATCH] Add Serial.begin for boards that need it (#15) Some Arduino boards require `Serial.begin` (e.g. the Uno and the Due) whilst others appear to not need it (e.g. the Arduboy). --- examples/FixedPointCalculations/FixedPointCalculations.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/FixedPointCalculations/FixedPointCalculations.ino b/examples/FixedPointCalculations/FixedPointCalculations.ino index 3b7bdf9..70f1e01 100644 --- a/examples/FixedPointCalculations/FixedPointCalculations.ino +++ b/examples/FixedPointCalculations/FixedPointCalculations.ino @@ -159,6 +159,7 @@ void TestSQ7x8(void) void setup() { + Serial.begin(9600); while(!Serial); TestUQ8x8();