diff --git a/IO.h b/IO.h index 5955d7a..aec26a8 100644 --- a/IO.h +++ b/IO.h @@ -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 {