blob: 3c215f44d2aee2c4a1cfa2fc4c357db71150bfbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include <stdlib.h>
#include <stdint.h>
#include "eos.h"
#include "hpamp.h"
#include "app.h"
#ifdef EOS_DEBUG
#include <stdio.h>
#endif
void eos_app_hp_change(int hp_det) {
if (hp_det) {
int rv;
rv = eos_hpamp_init();
if (rv) {
#ifdef EOS_DEBUG
printf("I2S HP CHANGE: PCM1770 INIT ERR:%d\n", rv);
#endif
return;
}
}
}
|