/* This file contains all project setup() statements */ #pragma once Serial.begin(SERIAL_BAUDRATE); // DO NOT USE! // In some environements this may block the program! // while (!Serial); yield(); // seems to be neccessary delay(5000); // 5000ms seem to be the minimum on my machine (WIN10)... Serial << endl; Serial << "Serial is ready-1." << endl; Serial << "Serial is ready-2." << endl; textToSplit.reserve(SIZE_RESERVED_STRING_XXL);