mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-12-28 21:29:34 +00:00
16 lines
284 B
C++
16 lines
284 B
C++
#include "teensy-println.h"
|
|
|
|
namespace arduino_preprocessor_is_buggy {
|
|
|
|
bool serialavailable() {
|
|
Threads::Scope locker(getSerialLock());
|
|
return Serial.available();
|
|
}
|
|
|
|
char serialgetch() {
|
|
Threads::Scope locker(getSerialLock());
|
|
return Serial.read();
|
|
}
|
|
|
|
};
|