8static const uint8_t ES8388_CONTROL1 = 0x00;
9static const uint8_t ES8388_CONTROL2 = 0x01;
11static const uint8_t ES8388_CHIPPOWER = 0x02;
13static const uint8_t ES8388_ADCPOWER = 0x03;
14static const uint8_t ES8388_DACPOWER = 0x04;
16static const uint8_t ES8388_CHIPLOPOW1 = 0x05;
17static const uint8_t ES8388_CHIPLOPOW2 = 0x06;
19static const uint8_t ES8388_ANAVOLMANAG = 0x07;
21static const uint8_t ES8388_MASTERMODE = 0x08;
24static const uint8_t ES8388_ADCCONTROL1 = 0x09;
25static const uint8_t ES8388_ADCCONTROL2 = 0x0a;
26static const uint8_t ES8388_ADCCONTROL3 = 0x0b;
27static const uint8_t ES8388_ADCCONTROL4 = 0x0c;
28static const uint8_t ES8388_ADCCONTROL5 = 0x0d;
29static const uint8_t ES8388_ADCCONTROL6 = 0x0e;
30static const uint8_t ES8388_ADCCONTROL7 = 0x0f;
31static const uint8_t ES8388_ADCCONTROL8 = 0x10;
32static const uint8_t ES8388_ADCCONTROL9 = 0x11;
33static const uint8_t ES8388_ADCCONTROL10 = 0x12;
34static const uint8_t ES8388_ADCCONTROL11 = 0x13;
35static const uint8_t ES8388_ADCCONTROL12 = 0x14;
36static const uint8_t ES8388_ADCCONTROL13 = 0x15;
37static const uint8_t ES8388_ADCCONTROL14 = 0x16;
39static const uint8_t ES8388_DACCONTROL1 = 0x17;
40static const uint8_t ES8388_DACCONTROL2 = 0x18;
41static const uint8_t ES8388_DACCONTROL3 = 0x19;
42static const uint8_t ES8388_DACCONTROL4 = 0x1a;
43static const uint8_t ES8388_DACCONTROL5 = 0x1b;
44static const uint8_t ES8388_DACCONTROL6 = 0x1c;
45static const uint8_t ES8388_DACCONTROL7 = 0x1d;
46static const uint8_t ES8388_DACCONTROL8 = 0x1e;
47static const uint8_t ES8388_DACCONTROL9 = 0x1f;
48static const uint8_t ES8388_DACCONTROL10 = 0x20;
49static const uint8_t ES8388_DACCONTROL11 = 0x21;
50static const uint8_t ES8388_DACCONTROL12 = 0x22;
51static const uint8_t ES8388_DACCONTROL13 = 0x23;
52static const uint8_t ES8388_DACCONTROL14 = 0x24;
53static const uint8_t ES8388_DACCONTROL15 = 0x25;
54static const uint8_t ES8388_DACCONTROL16 = 0x26;
55static const uint8_t ES8388_DACCONTROL17 = 0x27;
56static const uint8_t ES8388_DACCONTROL18 = 0x28;
57static const uint8_t ES8388_DACCONTROL19 = 0x29;
58static const uint8_t ES8388_DACCONTROL20 = 0x2a;
59static const uint8_t ES8388_DACCONTROL21 = 0x2b;
60static const uint8_t ES8388_DACCONTROL22 = 0x2c;
61static const uint8_t ES8388_DACCONTROL23 = 0x2d;
62static const uint8_t ES8388_DACCONTROL24 = 0x2e;
63static const uint8_t ES8388_DACCONTROL25 = 0x2f;
64static const uint8_t ES8388_DACCONTROL26 = 0x30;
65static const uint8_t ES8388_DACCONTROL27 = 0x31;
66static const uint8_t ES8388_DACCONTROL28 = 0x32;
67static const uint8_t ES8388_DACCONTROL29 = 0x33;
68static const uint8_t ES8388_DACCONTROL30 = 0x34;
70static const uint8_t ES8388_DAC_OUTPUT_NONE = 0xC0;
72static const uint8_t ES8388_DAC_OUTPUT_LOUT1_ROUT1 = 0x30;
73static const uint8_t ES8388_DAC_OUTPUT_LOUT2_ROUT2 = 0x0C;
74static const uint8_t ES8388_DAC_OUTPUT_BOTH = 0x3C;
76static const uint8_t ES8388_ADC_INPUT_LINPUT1_RINPUT1 = 0x00;
77static const uint8_t ES8388_ADC_INPUT_MIC1 = 0x05;
78static const uint8_t ES8388_ADC_INPUT_MIC2 = 0x06;
79static const uint8_t ES8388_ADC_INPUT_LINPUT2_RINPUT2 = 0x50;
80static const uint8_t ES8388_ADC_INPUT_DIFFERENCE = 0xf0;
Providing packet encoding functions for exchanging data with a remote host.