board/slider-frame.c: Add framing for touch slider PCB

This commit is contained in:
Tau
2018-11-08 14:45:28 -05:00
parent 372868565e
commit 5a7d549434
3 changed files with 206 additions and 0 deletions

25
board/slider-frame.h Normal file
View File

@ -0,0 +1,25 @@
#pragma once
#include <windows.h>
#include <stddef.h>
#include <stdint.h>
#include "hook/iobuf.h"
enum {
SLIDER_FRAME_SYNC = 0xFF,
};
struct slider_hdr {
uint8_t sync;
uint8_t cmd;
uint8_t nbytes;
};
HRESULT slider_frame_decode(struct iobuf *dest, struct iobuf *src);
HRESULT slider_frame_encode(
struct iobuf *dest,
const void *ptr,
size_t nbytes);