aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmk_core/protocol/xt.h2
-rw-r--r--tmk_core/protocol/xt_interrupt.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/protocol/xt.h b/tmk_core/protocol/xt.h
index cc55b7dbc..538ff0e45 100644
--- a/tmk_core/protocol/xt.h
+++ b/tmk_core/protocol/xt.h
@@ -68,6 +68,6 @@ POSSIBILITY OF SUCH DAMAGE.
68 setPinOutput(XT_CLOCK_PIN); \ 68 setPinOutput(XT_CLOCK_PIN); \
69 } while (0) 69 } while (0)
70 70
71void xt_host_init(void); 71void xt_host_init(void);
72 72
73uint8_t xt_host_recv(void); 73uint8_t xt_host_recv(void);
diff --git a/tmk_core/protocol/xt_interrupt.c b/tmk_core/protocol/xt_interrupt.c
index 3dd7e6177..ba9d71848 100644
--- a/tmk_core/protocol/xt_interrupt.c
+++ b/tmk_core/protocol/xt_interrupt.c
@@ -119,9 +119,9 @@ ISR(XT_INT_VECT) {
119 * Ring buffer to store scan codes from keyboard 119 * Ring buffer to store scan codes from keyboard
120 *------------------------------------------------------------------*/ 120 *------------------------------------------------------------------*/
121#define PBUF_SIZE 32 121#define PBUF_SIZE 32
122static uint8_t pbuf[PBUF_SIZE]; 122static uint8_t pbuf[PBUF_SIZE];
123static uint8_t pbuf_head = 0; 123static uint8_t pbuf_head = 0;
124static uint8_t pbuf_tail = 0; 124static uint8_t pbuf_tail = 0;
125 125
126static inline void pbuf_enqueue(uint8_t data) { 126static inline void pbuf_enqueue(uint8_t data) {
127 uint8_t sreg = SREG; 127 uint8_t sreg = SREG;