Remove useless stuff

This commit is contained in:
Geoffrey Merck 2020-05-10 00:03:05 +02:00
parent b0ba3b5dd8
commit 55df5fe04c
1 changed files with 0 additions and 8 deletions

8
IO.h
View File

@ -26,14 +26,6 @@
struct TSample { struct TSample {
volatile uint16_t sample; volatile uint16_t sample;
volatile uint8_t control; 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 { class CIO {