85 lines
2.5 KiB
C
85 lines
2.5 KiB
C
/***************************************************************************
|
|
*
|
|
* Copyright 2015-2019 BES.
|
|
* All rights reserved. All unpublished rights reserved.
|
|
*
|
|
* No part of this work may be used or reproduced in any form or by any
|
|
* means, or stored in a database or retrieval system, without prior written
|
|
* permission of BES.
|
|
*
|
|
* Use of this work is governed by a license granted by BES.
|
|
* This work contains confidential and proprietary information of
|
|
* BES. which is protected by copyright, trade secret,
|
|
* trademark and other intellectual property rights.
|
|
*
|
|
****************************************************************************/
|
|
#ifndef __TGT_HARDWARE__
|
|
#define __TGT_HARDWARE__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "hal_iomux.h"
|
|
#include "hal_gpio.h"
|
|
#include "hal_key.h"
|
|
#include "hal_aud.h"
|
|
|
|
//pwl
|
|
#define CFG_HW_PLW_NUM (0)
|
|
extern const struct HAL_IOMUX_PIN_FUNCTION_MAP cfg_hw_pinmux_pwl[CFG_HW_PLW_NUM];
|
|
|
|
//adckey define
|
|
#define CFG_HW_ADCKEY_NUMBER 9
|
|
#define CFG_HW_ADCKEY_BASE 0
|
|
#define CFG_HW_ADCKEY_ADC_MAXVOLT 1000
|
|
#define CFG_HW_ADCKEY_ADC_MINVOLT 0
|
|
#define CFG_HW_ADCKEY_ADC_KEYVOLT_BASE 130
|
|
extern const uint16_t CFG_HW_ADCKEY_MAP_TABLE[CFG_HW_ADCKEY_NUMBER];
|
|
|
|
#define BTA_AV_CO_SBC_MAX_BITPOOL 53
|
|
|
|
//gpiokey define
|
|
#define CFG_HW_GPIOKEY_NUM (0)
|
|
extern const struct HAL_KEY_GPIOKEY_CFG_T cfg_hw_gpio_key_cfg[CFG_HW_GPIOKEY_NUM];
|
|
|
|
// audio codec
|
|
#define CFG_HW_AUD_INPUT_PATH_NUM 3
|
|
extern const struct AUD_IO_PATH_CFG_T cfg_audio_input_path_cfg[CFG_HW_AUD_INPUT_PATH_NUM];
|
|
|
|
#define CFG_HW_AUD_OUTPUT_PATH_SPEAKER_DEV (AUD_CHANNEL_MAP_CH0 | AUD_CHANNEL_MAP_CH1)
|
|
|
|
#define CFG_HW_AUD_SIDETONE_MIC_DEV (AUD_CHANNEL_MAP_CH0)
|
|
#define CFG_HW_AUD_SIDETONE_GAIN_DBVAL (-20)
|
|
|
|
//bt config
|
|
extern const char *BT_LOCAL_NAME;
|
|
extern const char *BLE_DEFAULT_NAME;
|
|
extern uint8_t ble_addr[6];
|
|
extern uint8_t bt_addr[6];
|
|
|
|
#define CODEC_SADC_VOL (7)
|
|
|
|
extern const struct CODEC_DAC_VOL_T codec_dac_vol[TGT_VOLUME_LEVEL_QTY];
|
|
|
|
//range -12~+12
|
|
#define CFG_HW_AUD_EQ_NUM_BANDS (8)
|
|
extern const int8_t cfg_aud_eq_sbc_band_settings[CFG_HW_AUD_EQ_NUM_BANDS];
|
|
#define CFG_AUD_EQ_IIR_NUM_BANDS (4)
|
|
|
|
//battery info
|
|
#define APP_BATTERY_MIN_MV (3200)
|
|
#define APP_BATTERY_PD_MV (3100)
|
|
|
|
#define APP_BATTERY_MAX_MV (4200)
|
|
|
|
extern const struct HAL_IOMUX_PIN_FUNCTION_MAP app_battery_ext_charger_enable_cfg;
|
|
extern const struct HAL_IOMUX_PIN_FUNCTION_MAP app_battery_ext_charger_detecter_cfg;
|
|
extern const struct HAL_IOMUX_PIN_FUNCTION_MAP app_battery_ext_charger_indicator_cfg;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|