summaryrefslogtreecommitdiff
path: root/fw/fe310/test/phone.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2021-08-27 02:27:38 +0200
committerUros Majstorovic <majstor@majstor.org>2021-08-27 02:27:38 +0200
commit331fcf483d9eac2e65e40ec35cf7558132c7c86f (patch)
treec12659e6f395a39108a419a385a9e82655cc6c49 /fw/fe310/test/phone.c
parent0ba3fd9a0f1bfc599afb209df383cc5c98175b98 (diff)
test app prints bq25895 regs
Diffstat (limited to 'fw/fe310/test/phone.c')
-rw-r--r--fw/fe310/test/phone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fw/fe310/test/phone.c b/fw/fe310/test/phone.c
index 74936a1..78531b5 100644
--- a/fw/fe310/test/phone.c
+++ b/fw/fe310/test/phone.c
@@ -48,7 +48,6 @@ static void handle_mic(unsigned char type) {
static void cell_voice_handler(unsigned char type, unsigned char *buffer, uint16_t len) {
char msg[128];
- printf("VOICE: %d\n", type);
msg[0] = 0;
switch (type) {
case EOS_CELL_MTYPE_VOICE_RING:
@@ -61,6 +60,7 @@ static void cell_voice_handler(unsigned char type, unsigned char *buffer, uint16
break;
case EOS_CELL_MTYPE_VOICE_BEGIN:
+ printf("VOICE BEGIN\n");
voice_state = VOICE_STATE_CIP;
eos_i2s_start(8000, EOS_I2S_FMT_PCM16);
break;