From 21be46a0b5364c5f00f4d081ad9524ae9a36d022 Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 8 Nov 2018 19:53:11 +0900 Subject: HID report transmission partially works now partially i.e. if you attach the keyboard before the noise handshake. I suspect some memory corruption somewhere. --- src/usart_helpers.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/usart_helpers.c') diff --git a/src/usart_helpers.c b/src/usart_helpers.c index 493c019..a1f7b4e 100644 --- a/src/usart_helpers.c +++ b/src/usart_helpers.c @@ -144,9 +144,3 @@ void flush(void *file) { nvic_enable_irq(f->irqn); } -void send_packet(struct dma_usart_file *f, const uint8_t *data, size_t len) { - /* ignore return value as putf is blocking and always succeeds */ - (void)cobs_encode_incremental(f, putf, (char *)data, len); - flush(f); -} - -- cgit