mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-16 01:28:00 +00:00
23 lines
No EOL
338 B
C
23 lines
No EOL
338 B
C
#pragma once
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void wav_player_speaker_init();
|
|
|
|
void wav_player_speaker_start();
|
|
|
|
void wav_player_speaker_stop();
|
|
|
|
void wav_player_dma_init(uint32_t address, size_t size);
|
|
|
|
void wav_player_dma_start();
|
|
|
|
void wav_player_dma_stop();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |