#ifndef _APP_CONFIG_H #define _APP_CONFIG_H // <<< Use Configuration Wizard in Context Menu >>> /* ========================================================== */ /* ========= SYSTEM configuration ========= */ /* ========================================================== */ // SYSTEM Configuration // SYSTEM_CLOCK_SEL // used to define system working clock // <24000000=> 24MHz // <48000000=> 48MHz // <96000000=> 96MHz // <144000000=> 144MHz // <192000000=> 192MHz // <240000000=> 240MHz #define SYSTEM_CLOCK_SEL 24000000 // DSP_ROM_CODE_XIP // check to choose DSP rom code running in iROM or XIP-Flash, default: iROM // <0=> NO // <1=> YES #define DSP_ROM_CODE_XIP 0 #define DSP_CODE_LOAD_MODE_SDCARD 1 #define DSP_CODE_LOAD_MODE_XIP_RO 2 #define DSP_CODE_LOAD_MODE_FIX_ADDRESS 3 // DSP_CODE_LOAD_MODE // choose dsp code load mode: 1. from sd card; 2. compiled into XIP bin file; 3. from fixed address in XIP flash // <1=> DSP_CODE_LOAD_MODE_SDCARD // <2=> DSP_CODE_LOAD_MODE_XIP_RO // <3=> DSP_CODE_LOAD_MODE_FIX_ADDRESS #define DSP_CODE_LOAD_MODE 2 // DSP_CODE_FIX_ADDRESS // used to define where to fetch dsp code, this defination is valid when DSP_CODE_LOAD_MODE is DSP_CODE_LOAD_MODE_FIX_ADDRESS #define DSP_CODE_FIX_ADDRESS 0x001C0000 #define CONTROLLER_CODE_LOAD_MODE_SDCARD 1 #define CONTROLLER_CODE_LOAD_MODE_XIP_RO 2 #define CONTROLLER_CODE_LOAD_MODE_FIX_ADDRESS 3 // CONTROLLER_CODE_LOAD_MODE // choose dsp code load mode: 1. from sd card; 2. compiled into XIP bin file; 3. from fixed address in XIP flash // <1=> CONTROLLER_CODE_LOAD_MODE_SDCARD // <2=> CONTROLLER_CODE_LOAD_MODE_XIP_RO // <3=> CONTROLLER_CODE_LOAD_MODE_FIX_ADDRESS #define CONTROLLER_CODE_LOAD_MODE 2 // CONTROLLER_CODE_INC_SENSOR_HUB // when CONTROLLER_CODE_LOAD_MODE is CONTROLLER_CODE_LOAD_MODE_XIP_RO, choose which firmware is commpiled into XIP bin file. // <0=> NO // <1=> YES #define CONTROLLER_CODE_INC_SENSOR_HUB 0 // CONTROLLER_CODE_FIX_ADDRESS // used to define where to fetch controller code, this defination is valid when CONTROLLER_CODE_LOAD_MODE is CONTROLLER_CODE_LOAD_MODE_FIX_ADDRESS #define CONTROLLER_CODE_FIX_ADDRESS 0x001AC000 // /* ========================================================== */ /* ========= FreeRTOS configuration ========= */ /* ========================================================== */ // FreeRTOS Configuration // ENABLE_RTOS_MONITOR // check to enable or disable RTOS monitor, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define ENABLE_RTOS_MONITOR 0 // FREERTOS_MAX_PRIORITY // used to define priority of monitor task // <1-10:1> #define FREERTOS_MAX_PRIORITY 10 // MONITOR_TASK_PRIORITY // used to define priority of monitor task, should not be larger than FREERTOS_MAX_PRIORITY #define MONITOR_TASK_PRIORITY 1 #if MONITOR_TASK_PRIORITY > FREERTOS_MAX_PRIORITY #error "MONITOR_TASK_PRIORITY should not be larger than FREERTOS_MAX_PRIORITY" #endif // APP_TASK_PRIORITY // used to define priority of app task, should not be larger than FREERTOS_MAX_PRIORITY #define APP_TASK_PRIORITY 3 #if APP_TASK_PRIORITY > FREERTOS_MAX_PRIORITY #error "APP_TASK_PRIORITY should not be larger than FREERTOS_MAX_PRIORITY" #endif // HOST_TASK_PRIORITY // used to define priority of host task, should not be larger than FREERTOS_MAX_PRIORITY #define HOST_TASK_PRIORITY 2 #if HOST_TASK_PRIORITY > FREERTOS_MAX_PRIORITY #error "HOST_TASK_PRIORITY should not be larger than FREERTOS_MAX_PRIORITY" #endif // RPMSG_TASK_PRIORITY // used to define priority of rpmsg task, should not be larger than FREERTOS_MAX_PRIORITY #define RPMSG_TASK_PRIORITY 6 #if RPMSG_TASK_PRIORITY > FREERTOS_MAX_PRIORITY #error "RPMSG_TASK_PRIORITY should not be larger than FREERTOS_MAX_PRIORITY" #endif // AUDIO_SCENE_TASK_PRIORITY // used to define priority of rpmsg task, should not be larger than FREERTOS_MAX_PRIORITY #define AUDIO_SCENE_TASK_PRIORITY 6 #if AUDIO_SCENE_TASK_PRIORITY > FREERTOS_MAX_PRIORITY #error "AUDIO_SCENE_TASK_PRIORITY should not be larger than FREERTOS_MAX_PRIORITY" #endif // MONITOR_TASK_STACK_SIZE // used to define priority of monitor task #define MONITOR_TASK_STACK_SIZE 128 // APP_TASK_STACK_SIZE // used to define priority of APP task #define APP_TASK_STACK_SIZE 1024 //256 // HOST_TASK_STACK_SIZE // used to define priority of btdm-host task #define HOST_TASK_STACK_SIZE 2048 // RPMSG_TASK_STACK_SIZE // used to define priority of RPMSG task #define RPMSG_TASK_STACK_SIZE 2048 // AUDIO_SCENE_TASK_STACK_SIZE // used to define priority of audio scene task #define AUDIO_SCENE_TASK_STACK_SIZE 1024 // /* ========================================================== */ /* ========= DSP configuration ========= */ /* ========================================================== */ // DSP Configuration // ENABLE_DSP // check to enable or disable DSP, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define ENABLE_DSP 1 // /* ========================================================== */ /* ========= BTDM configuration ========= */ /* ========================================================== */ // BTDM STACK Configuration // BTDM_STACK_ENABLE // check to enable or disable bluetooth, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE 1 // BTDM_STACK_HCI_BAUDRATE // check to enable or disable bluetooth, default: DISABLE // <1500000=> 1500000 // <921600=> 921600 // <460800=> 460800 // <115200=> 115200 #define BTDM_STACK_HCI_BAUDRATE 1500000 // BTDM_STACK_ENABLE_BT // check to enable or disable classic bluetooth, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_BT 1 // BTDM_STACK_ENABLE_HF // check to enable or disable hand free, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_HF 1 // BTDM_STACK_ENABLE_AG // check to enable or disable audio-gate, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_AG 0 // BTDM_STACK_ENABLE_A2DP_SRC // check to enable or disable a2dp srouce, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_A2DP_SRC 0 // BTDM_STACK_ENABLE_A2DP_SNK // check to enable or disable a2dp sink, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_A2DP_SNK 1 // BTDM_STACK_ENABLE_AVRCP // check to enable or disable avrcp, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_AVRCP 1 // BTDM_STACK_ENABLE_AAC // check to enable or disable aac codec, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_AAC 0 // BTDM_STACK_ENABLE_PBAP // check to enable or disable pbap, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_PBAP 1 // BTDM_STACK_ENABLE_SPP // check to enable or disable spp, default: DISABLE // <0=> DISABLE // <1=> ENABLE #define BTDM_STACK_ENABLE_SPP 0 // /* ========================================================== */ /* ========= BTDM Address configuration ========= */ /* ========================================================== */ // BTDM Address configuration // BT_ADDR_RANDOM_ENABLE // check to enable or disable random bt addr, default: ENABLE // <0=> DISABLE // <1=> ENABLE #define BT_ADDR_RANDOM_ENABLE 1 // BLE_ADDR_RANDOM_ENABLE // check to enable or disable random ble static addr, default: ENABLE // <0=> DISABLE // <1=> ENABLE #define BLE_ADDR_RANDOM_ENABLE 1 // // <<< end of configuration section >>> #endif // _APP_CONFIG_H