pinebuds/services/app_ai/src/app_ai_if_gsound.cpp
Ben V. Brown 75381150fd Formatting
Formatting Pass 1

Lots of fixups to adding stdint and stdbool all over the place

Formatting Pass 2
Formatting Pass 3
Formatting Pass 4

Update app_bt_stream.cpp
2023-02-02 07:56:49 +11:00

13 lines
267 B
C++

#include "app_ai_if_gsound.h"
#include "cmsis_os.h"
#include "hal_trace.h"
#ifdef BISTO_ENABLED
#include "gsound_custom_service.h"
#endif
void app_ai_if_gsound_service_enable_switch(bool onOff) {
#ifdef BISTO_ENABLED
gsound_service_enable_switch(onOff);
#endif
}