Chirp SonicLib  4.5.2
ch201.h
Go to the documentation of this file.
1 
12 /*
13  Copyright 2016-2023, InvenSense, Inc. All rights reserved.
14 
15  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18  DISCLAIMED.
19 
20  */
21 
22 #ifndef CH201_H_
23 #define CH201_H_
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 #define CH201_DATA_MEM_SIZE 0x800
30 #define CH201_DATA_MEM_ADDR 0x0200
31 #define CH201_PROG_MEM_SIZE 0x800
32 #define CH201_PROG_MEM_ADDR 0xF800
33 #define CH201_FW_SIZE CH201_PROG_MEM_SIZE
34 
35 #define CH201_BANDWIDTH_INDEX_1 6
36 #define CH201_BANDWIDTH_INDEX_2 \
37  (CH201_BANDWIDTH_INDEX_1 + 1)
38 #define CH201_SCALEFACTOR_INDEX 4
40 #define CH201_MAX_TICK_INTERVAL 128
41 
42 #ifdef __cplusplus
43 }
44 #endif
45 
46 #endif