Files
Momentum-Firmware/applications/plugins/musictracker/tracker_engine/speaker_hal.h
VerstreuteSeele c02ce79f8c Application Galore
2022-12-20 06:28:52 +01:00

19 lines
380 B
C

#include <furi_hal.h>
void tracker_speaker_init();
void tracker_speaker_deinit();
void tracker_speaker_play(float frequency, float pwm);
void tracker_speaker_stop();
void tracker_interrupt_init(float freq, FuriHalInterruptISR isr, void* context);
void tracker_interrupt_deinit();
void tracker_debug_init();
void tracker_debug_set(bool value);
void tracker_debug_deinit();