feat: Add rfid feature and .gitignore file
This commit is contained in:
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -28,6 +28,9 @@
|
||||
"xtell.h": "c",
|
||||
"debug.h": "c",
|
||||
"ano_protocol.h": "c",
|
||||
"board_jl701n_demo_global_build_cfg.h": "c"
|
||||
"board_jl701n_demo_global_build_cfg.h": "c",
|
||||
"_types.h": "c",
|
||||
"sys_time.h": "c",
|
||||
"typedef.h": "c"
|
||||
}
|
||||
}
|
||||
@ -81,10 +81,10 @@ const struct task_info task_info_table[] = {
|
||||
#if AUDIO_ENC_MPT_SELF_ENABLE
|
||||
{"enc_mpt_self", 3, 0, 512, 128 },
|
||||
#endif/*AUDIO_ENC_MPT_SELF_ENABLE*/
|
||||
// {"update", 1, 0, 256, 0 },
|
||||
// {"tws_ota", 2, 0, 256, 0 },
|
||||
// {"tws_ota_msg", 2, 0, 256, 128 },
|
||||
// {"dw_update", 2, 0, 256, 128 },
|
||||
{"update", 1, 0, 256, 0 },
|
||||
{"tws_ota", 2, 0, 256, 0 },
|
||||
{"tws_ota_msg", 2, 0, 256, 128 },
|
||||
{"dw_update", 2, 0, 256, 128 },
|
||||
{"rcsp_task", 2, 0, 640, 128 },
|
||||
// {"aud_capture", 4, 0, 512, 256 },
|
||||
// {"data_export", 5, 0, 512, 256 },
|
||||
|
||||
@ -87,7 +87,7 @@
|
||||
//*********************************************************************************//
|
||||
// USB 配置 //
|
||||
//*********************************************************************************//
|
||||
#define TCFG_PC_ENABLE 1//DISABLE_THIS_MOUDLE//PC模块使能
|
||||
#define TCFG_PC_ENABLE 0//DISABLE_THIS_MOUDLE//PC模块使能
|
||||
#define TCFG_UDISK_ENABLE 0//ENABLE_THIS_MOUDLE//U盘模块使能
|
||||
#define TCFG_OTG_USB_DEV_EN BIT(0)//USB0 = BIT(0) USB1 = BIT(1)
|
||||
|
||||
@ -729,7 +729,7 @@ DAC硬件上的连接方式,可选的配置:
|
||||
// 充电舱/蓝牙测试盒/ANC测试三者为同级关系,开启任一功能都会初始化PP0通信接口 //
|
||||
//*********************************************************************************//
|
||||
#define TCFG_CHARGESTORE_ENABLE DISABLE_THIS_MOUDLE //是否支持智能充电舱
|
||||
#define TCFG_TEST_BOX_ENABLE ENABLE_THIS_MOUDLE //是否支持蓝牙测试盒 //xtell
|
||||
#define TCFG_TEST_BOX_ENABLE DISABLE_THIS_MOUDLE//ENABLE_THIS_MOUDLE //是否支持蓝牙测试盒 //xtell
|
||||
#define TCFG_ANC_BOX_ENABLE CONFIG_ANC_ENABLE //是否支持ANC测试盒
|
||||
#define TCFG_UMIDIGI_BOX_ENABLE DISABLE_THIS_MOUDLE //是否支持UMIDIGI充电舱 //xtell
|
||||
#if TCFG_UMIDIGI_BOX_ENABLE
|
||||
@ -807,7 +807,7 @@ DAC硬件上的连接方式,可选的配置:
|
||||
// EQ配置 //
|
||||
//*********************************************************************************//
|
||||
//EQ配置,使用在线EQ时,EQ文件和EQ模式无效。有EQ文件时,使能TCFG_USE_EQ_FILE,默认不用EQ模式切换功能
|
||||
#define TCFG_EQ_ENABLE 1 //支持EQ功能,EQ总使能
|
||||
#define TCFG_EQ_ENABLE 0 //支持EQ功能,EQ总使能
|
||||
// #if TCFG_EQ_ENABLE
|
||||
#define TCFG_EQ_ONLINE_ENABLE 0 //支持在线EQ调试,如果使用蓝牙串口调试,需要打开宏 APP_ONLINE_DEBUG,否则,默认使用uart调试(二选一)
|
||||
#define TCFG_BT_MUSIC_EQ_ENABLE 1 //支持蓝牙音乐EQ
|
||||
@ -1010,7 +1010,7 @@ DAC硬件上的连接方式,可选的配置:
|
||||
//*********************************************************************************//
|
||||
#define TCFG_USER_TWS_ENABLE 0 //tws功能使能
|
||||
#define TCFG_USER_BLE_ENABLE 1 //BLE功能使能
|
||||
#define TCFG_BT_SUPPORT_AAC 1 //AAC格式支持
|
||||
#define TCFG_BT_SUPPORT_AAC 0 //AAC格式支持
|
||||
#define TCFG_BT_SUPPORT_LDAC 0 //LDAC格式支持
|
||||
|
||||
#if TCFG_BT_SUPPORT_LDAC
|
||||
@ -1084,7 +1084,7 @@ DAC硬件上的连接方式,可选的配置:
|
||||
// 编解码格式配置(CodecFormat) //
|
||||
//*********************************************************************************//
|
||||
/*解码格式使能*/
|
||||
#define TCFG_DEC_MP3_ENABLE ENABLE
|
||||
#define TCFG_DEC_MP3_ENABLE DISABLE
|
||||
#define TCFG_DEC_WTGV2_ENABLE ENABLE
|
||||
#define TCFG_DEC_G729_ENABLE DISABLE
|
||||
#define TCFG_DEC_WMA_ENABLE DISABLE
|
||||
|
||||
@ -8,8 +8,8 @@
|
||||
|
||||
/* Following Macros Affect Periods Of Both Code Compiling And Post-build */
|
||||
|
||||
#define CONFIG_DOUBLE_BANK_ENABLE 0 //单双备份选择(若打开了改宏,FLASH结构变为双备份结构,适用于接入第三方协议的OTA, PS: JL-OTA同样支持双备份升级, 需要根据实际FLASH大小同时配置CONFIG_FLASH_SIZE)
|
||||
#define CONFIG_APP_OTA_ENABLE 0 //是否支持RCSP升级(JL-OTA)
|
||||
#define CONFIG_DOUBLE_BANK_ENABLE 1 //单双备份选择(若打开了改宏,FLASH结构变为双备份结构,适用于接入第三方协议的OTA, PS: JL-OTA同样支持双备份升级, 需要根据实际FLASH大小同时配置CONFIG_FLASH_SIZE)
|
||||
#define CONFIG_APP_OTA_ENABLE 1 //是否支持RCSP升级(JL-OTA)
|
||||
|
||||
#define CONFIG_UPDATE_JUMP_TO_MASK 0 //配置升级到loader的方式0为直接reset,1为跳转(适用于芯片电源由IO口KEEP住的方案,需要注意检查跳转前是否将使用DMA的硬件模块全部关闭)
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
/* Following Macros Only For Post Bulid Configuaration */
|
||||
|
||||
#define CONFIG_DB_UPDATE_DATA_GENERATE_EN 0 //是否生成db_data.bin(用于第三方协议接入使用)
|
||||
#define CONFIG_ONLY_GRENERATE_ALIGN_4K_CODE 0 //ufw只生成1份4K对齐的代码
|
||||
#define CONFIG_ONLY_GRENERATE_ALIGN_4K_CODE 1 //ufw只生成1份4K对齐的代码
|
||||
|
||||
//config for supported chip version
|
||||
#ifdef CONFIG_BR30_C_VERSION
|
||||
|
||||
@ -65,8 +65,8 @@
|
||||
#if CONFIG_APP_OTA_ENABLE
|
||||
#define RCSP_UPDATE_EN 1 //是否支持rcsp升级
|
||||
#if CONFIG_DOUBLE_BANK_ENABLE //双备份才能打开同步升级流程
|
||||
#define OTA_TWS_SAME_TIME_ENABLE 1 //是否支持TWS同步升级
|
||||
#define OTA_TWS_SAME_TIME_NEW 1 //使用新的tws ota流程
|
||||
#define OTA_TWS_SAME_TIME_ENABLE 0 //是否支持TWS同步升级
|
||||
#define OTA_TWS_SAME_TIME_NEW 0 //使用新的tws ota流程
|
||||
#else
|
||||
#define OTA_TWS_SAME_TIME_ENABLE 1//0 xtellota //是否支持TWS同步升级
|
||||
#define OTA_TWS_SAME_TIME_NEW 1//0 //使用新的tws ota流程
|
||||
|
||||
@ -531,7 +531,7 @@ void skiing_tracker_update(skiing_tracker_t *tracker, float *acc_g, float *gyr_d
|
||||
|
||||
|
||||
|
||||
#if 0
|
||||
#if 1
|
||||
float linear_acc_device[3];
|
||||
float linear_acc_world[3];
|
||||
float tmp_world_acc[3];
|
||||
@ -547,7 +547,7 @@ void skiing_tracker_update(skiing_tracker_t *tracker, float *acc_g, float *gyr_d
|
||||
tmp_world_acc[2] * tmp_world_acc[2]);
|
||||
|
||||
static int count = 0;
|
||||
if(count > 10){
|
||||
if(count > 100){
|
||||
xlog("===original(g): x %.2f, y %.2f, z %.2f===\n",acc_g[0],acc_g[1],acc_g[2]);
|
||||
xlog("===world(m/s^2) no g: x %.2f, y %.2f, z %.2f, all %.2f===\n",tmp_world_acc[0],tmp_world_acc[1],tmp_world_acc[2],all_world_mag); //去掉重力加速度
|
||||
xlog("===gyr(dps) : x %.2f, y %.2f, z %.2f===\n",gyr_dps[0],gyr_dps[1],gyr_dps[2]); //angle
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
#include "tone_player.h"
|
||||
#include "ui_manage.h"
|
||||
#include "gpio.h"
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
#include "app_main.h"
|
||||
#include "asm/charge.h"
|
||||
#include "update.h"
|
||||
@ -24,6 +26,8 @@
|
||||
#include "./sensor/MMC56.h"
|
||||
#include "./sensor/BMP280.h"
|
||||
#include "./sensor/AK8963.h"
|
||||
#include "asm/rtc.h"
|
||||
#include "system/timer.h"
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
//宏定义
|
||||
#define ENABLE_XLOG 1
|
||||
@ -64,6 +68,9 @@ typedef struct {
|
||||
// -- 气压计 --
|
||||
int adc_P;
|
||||
int adc_T;
|
||||
// -- 左/右腿 --
|
||||
uint8_t foot; //1:左脚;2:右脚
|
||||
|
||||
} BLE_send_data_t;
|
||||
|
||||
static int count = 0;
|
||||
@ -166,6 +173,7 @@ void start_collect_fuc(void){
|
||||
|
||||
// xlog("=======sensor_read_data END\n");
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@ -290,7 +298,7 @@ void BLE_send_fuc(void){
|
||||
}
|
||||
}
|
||||
|
||||
static u8 bmp280_test_id = 0;
|
||||
|
||||
void xtell_task_create(void){
|
||||
|
||||
#if TCFG_GSENOR_USER_IIC_TYPE
|
||||
@ -311,15 +319,9 @@ void xtell_task_create(void){
|
||||
|
||||
circle_buffer_init(&BLE_send_buff, BLE_send_data, SENSOR_DATA_BUFFER_SIZE, sizeof(BLE_send_data_t));
|
||||
|
||||
bmp280_init();
|
||||
extern void bmp280_test(void);
|
||||
xlog("barometer start measeure\n");
|
||||
// create_process(&bmp280_test_id,"bmp280_test",NULL, bmp280_test, 100);
|
||||
float Temp = 0;
|
||||
float Press = 0;
|
||||
xlog("test_func\n");
|
||||
bmp280_read_data(&Temp, &Press);
|
||||
xlog("Temp:%.2f, Press:%.2f\n",Temp,Press);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -330,4 +332,40 @@ void xtell_task_create(void){
|
||||
|
||||
void bmp280_test(void){
|
||||
|
||||
}
|
||||
|
||||
void gsensor_test(void){
|
||||
// static signed short combined_raw_data[6];
|
||||
// static int initialized = 0;
|
||||
// static int calibration_done = 0;
|
||||
// char status = 0;
|
||||
// BLE_send_data_t BLE_send_data_tmp;
|
||||
// signed short acc_data_buf[3];
|
||||
// signed short gyr_data_buf[3];
|
||||
// float angle[3];
|
||||
// float quaternion_output[3];
|
||||
|
||||
// // -- 读数据 --
|
||||
// SL_SC7U22_RawData_Read(acc_data_buf,gyr_data_buf);
|
||||
|
||||
// memcpy(&combined_raw_data[0], acc_data_buf, 3 * sizeof(signed short));
|
||||
// memcpy(&combined_raw_data[3], gyr_data_buf, 3 * sizeof(signed short));
|
||||
|
||||
// // -- 四元数 --
|
||||
// status = Q_SL_SC7U22_Angle_Output(0, combined_raw_data, angle,NULL, 0, quaternion_output);
|
||||
|
||||
// // -- 速度计算 --
|
||||
// memcpy(acc_data_buf, &combined_raw_data[0], 3 * sizeof(signed short));
|
||||
// memcpy(gyr_data_buf, &combined_raw_data[3], 3 * sizeof(signed short));
|
||||
// uint16_t speed = sensor_processing_task(acc_data_buf,gyr_data_buf,angle, quaternion_output);
|
||||
|
||||
#if 1
|
||||
if(count >= 5){
|
||||
xlog("==============time============\n");
|
||||
u32 current_ms = sys_timer_get_ms();
|
||||
xlog("====== current system time: %u ms\n", current_ms);
|
||||
count = 0;
|
||||
}
|
||||
count++;
|
||||
#endif
|
||||
}
|
||||
@ -1504,6 +1504,8 @@ unsigned char Q_SL_SC7U22_Angle_Output(unsigned char calibration_en, signed shor
|
||||
SL_SC7U22_Error_cnt2 = 0;
|
||||
SL_SC7U22_Error_cnt = 0;
|
||||
for (sl_i = 0; sl_i < 6; sl_i++) Sum_Avg_Accgyro[sl_i] = Sum_Avg_Accgyro[sl_i] / 50;
|
||||
|
||||
|
||||
Error_Accgyro[0] = 0 - Sum_Avg_Accgyro[0];
|
||||
Error_Accgyro[1] = 0 - Sum_Avg_Accgyro[1];
|
||||
#if ACC_RANGE==2
|
||||
@ -1518,6 +1520,8 @@ unsigned char Q_SL_SC7U22_Angle_Output(unsigned char calibration_en, signed shor
|
||||
Error_Accgyro[3] = 0 - Sum_Avg_Accgyro[3];
|
||||
Error_Accgyro[4] = 0 - Sum_Avg_Accgyro[4];
|
||||
Error_Accgyro[5] = 0 - Sum_Avg_Accgyro[5];
|
||||
|
||||
|
||||
// xlog("AVG_Recode AX:%d,AY:%d,AZ:%d,GX:%d,GY:%d,GZ:%d\r\n", Sum_Avg_Accgyro[0], Sum_Avg_Accgyro[1], Sum_Avg_Accgyro[2], Sum_Avg_Accgyro[3], Sum_Avg_Accgyro[4], Sum_Avg_Accgyro[5]);
|
||||
// xlog("Error_Recode AX:%d,AY:%d,AZ:%d,GX:%d,GY:%d,GZ:%d\r\n", Error_Accgyro[0], Error_Accgyro[1], Error_Accgyro[2], Error_Accgyro[3], Error_Accgyro[4], Error_Accgyro[5]);
|
||||
}
|
||||
|
||||
@ -83,7 +83,7 @@ extern u8 init_ok;
|
||||
extern u8 sniff_out;
|
||||
unsigned char xtell_bl_state=0; //存放经典蓝牙的连接状态,0断开,1是连接
|
||||
u8 bt_newname =0;
|
||||
unsigned char xt_ble_new_name[9] = "CM-22222";
|
||||
unsigned char xt_ble_new_name[9] = "CM-33333";
|
||||
static u16 play_poweron_ok_timer_id = 0;
|
||||
|
||||
// -- 初始化标志位 --
|
||||
@ -94,6 +94,7 @@ u8 BMP280_init = 0x30; //气压计初始化
|
||||
u16 SC7U22_calibration_id;
|
||||
u16 start_collect_fuc_id;
|
||||
u16 BLE_send_fuc_id;
|
||||
u16 gsensor_test_id = 0;
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
extern int bt_hci_event_handler(struct bt_event *bt);
|
||||
@ -213,6 +214,10 @@ void le_user_app_event_handler(struct sys_event* event){
|
||||
if (event->u.app.buffer[0] == 0xBE && event->u.app.buffer[1] == 0xBB) {
|
||||
if(event->u.app.buffer[2] == 0x01){ //后面的数据长度 1
|
||||
switch (event->u.app.buffer[3]){
|
||||
case 0x01:
|
||||
extern void gsensor_test(void);
|
||||
create_process(&gsensor_test_id,"gsensor_test",NULL,gsensor_test,1000);
|
||||
break;
|
||||
case 0xff: //测试
|
||||
u8 device_buff[10];
|
||||
u8 founds = 0;
|
||||
|
||||
@ -274,19 +274,7 @@ cvsd_decoder
|
||||
|
||||
|
||||
pcm_decoder
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
mp3_decoder
|
||||
wtgv2_decoder
|
||||
|
||||
|
||||
|
||||
aac_decoder
|
||||
cvsd_encoder
|
||||
|
||||
|
||||
|
||||
@ -33,19 +33,7 @@ cvsd_decoder
|
||||
|
||||
|
||||
pcm_decoder
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
mp3_decoder
|
||||
wtgv2_decoder
|
||||
|
||||
|
||||
|
||||
aac_decoder
|
||||
cvsd_encoder
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -14,13 +14,12 @@
|
||||
|
||||
|
||||
[EXTRA_CFG_PARAM]
|
||||
NEW_FLASH_FS = YES;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
BR22_TWS_DB = YES;
|
||||
FLASH_SIZE = 0x100000;
|
||||
BR22_TWS_VERSION = 0;
|
||||
FORCE_4K_ALIGN = YES;
|
||||
SPECIAL_OPT = 0;
|
||||
CHIP_NAME = AC701N;
|
||||
ENTRY = 0x6000100;
|
||||
PID = AC701N;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
321339
cpu/br28/tools/sdk.lst
321339
cpu/br28/tools/sdk.lst
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -13,7 +13,7 @@ struct sys_time {
|
||||
u8 sec;
|
||||
};
|
||||
|
||||
#if 0
|
||||
#if 1
|
||||
struct tm {
|
||||
int tm_sec; /* Seconds. [0-60] (1 leap second) */
|
||||
int tm_min; /* Minutes. [0-59] */
|
||||
|
||||
Binary file not shown.
@ -67,4 +67,4 @@ objs/apps/common/device/usb/device/hid.c.o: \
|
||||
C:/JL/pi32/pi32v2-include\stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\machine/stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\alloca.h \
|
||||
include_lib/btctrler/classic/hci_lmp.h include_lib/system\debug.h
|
||||
include_lib/btctrler/classic/hci_lmp.h
|
||||
|
||||
Binary file not shown.
@ -132,4 +132,4 @@ objs/apps/common/device/usb/device/msd.c.o: \
|
||||
C:/JL/pi32/pi32v2-include\stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\machine/stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\alloca.h \
|
||||
include_lib/btctrler/classic/hci_lmp.h include_lib/system\debug.h
|
||||
include_lib/btctrler/classic/hci_lmp.h
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -128,13 +128,4 @@ objs/apps/common/device/usb/device/task_pc.c.o: \
|
||||
include_lib/btctrler/classic/hci_lmp.h \
|
||||
apps/earphone/include\app_action.h include_lib/driver\device/sdmmc.h \
|
||||
apps/earphone/include\app_charge.h \
|
||||
include_lib/driver/cpu/br28\asm/charge.h \
|
||||
apps/earphone/include\app_task.h apps/common/device\usb/usb_config.h \
|
||||
include_lib/driver/cpu/br28\asm/usb.h \
|
||||
include_lib/driver/device\usb/device/usb_stack.h \
|
||||
include_lib/driver/device\usb/ch9.h \
|
||||
include_lib/driver/device\usb/usb_phy.h \
|
||||
include_lib/driver/device\usb/otg.h \
|
||||
include_lib/driver/device\usb/host/usb_host.h \
|
||||
include_lib/driver/device\usb/device/hid.h \
|
||||
include_lib/driver/device\usb/device/msd.h include_lib/system\debug.h
|
||||
include_lib/driver/cpu/br28\asm/charge.h
|
||||
|
||||
Binary file not shown.
@ -131,4 +131,4 @@ objs/apps/common/device/usb/device/uac1.c.o: \
|
||||
C:/JL/pi32/pi32v2-include\stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\machine/stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\alloca.h \
|
||||
include_lib/btctrler/classic/hci_lmp.h include_lib/system\debug.h
|
||||
include_lib/btctrler/classic/hci_lmp.h
|
||||
|
||||
Binary file not shown.
@ -131,8 +131,4 @@ objs/apps/common/device/usb/device/uac_stream.c.o: \
|
||||
include_lib/driver/device\usb/ch9.h \
|
||||
include_lib/driver/device\usb/usb_phy.h \
|
||||
include_lib/driver/device\usb/otg.h \
|
||||
include_lib/driver/device\usb/host/usb_host.h \
|
||||
include_lib/driver/device\usb/device/uac_audio.h \
|
||||
apps/common/device/usb/device/uac_stream.h cpu/br28\audio_config.h \
|
||||
include_lib/media/media_new/media\audio_track.h \
|
||||
include_lib/system\debug.h
|
||||
include_lib/driver/device\usb/host/usb_host.h
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -53,4 +53,112 @@ objs/apps/common/third_party_profile/jieli/JL_rcsp/rcsp_updata/rcsp_adv_user_upd
|
||||
C:/JL/pi32/pi32v2-include\machine/stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\alloca.h \
|
||||
include_lib/btctrler/classic/hci_lmp.h \
|
||||
apps/common/third_party_profile/jieli/JL_rcsp/rcsp_updata/rcsp_adv_user_update.h
|
||||
apps/common/third_party_profile/jieli/JL_rcsp/rcsp_updata/rcsp_adv_user_update.h \
|
||||
include_lib/driver/device\uart.h include_lib/system\device/device.h \
|
||||
include_lib/system\generic/list.h include_lib/system\generic/atomic.h \
|
||||
include_lib/system/generic/cpu.h include_lib/system/generic/irq.h \
|
||||
include_lib/system\device/ioctl_cmds.h \
|
||||
include_lib/system\generic/ioctl.h include_lib\system/task.h \
|
||||
include_lib/system/os/os_api.h include_lib/system\os/os_cpu.h \
|
||||
include_lib/system/generic\jiffies.h include_lib/system\os/os_error.h \
|
||||
include_lib/system\os/os_type.h include_lib/system\os/ucos_ii.h \
|
||||
include_lib/system\os/os_cfg.h include_lib/system\os/os_api.h \
|
||||
include_lib\system/timer.h include_lib/update\update.h \
|
||||
apps/common/third_party_profile/common\custom_cfg.h \
|
||||
include_lib\btstack/avctp_user.h include_lib/btstack/btstack_typedef.h \
|
||||
include_lib/btstack/third_party/rcsp\JL_rcsp_packet.h \
|
||||
include_lib/btstack/third_party/rcsp\JL_rcsp_protocol.h \
|
||||
apps/common/third_party_profile/jieli/JL_rcsp/adv_rcsp_protocol\rcsp_adv_bluetooth.h \
|
||||
include_lib\system/event.h include_lib/system/generic/rect.h \
|
||||
apps/common/third_party_profile/jieli\le_common.h \
|
||||
include_lib\btstack/bluetooth.h \
|
||||
include_lib/btstack/le/ble_data_types.h \
|
||||
include_lib/btstack/le/ble_api.h include_lib/btstack/le/le_user.h \
|
||||
include_lib/btstack/le/att.h include_lib/btstack/le/gatt.h \
|
||||
include_lib/btstack/le/sm.h include_lib/btstack/btstack_event.h \
|
||||
include_lib\btstack/le/le_common_define.h \
|
||||
include_lib/btstack/third_party/common\ble_user.h \
|
||||
include_lib/btstack/third_party/common\spp_user.h \
|
||||
apps/common/third_party_profile/jieli/JL_rcsp/bt_trans_data\le_rcsp_adv_module.h \
|
||||
apps/common/include\bt_common.h cpu/br28\audio_anc.h \
|
||||
include_lib/media/media_new/media/cpu/br28\asm/anc.h \
|
||||
include_lib/media/media_new/media/cpu/br28\asm/audio_adc.h \
|
||||
include_lib\system/spinlock.h \
|
||||
include_lib/media/media_new/media\anc_btspp.h \
|
||||
include_lib/media/media_new/media\anc_uart.h \
|
||||
include_lib/system\generic/circular_buf.h \
|
||||
include_lib\system/includes.h include_lib/system/init.h \
|
||||
include_lib/system/wait.h include_lib/system/app_core.h \
|
||||
include_lib/system/app_msg.h include_lib/system/database.h \
|
||||
include_lib/system/fs/fs.h include_lib\system/sys_time.h \
|
||||
include_lib/system/fs/fs_file_name.h include_lib/system/fs/sdfile.h \
|
||||
include_lib/system/power_manage.h include_lib/system/syscfg_id.h \
|
||||
include_lib/system/bank_switch.h include_lib/system/generic/includes.h \
|
||||
include_lib/system/generic/ascii.h include_lib/system/generic/gpio.h \
|
||||
include_lib/driver/cpu/br28\asm/gpio.h \
|
||||
include_lib/system/generic/version.h include_lib/system/generic/lbuf.h \
|
||||
include_lib/system/generic/lbuf_lite.h \
|
||||
include_lib/system/generic/index.h \
|
||||
include_lib/system/generic/debug_lite.h \
|
||||
include_lib/system/device/includes.h \
|
||||
include_lib/system/device/key_driver.h \
|
||||
include_lib/system/device/iokey.h include_lib/system/device/irkey.h \
|
||||
include_lib/system/device/adkey.h \
|
||||
include_lib/driver/cpu/br28\asm/adc_api.h \
|
||||
include_lib/system/device/slidekey.h \
|
||||
include_lib/system/device/touch_key.h \
|
||||
include_lib/driver/cpu/br28\asm/plcnt.h \
|
||||
include_lib/system/device/rdec_key.h \
|
||||
include_lib/driver/cpu/br28\asm/rdec.h \
|
||||
include_lib/driver/cpu/br28\asm/includes.h \
|
||||
include_lib/driver/cpu/br28\asm/crc16.h \
|
||||
include_lib/driver/cpu/br28\asm/clock.h \
|
||||
include_lib/driver/cpu/br28\asm/clock_hw.h \
|
||||
include_lib/driver/cpu/br28\asm/clock_define.h \
|
||||
include_lib/driver/cpu/br28\asm/uart.h \
|
||||
include_lib/driver/cpu/br28\asm/uart_dev.h \
|
||||
include_lib/driver/cpu/br28\asm/spiflash.h \
|
||||
include_lib/driver\device/spiflash.h \
|
||||
include_lib/driver/cpu/br28\asm/power_interface.h \
|
||||
include_lib/driver/cpu/br28\asm/power/p33.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p33_sfr.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p33_app.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p33_io_app.h \
|
||||
include_lib/driver/cpu/br28/asm/power/rtc_app.h \
|
||||
include_lib/driver/cpu/br28\asm/power/p11.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_csfr.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_sfr.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_io_omap.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_io_imap.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_app.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_api.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_port.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_wakeup.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_reset.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_compat.h \
|
||||
include_lib/driver/cpu/br28\asm/power/lp_ipc.h \
|
||||
include_lib/driver/cpu/br28/asm/power/m2p_msg.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p2m_msg.h \
|
||||
include_lib/driver/cpu/br28\asm/efuse.h \
|
||||
include_lib/driver/cpu/br28\asm/wdt.h \
|
||||
include_lib/driver/cpu/br28\asm/debug.h \
|
||||
include_lib/driver/cpu/br28\asm/timer.h \
|
||||
include_lib/driver/cpu/br28\asm/rtc.h \
|
||||
include_lib/driver\device/sdio_host_init.h \
|
||||
apps/common/device\in_ear_detect/in_ear_manage.h \
|
||||
cpu/br28/audio_anc_mult_scene.h apps/common/icsd/anc\icsd_anc_app.h \
|
||||
include_lib/media/media_new/media/cpu/br28\asm/dac.h \
|
||||
include_lib/media/media_new/media/cpu/br28/asm/audio_src.h \
|
||||
include_lib\media/audio_stream.h \
|
||||
include_lib/media/media_new\media/audio_base.h \
|
||||
include_lib/media/media_new/media\audio_resample.h \
|
||||
include_lib/media/media_new\media/audio_cfifo.h \
|
||||
apps/common/icsd/anc/icsd_anc.h C:/JL/pi32/pi32v2-include\math.h \
|
||||
apps/common/icsd/anc/icsd_anc_client_board.h \
|
||||
cpu/br28/audio_anc_fade_ctr.h \
|
||||
include_lib/update\update_loader_download.h \
|
||||
include_lib/btctrler\classic/tws_api.h \
|
||||
include_lib/btctrler\classic/tws_event.h \
|
||||
include_lib/btctrler\classic/tws_local_media_sync.h \
|
||||
include_lib/btctrler\classic/tws_data_trans.h
|
||||
|
||||
Binary file not shown.
@ -53,4 +53,36 @@ objs/apps/common/third_party_profile/jieli/JL_rcsp/rcsp_updata/rcsp_user_update.
|
||||
C:/JL/pi32/pi32v2-include\stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\machine/stdlib.h \
|
||||
C:/JL/pi32/pi32v2-include\alloca.h \
|
||||
include_lib/btctrler/classic/hci_lmp.h
|
||||
include_lib/btctrler/classic/hci_lmp.h \
|
||||
include_lib/driver/device\uart.h include_lib/system\device/device.h \
|
||||
include_lib/system\generic/list.h include_lib/system\generic/atomic.h \
|
||||
include_lib/system/generic/cpu.h include_lib/system/generic/irq.h \
|
||||
include_lib/system\device/ioctl_cmds.h \
|
||||
include_lib/system\generic/ioctl.h include_lib\system/task.h \
|
||||
include_lib/system/os/os_api.h include_lib/system\os/os_cpu.h \
|
||||
include_lib/system/generic\jiffies.h include_lib/system\os/os_error.h \
|
||||
include_lib/system\os/os_type.h include_lib/system\os/ucos_ii.h \
|
||||
include_lib/system\os/os_cfg.h include_lib/system\os/os_api.h \
|
||||
include_lib\system/timer.h include_lib/update\update.h \
|
||||
apps/common/third_party_profile/common\custom_cfg.h \
|
||||
include_lib\btstack/avctp_user.h include_lib/btstack/btstack_typedef.h \
|
||||
include_lib/btstack/third_party/rcsp\JL_rcsp_packet.h \
|
||||
include_lib/btstack/third_party/rcsp\JL_rcsp_protocol.h \
|
||||
apps/common/third_party_profile/jieli/JL_rcsp\rcsp_bluetooth.h \
|
||||
apps/common/third_party_profile/jieli\le_common.h \
|
||||
include_lib\btstack/bluetooth.h \
|
||||
include_lib/btstack/le/ble_data_types.h \
|
||||
include_lib/btstack/le/ble_api.h include_lib/btstack/le/le_user.h \
|
||||
include_lib/btstack/le/att.h include_lib/btstack/le/gatt.h \
|
||||
include_lib/btstack/le/sm.h include_lib/btstack/btstack_event.h \
|
||||
include_lib\btstack/le/le_common_define.h \
|
||||
include_lib/btstack/third_party/common\spp_user.h \
|
||||
include_lib\system/event.h include_lib/system/generic/rect.h \
|
||||
apps/common/third_party_profile/jieli/JL_rcsp/rcsp_msg.h \
|
||||
include_lib/btstack/third_party/common\ble_user.h \
|
||||
include_lib/update\update_loader_download.h \
|
||||
include_lib/btstack/third_party/common\btstack_3th_protocol_user.h \
|
||||
include_lib/btstack/third_party/common/spp_config.h \
|
||||
include_lib/btstack/third_party/common/ble_config.h \
|
||||
include_lib/btstack/third_party/rcsp\JL_rcsp_api.h \
|
||||
include_lib/btstack/third_party/rcsp\attr.h
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -160,8 +160,6 @@ objs/apps/earphone/board/br28/board_jl701n_demo.c.o: \
|
||||
include_lib/driver/cpu/br28\asm/lp_touch_key_api.h \
|
||||
include_lib/driver/cpu/br28\asm/lp_touch_key_hw.h \
|
||||
include_lib/system\user_cfg.h cpu/br28\audio_link.h \
|
||||
include_lib/driver/device\usb/otg.h \
|
||||
include_lib/driver/cpu/br28\asm/usb.h \
|
||||
apps/common/include\norflash_sfc.h \
|
||||
include_lib/driver/cpu/br28\asm/spi.h \
|
||||
include_lib/system/device\device_drive.h \
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -138,5 +138,4 @@ objs/apps/earphone/default_event_handler.c.o: \
|
||||
include_lib/driver/cpu/br28\asm/charge.h \
|
||||
apps/earphone/include\app_sd_music.h \
|
||||
include_lib/driver/device\usb/otg.h \
|
||||
include_lib/driver/cpu/br28\asm/usb.h include_lib/update\update.h \
|
||||
apps/earphone/include\app_task.h
|
||||
include_lib/driver/cpu/br28\asm/usb.h include_lib/update\update.h
|
||||
|
||||
Binary file not shown.
@ -164,11 +164,10 @@ objs/apps/earphone/earphone.c.o: apps/earphone/earphone.c \
|
||||
include_lib/btstack/le/att.h include_lib/btstack/le/gatt.h \
|
||||
include_lib/btstack/le/sm.h include_lib/btstack/btstack_event.h \
|
||||
apps/common\colorful_lights/colorful_lights.h \
|
||||
include_lib/driver/cpu/br28\asm/spi.h \
|
||||
apps/earphone/include\app_chargestore.h \
|
||||
apps/common\jl_kws/jl_kws_api.h \
|
||||
include_lib/driver/cpu/br28\asm/spi.h apps/common\jl_kws/jl_kws_api.h \
|
||||
include_lib/driver/cpu/br28\asm/charge.h \
|
||||
apps/earphone/include\app_charge.h apps/earphone/include\ui_manage.h \
|
||||
apps/earphone/include\app_chargestore.h \
|
||||
apps/earphone/include\app_umidigi_chargestore.h \
|
||||
apps/earphone/include\app_testbox.h \
|
||||
apps/earphone/include\app_online_cfg.h \
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -95,68 +95,4 @@ objs/apps/earphone/key_event_deal.c.o: apps/earphone/key_event_deal.c \
|
||||
include_lib/media/media_new/media\application/eq_func_define.h \
|
||||
include_lib/media/media_new/media/cpu/br28\asm/audio_sub_system.h \
|
||||
apps/earphone/include\pbg_user.h \
|
||||
include_lib/system/device\key_driver.h \
|
||||
include_lib/media/media_new/media\application/eq_config.h \
|
||||
include_lib/media/media_new/media\application/audio_eq.h \
|
||||
include_lib/media/media_new/media\application/audio_drc.h \
|
||||
include_lib/media/media_new/media\sw_drc.h \
|
||||
include_lib/media/media_new/media/drc_api.h \
|
||||
include_lib/media/media_new/media\application/audio_vbass.h \
|
||||
include_lib\system/includes.h include_lib/system/init.h \
|
||||
include_lib/system/task.h include_lib/system/wait.h \
|
||||
include_lib/system/app_core.h include_lib/system/app_msg.h \
|
||||
include_lib/system/database.h include_lib/system/fs/fs.h \
|
||||
include_lib\system/sys_time.h include_lib/system/fs/fs_file_name.h \
|
||||
include_lib/system/fs/sdfile.h include_lib/system/power_manage.h \
|
||||
include_lib/system/syscfg_id.h include_lib/system/bank_switch.h \
|
||||
include_lib/system/device/includes.h \
|
||||
include_lib/system/device/device.h \
|
||||
include_lib/system\device/ioctl_cmds.h \
|
||||
include_lib/system/device/iokey.h include_lib/system/device/irkey.h \
|
||||
include_lib/system/device/adkey.h \
|
||||
include_lib/driver/cpu/br28\asm/adc_api.h \
|
||||
include_lib/system/device/slidekey.h \
|
||||
include_lib/system/device/touch_key.h \
|
||||
include_lib/driver/cpu/br28\asm/plcnt.h \
|
||||
include_lib/system/device/rdec_key.h \
|
||||
include_lib/driver/cpu/br28\asm/rdec.h \
|
||||
include_lib/driver/cpu/br28\asm/includes.h \
|
||||
include_lib/driver/cpu/br28\asm/crc16.h \
|
||||
include_lib/driver/cpu/br28\asm/clock.h \
|
||||
include_lib/driver/cpu/br28\asm/clock_hw.h \
|
||||
include_lib/driver/cpu/br28\asm/clock_define.h \
|
||||
include_lib/driver/cpu/br28\asm/uart.h \
|
||||
include_lib/driver\device/uart.h \
|
||||
include_lib/driver/cpu/br28\asm/uart_dev.h \
|
||||
include_lib/driver/cpu/br28\asm/spiflash.h \
|
||||
include_lib/driver\device/spiflash.h \
|
||||
include_lib/driver/cpu/br28\asm/power_interface.h \
|
||||
include_lib/driver/cpu/br28\asm/power/p33.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p33_sfr.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p33_app.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p33_io_app.h \
|
||||
include_lib/driver/cpu/br28/asm/power/rtc_app.h \
|
||||
include_lib/driver/cpu/br28\asm/power/p11.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_csfr.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_sfr.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_io_omap.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_io_imap.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11_app.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p11.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_api.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_port.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_wakeup.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_reset.h \
|
||||
include_lib/driver/cpu/br28\asm/power/power_compat.h \
|
||||
include_lib/driver/cpu/br28\asm/power/lp_ipc.h \
|
||||
include_lib/driver/cpu/br28/asm/power/m2p_msg.h \
|
||||
include_lib/driver/cpu/br28/asm/power/p2m_msg.h \
|
||||
include_lib/driver/cpu/br28\asm/efuse.h \
|
||||
include_lib/driver/cpu/br28\asm/wdt.h \
|
||||
include_lib/driver/cpu/br28\asm/debug.h \
|
||||
include_lib/driver/cpu/br28\asm/timer.h \
|
||||
include_lib/driver/cpu/br28\asm/rtc.h \
|
||||
include_lib/driver\device/sdio_host_init.h \
|
||||
include_lib\media/VirtualBass_api.h \
|
||||
include_lib/media/AudioEffect_DataType.h \
|
||||
C:/JL/pi32/pi32v2-include\math.h include_lib/system\debug.h
|
||||
include_lib/system/device\key_driver.h include_lib/system\debug.h
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -128,7 +128,8 @@ objs/apps/earphone/xtell_Sensor/send_data.c.o: \
|
||||
include_lib/driver/cpu/br28\asm/pwm_led.h \
|
||||
apps/earphone/include\tone_player.h cpu/br28\tone_player_api.h \
|
||||
cpu/br28/audio_config.h apps/common/audio\sine_make.h \
|
||||
apps/earphone/include\ui_manage.h apps/earphone/include\app_main.h \
|
||||
apps/earphone/include\ui_manage.h C:/JL/pi32/pi32v2-include\math.h \
|
||||
apps/earphone/include\app_main.h \
|
||||
include_lib/driver/cpu/br28\asm/charge.h include_lib/update\update.h \
|
||||
apps/earphone/include\app_power_manage.h \
|
||||
apps/earphone/include\app_charge.h \
|
||||
@ -143,7 +144,6 @@ objs/apps/earphone/xtell_Sensor/send_data.c.o: \
|
||||
include_lib\btstack/avctp_user.h include_lib/btstack/btstack_typedef.h \
|
||||
apps/earphone/xtell_Sensor/calculate/skiing_tracker.h \
|
||||
apps/earphone/xtell_Sensor/calculate/../xtell.h \
|
||||
C:/JL/pi32/pi32v2-include\math.h \
|
||||
apps/earphone/xtell_Sensor/./ano/ano_protocol.h \
|
||||
apps/earphone/xtell_Sensor/./sensor/BMP280.h \
|
||||
apps/earphone/xtell_Sensor/./sensor/AK8963.h
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user