diff --git a/PT6302.c b/PT6302.c index 3827198..47be36c 100644 --- a/PT6302.c +++ b/PT6302.c @@ -32,6 +32,10 @@ inline void PT6302_startup (void) PT6302_reset (); } +/* -------------------------------- + * Transmits the LSB of data + * Handles communication except CSB + * --------------------------------- */ static inline void transmit_bit (const uint8_t data) { PORTB &= ~CLKBpin; diff --git a/PT6302.h b/PT6302.h index 7f060d4..7d2dc42 100644 --- a/PT6302.h +++ b/PT6302.h @@ -54,12 +54,6 @@ void PT6302_startup (void); * ---------------------------------------------- */ void PT6302_reset (void); -/* -------------------------------- - * Transmits the LSB of data - * Handles communication except CSB - * --------------------------------- */ -static inline void transmit_bit (uint8_t data); - /* ------------------------------------------------ * Transmits one character (data) * Handles the entire communication