diff options
| author | Drashna Jaelre | 2024-03-06 12:02:37 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-06 12:02:37 +0100 |
| commit | 83e6ddbbb4c8e715bfe419c4d7fc0ae305ea5bd5 (patch) | |
| tree | 28fd4e4bbbb83fc41e3800c5b95369592c6e9942 /platforms/test | |
| parent | 045e5c9729f22a8ab8a3f22fe9c0e6b51d1940fe (diff) | |
[Audio] Add support for audio shutdown pin (#22731)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'platforms/test')
| -rw-r--r-- | platforms/test/drivers/audio_pwm_hardware.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platforms/test/drivers/audio_pwm_hardware.c b/platforms/test/drivers/audio_pwm_hardware.c index 336e4f5844..3a0384117a 100644 --- a/platforms/test/drivers/audio_pwm_hardware.c +++ b/platforms/test/drivers/audio_pwm_hardware.c @@ -15,6 +15,6 @@ #include "audio.h" -void audio_driver_initialize(void) {} -void audio_driver_start() {} -void audio_driver_stop() {} +void audio_driver_initialize_impl(void) {} +void audio_driver_start_impl() {} +void audio_driver_stop_impl() {} |