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).
pull/24/head
Pharap 6 years ago committed by GitHub
parent 05f8ae0c83
commit 5880da2e35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      examples/FixedPointCalculations/FixedPointCalculations.ino

@ -159,6 +159,7 @@ void TestSQ7x8(void)
void setup()
{
Serial.begin(9600);
while(!Serial);
TestUQ8x8();

Loading…
Cancel
Save