I'm a n00b to Arduino Web Editor with a simple question. I can import LowLatencyLogger.ino but it errors with on function call to printHeader() which is defined in UserTypes.h
In both cases is tried: #include "UserTypes.h" and #include <UserTypes.h>
The compiler is complaining about line 294: printHeader(&Serial);
which is defined in userTypes.h as void printHeader(Print* pr);
which is just a prototype for me to modify to suit my personal requirements. But first I need to get LLL.ino to compile without modification. After that, all new errors will be my fault.
Line 294 of LowLatencyLogger.ino which reads: printHeader(&Serial);
which is where the compiler barfs with the error:
LowLatencyLogger.ino:294: undefined reference to `printHeader(Print*)'
and the function printHeader() is defined as: void printHeader(Print* pr);
in the file UserTypes.h