1
0
mirror of https://github.com/whowechina/aic_pico.git synced 2025-03-02 00:20:28 +01:00
2024-05-06 21:50:35 +08:00

29 lines
479 B
C

/*
* Bandai Namco Protocol
* WHowe <github.com/whowechina>
*/
#ifndef BANA_H
#define BANA_H
#include <stdint.h>
#include <stdbool.h>
/* return true if accepts a byte, false if rejects */
typedef void (*bana_putc_func)(uint8_t byte);
void bana_init(bana_putc_func putc_func);
bool bana_feed(int c);
/* if bana is currently active */
bool bana_is_active();
/* force fast expire */
void bana_fast_expire();
uint32_t bana_led_color();
#endif