mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
23 lines
338 B
C
23 lines
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 |