mirror of
https://github.com/supleed2/EIE4-FYP.git
synced 2024-11-10 04:15:49 +00:00
15 lines
272 B
C++
15 lines
272 B
C++
#include <generated/csr.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef CSR_AUDIO_BASE
|
|
void note(uint32_t frequency, unsigned int duration_ms) {
|
|
audio_targ0_write(frequency);
|
|
busy_wait(duration_ms);
|
|
audio_targ0_write(0);
|
|
}
|
|
|
|
void wave(uint32_t wave) {
|
|
audio_wave0_write(wave);
|
|
}
|
|
#endif
|