mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
25 lines
No EOL
369 B
C
25 lines
No EOL
369 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();
|
|
|
|
void wav_player_hal_deinit();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |