Define UART decoder

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
Joey Yakimowich-Payne 2026-08-11 12:23:07 +09:00
commit 05098bbdac

10
switch_uart_protocol.h Normal file
View file

@ -0,0 +1,10 @@
#pragma once
#include <stdint.h>
#include "switch_input.h"
bool switch_uart_decode_input_frame(
const uint8_t* packet,
uint8_t length,
SwitchInputState* out_state);