sb16: finally make the driver work

This commit is contained in:
2026-05-20 14:50:17 +03:00
parent 312c543510
commit a77b51699c
6 changed files with 186 additions and 30 deletions
+6 -4
View File
@@ -1,10 +1,12 @@
#ifndef SB16_H
#define SB16_H
int sb16_dsp_reset();
int sb16_get_irq();
void* sb16_allocate_buf();
void sb16_get_version(int* major, int* minor);
extern int sb16_irq;
bool sb16_is_full();
void sb16_ack();
size_t sb16_write(uint8_t* input_buffer, size_t size);
bool sb16_is_playing();
void sb16_init();
#endif