Remove useless stuff

This commit is contained in:
Geoffrey Merck 2020-05-10 00:03:05 +02:00
parent b0ba3b5dd8
commit 55df5fe04c

8
IO.h
View file

@ -26,14 +26,6 @@
struct TSample {
volatile uint16_t sample;
volatile uint8_t control;
TSample operator=(const volatile TSample& other) volatile {
return {other.sample, other.control};
}
volatile TSample operator=(const TSample& other) volatile {
return {other.sample, other.control};
}
};
class CIO {