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/packet_interface.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/packet_interface.c') diff --git a/src/packet_interface.c b/src/packet_interface.c index c448303..071cf02 100644 --- a/src/packet_interface.c +++ b/src/packet_interface.c @@ -57,3 +57,9 @@ void usart2_isr(void) { } /* else just return and wait for next byte */ } +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