hc
2024-11-01 7e970c18f85f99acc678d90128b6e01dce1bf273
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __AIC_BSP_EXPORT_H
#define __AIC_BSP_EXPORT_H
 
#define AIC_BLUETOOTH        0
#define AIC_WIFI             1
#define AIC_PWR_OFF          0
#define AIC_PWR_ON           1
 
struct aicbsp_feature_t {
   bool band_5g_support;
   uint32_t sdio_clock;
   uint8_t  sdio_phase;
   uint8_t irqf;
};
 
int aicbsp_set_subsys(int, int);
int aicbsp_get_feature(struct aicbsp_feature_t *feature);
 
#endif