pinebuds/thirdparty/userapi/noise_tracker_app/noise_tracker_callback.c
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
No EOL
270 B
C

#include "noise_tracker_callback.h"
#include "hal_trace.h"
/**
* @brief Trigger word callback from kws lib
*
* @param word Detected word
* @param score Score of word
*
*/
void nt_demo_words_cb(float power) {
TRACE(1, "active power %d", (int)(power));
}