📄 stm8_tsl_conf.h
字号:
// Set the pins mask
//
// Note: This key is optional
//
//==============================================================================
#if NUMBER_OF_MULTI_CHANNEL_KEYS > 0
#define MCKEY1_A_PORT_ADDR (GPIOB_BaseAddress) /**< Multi channel key 1: 1st channel port */
#define MCKEY1_A (0x40) /**< Multi channel key 1: 1st channel mask */
#define MCKEY1_B_PORT_ADDR (GPIOB_BaseAddress) /**< Multi channel key 1: 2nd channel port */
#define MCKEY1_B (0x20) /**< Multi channel key 1: 2nd channel mask */
#define MCKEY1_C_PORT_ADDR (GPIOB_BaseAddress) /**< Multi channel key 1: 3rd channel port */
#define MCKEY1_C (0x10) /**< Multi channel key 1: 3rd channel mask */
#define MCKEY1_D_PORT_ADDR (GPIOB_BaseAddress) /**< Multi channel key 1: 4th channel port */
#define MCKEY1_D (0x08) /**< Multi channel key 1: 4th channel mask */
#define MCKEY1_E_PORT_ADDR (GPIOB_BaseAddress) /**< Multi channel key 1: 5th channel port */
#define MCKEY1_E (0x04) /**< Multi channel key 1: 5th channel mask */
#define MCKEY1_F_PORT_ADDR (0) /**< Multi channel key 1: 6th channel port */
#define MCKEY1_F (0) /**< Multi channel key 1: 6th channel mask */
#define MCKEY1_G_PORT_ADDR (0) /**< Multi channel key 1: 7th channel port */
#define MCKEY1_G (0) /**< Multi channel key 1: 7th channel mask */
#define MCKEY1_H_PORT_ADDR (0) /**< Multi channel key 1: 8th channel port */
#define MCKEY1_H (0) /**< Multi channel key 1: 8th channel mask */
#define MCKEY1_TYPE (1) /**< Multi channel key 1 type: 0=wheel (zero between two electrodes), 1=slider (zero in the middle of one electrode) */
#define MCKEY1_LAYOUT_TYPE (1) /**< Multi channel key 1 layout type: 0=interlaced, 1=normal */
#define MCKEY1_DRIVEN_SHIELD_MASK (0x02)
#endif
//==============================================================================
//
// 10) MULTI CHANNEL KEY 2 DEFINITION
//
// Set the port used
// Set the pins mask
//
// Note: This key is optional.
//
//==============================================================================
#if NUMBER_OF_MULTI_CHANNEL_KEYS > 1
#define MCKEY2_A_PORT_ADDR (0) /**< Multi channel key 2: 1st channel port */
#define MCKEY2_A (0) /**< Multi channel key 2: 1st channel mask */
#define MCKEY2_B_PORT_ADDR (0) /**< Multi channel key 2: 2nd channel port */
#define MCKEY2_B (0) /**< Multi channel key 2: 2nd channel mask */
#define MCKEY2_C_PORT_ADDR (0) /**< Multi channel key 2: 3rd channel port */
#define MCKEY2_C (0) /**< Multi channel key 2: 3rd channel mask */
#define MCKEY2_D_PORT_ADDR (0) /**< Multi channel key 2: 4th channel port */
#define MCKEY2_D (0) /**< Multi channel key 2: 4th channel mask */
#define MCKEY2_E_PORT_ADDR (0) /**< Multi channel key 2: 5th channel port */
#define MCKEY2_E (0) /**< Multi channel key 2: 5th channel mask */
#define MCKEY2_F_PORT_ADDR (0) /**< Multi channel key 2: 6th channel port */
#define MCKEY2_F (0) /**< Multi channel key 2: 6th channel mask */
#define MCKEY2_G_PORT_ADDR (0) /**< Multi channel key 2: 7th channel port */
#define MCKEY2_G (0) /**< Multi channel key 2: 7th channel mask */
#define MCKEY2_H_PORT_ADDR (0) /**< Multi channel key 2: 8th channel port */
#define MCKEY2_H (0) /**< Multi channel key 2: 8th channel mask */
#define MCKEY2_TYPE (0) /**< Multi channel key 2 type: 0=wheel (zero between two electrodes), 1=slider (zero in the middle of one electrode) */
#define MCKEY2_LAYOUT_TYPE (0) /**< Multi channel key 2 layout type: 0=interlaced, 1=normal */
#define MCKEY2_DRIVEN_SHIELD_MASK (0x00)
#endif
//==============================================================================
//
// 11) ELECTRODES MASKS USED ON EACH GPIO
//
// Define the electrodes mask for each GPIO used (SCKeys + MCKeys but not LOADREF)
//
//==============================================================================
#define GPIOA_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOA */
#define GPIOB_ELECTRODES_MASK (0xFF) /**< Electrodes mask for GPIOB */
#define GPIOC_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOC */
#define GPIOD_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOD */
#define GPIOE_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOE */
#define GPIOF_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOF */
#define GPIOG_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOG */
#define GPIOH_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOH */
#define GPIOI_ELECTRODES_MASK (0x00) /**< Electrodes mask for GPIOI */
//============================================================================
//
// 12) TSL PARAMETERS CONFIGURATION
//
//============================================================================
/** @addtogroup TSL_parameters_RC
* @{ */
// IO acquisition
#define SCKEY_ACQ_NUM (3) /**< Single channel key acquisition number - N (value from 1 to 255) */
#define SCKEY_ADJUST_LEVEL (1) /**< Single channel key adjustment level (value from 0 to 255) */
#define MCKEY_ACQ_NUM (6) /**< Multi channel key acquisition number - N (value from 1 to 255) */
#define MCKEY_ADJUST_LEVEL (1) /**< Multi channel key adjustment level (value from 0 to 255) */
// IO acquisition number of rejected values and measure guardbands
#define MAX_REJECTED_MEASUREMENTS (0) /**< Max number of rejected measurements allowed (value from 0 to 255) */
#define MAX_MEAS_COEFF (0x0fff) /**< Max measure guardband (MSB=integer part, LSB=decimal part) */
#define MIN_MEAS_COEFF (0x00E6) /**< Min measure guardband (MSB=integer part, LSB=decimal part) */
// Thresholds
#define SCKEY_DETECTTHRESHOLD_DEFAULT (40) /**< Single channel key detection threshold (value from 1 to 127) */
#define SCKEY_ENDDETECTTHRESHOLD_DEFAULT (30) /**< Single channel key end detection threshold (value from 1 to 127) */
#define SCKEY_RECALIBRATIONTHRESHOLD_DEFAULT (-128) /**< Single channel key calibration threshold (value from -1 to -128) */
#define MCKEY_DETECTTHRESHOLD_DEFAULT (22) /**< Multi channel key detection threshold (value from 1 to 127) */
#define MCKEY_ENDDETECTTHRESHOLD_DEFAULT (35) /**< Multi channel key end detection threshold (value from 1 to 127) */
#define MCKEY_RECALIBRATIONTHRESHOLD_DEFAULT (-128) /**< Multi channel key calibration threshold (value from -1 to -128) */
// MCKey resolution
#define MCKEY_RESOLUTION_DEFAULT (4) /**< Multi channel key resolution (value from 1 to 8) */
// MCKey Direction Change process
#define MCKEY_DIRECTION_CHANGE_ENABLED (1) /**< Multi channel key direction change enable (1) or disable (0) switch */
#define MCKEY_DIRECTION_CHANGE_MAX_DISPLACEMENT (255) /**< Multi channel key direction change maximum displacement (value from 0 to 255) */
#define MCKEY_DIRECTION_CHANGE_INTEGRATOR_DEFAULT (1) /**< Multi channel key direction change integrator (value from 1 to 255) */
#define MCKEY_DIRECTION_CHANGE_THRESHOLD_DEFAULT (10) /**< Multi channel key direction change threshold (value from 1 to 255) */
// Integrators
#define DETECTION_INTEGRATOR_DEFAULT (2) /**< Detection Integrator = Debounce Filter (value from 0 to 255) */
#define END_DETECTION_INTEGRATOR_DEFAULT (2) /**< End detection Integrator = Debounce Filter (from 0 to 255) */
#define RECALIBRATION_INTEGRATOR_DEFAULT (10) /**< Calibration integrator (value from 1 to 255) */
// IIR Filter
#define ECS_TIME_STEP_DEFAULT (20) /**< Sampling frequency, multiple of 10ms */
#define ECS_TEMPO_DEFAULT (20) /**< Delay after detection, multiple of 100ms */
#define ECS_IIR_KFAST_DEFAULT (20) /**< K factor for fast filtering */
#define ECS_IIR_KSLOW_DEFAULT (10) /**< K factor for slow filtering */
// Detection Timeout
#define DTO_DEFAULT (0) /**< 1s unit (value from 0 (= infinite!) to 255) */
// Automatic Calibration
#define NEGDETECT_AUTOCAL (1) /**< 0 (Enable negative threshold for noise), 1 (Enable autocalibration) */
// Acquisition values limits
#define SCKEY_MIN_ACQUISITION (1) /**< Single channel key minimum acquisition value */
#define SCKEY_MAX_ACQUISITION (6000) /**< Single channel key maximum acquisition value */
#define MCKEY_MIN_ACQUISITION (150) /**< Multi channel key minimum acquisition value */
#define MCKEY_MAX_ACQUISITION (5000) /**< Multi channel key maximum acquisition value */
// Optional parameters for Delta Normalization Process (for Multi channel keys only).
// The MSB is the integer part, the LSB is the real part:
// For example to apply a factor 1.10:
// 0x01 to the MSB
// 0x1A to the LSB (0.1 x 256 = 25.6 -> 26 = 0x1A)
// Final value to define is: 0x011A
#define MCKEY1_DELTA_COEFF_A (0x0100) /**< MCKey1 Channel A parameter */
#define MCKEY1_DELTA_COEFF_B (0x0100) /**< MCKey1 Channel B parameter */
#define MCKEY1_DELTA_COEFF_C (0x0100) /**< MCKey1 Channel C parameter */
#define MCKEY1_DELTA_COEFF_D (0x0100) /**< MCKey1 Channel D parameter */
#define MCKEY1_DELTA_COEFF_E (0x0100) /**< MCKey1 Channel E parameter */
#define MCKEY1_DELTA_COEFF_F (0x0100) /**< MCKey1 Channel F parameter */
#define MCKEY1_DELTA_COEFF_G (0x0100) /**< MCKey1 Channel G parameter */
#define MCKEY1_DELTA_COEFF_H (0x0100) /**< MCKey1 Channel H parameter */
#define MCKEY2_DELTA_COEFF_A (0x0100) /**< MCKey2 Channel A parameter */
#define MCKEY2_DELTA_COEFF_B (0x0100) /**< MCKey2 Channel B parameter */
#define MCKEY2_DELTA_COEFF_C (0x0100) /**< MCKey2 Channel C parameter */
#define MCKEY2_DELTA_COEFF_D (0x0100) /**< MCKey2 Channel D parameter */
#define MCKEY2_DELTA_COEFF_E (0x0100) /**< MCKey2 Channel E parameter */
#define MCKEY2_DELTA_COEFF_F (0x0100) /**< MCKey2 Channel F parameter */
#define MCKEY2_DELTA_COEFF_G (0x0100) /**< MCKey2 Channel G parameter */
#define MCKEY2_DELTA_COEFF_H (0x0100) /**< MCKey2 Channel H parameter */
// Interrupt synchronisation
#define IT_SYNC (1) /**< Interrupt synchronisation. (=1) Allow to synchronize the aquisition with a flag set in an interrupt routine */
// Spread spectrum
#define SPREAD_SPECTRUM (0) /**< Spread spectrum. (=1) Add a variable delay between acquisitions */
#define SPREAD_COUNTER_MIN (0) /**< Spread min value */
#define SPREAD_COUNTER_MAX (20) /**< Spread max value */
// RTOS Management of the acquisition (instead of the timebase interrupt sub-routine
#define RTOS_MANAGEMENT (0) /**< The Timebase routine is launched by the application instead to be managed through a timebase interrupt routine */
// Timer Callback to allow the user to add its own function called from the timer interrupt sub-routine
#define TIMER_CALLBACK (0) /**< if (1) Allows the use of a callback function in the timer interrupt. This function will be called every 0.5ms. The callback function must be defined inside the application and have the following prototype FAR void USER_TickTimerCallback(void); */
//Inline functions
#define USE_INLINED_FUNCTIONS (0) /**< Inline functions are enabled (=1) */
/** @} */
//==============================================================================
//
// DEFINITIONS CHECK. DO NOT TOUCH ANYTHING BELOW !!!
//
//==============================================================================
#include "stm8_tsl_checkconfig.h"
#endif /* __TSL_CONF_H */
/******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -