/* * Bandai Namco Protocol * WHowe */ #ifndef BANA_H #define BANA_H #include #include /* 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(); const char *bana_get_led_pattern(); #endif