2023-07-15 20:56:04 +08:00
|
|
|
class touchblock
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
uint8_t mprid;
|
|
|
|
uint8_t portid;
|
|
|
|
int8_t thresOffset;
|
|
|
|
};
|
|
|
|
|
|
|
|
const uint8_t MPR_PADNUMS[] = {8, 9, 9, 8};
|
|
|
|
const uint8_t THREASHOLD = 35;
|
|
|
|
|
|
|
|
touchblock touchmap[34] = {
|
|
|
|
// Group A
|
|
|
|
{3, 4, 0}, // 1
|
|
|
|
{3, 0, 0}, // 2
|
|
|
|
{2, 4, 0}, // 3
|
|
|
|
{2, 0, 0}, // 4
|
|
|
|
{1, 5, 0}, // 5
|
|
|
|
{1, 0, 0}, // 6
|
|
|
|
{0, 4, 0}, // 7
|
|
|
|
{0, 0, 0}, // 8
|
|
|
|
// Group B
|
|
|
|
{3, 5, 0}, // 1
|
|
|
|
{3, 1, 0}, // 2
|
|
|
|
{2, 5, 0}, // 3
|
|
|
|
{2, 1, 0}, // 4
|
|
|
|
{1, 6, 0}, // 5
|
|
|
|
{1, 1, 0}, // 6
|
|
|
|
{0, 5, 0}, // 7
|
|
|
|
{0, 1, 0}, // 8
|
|
|
|
// Group C
|
|
|
|
{2, 8, 0}, // 1
|
|
|
|
{1, 2, 0}, // 2
|
|
|
|
// Group D
|
|
|
|
{3, 6, 0}, // 1
|
|
|
|
{3, 2, 0}, // 2
|
|
|
|
{2, 6, 0}, // 3
|
|
|
|
{2, 2, 0}, // 4
|
|
|
|
{1, 7, 0}, // 5
|
|
|
|
{1, 3, 0}, // 6
|
|
|
|
{0, 6, 0}, // 7
|
|
|
|
{0, 2, 0}, // 8
|
|
|
|
// Group E
|
|
|
|
{3, 7, 0}, // 1
|
|
|
|
{3, 3, 0}, // 2
|
|
|
|
{2, 7, 0}, // 3
|
|
|
|
{2, 3, 0}, // 4
|
|
|
|
{1, 8, 0}, // 5
|
|
|
|
{1, 4, 0}, // 6
|
|
|
|
{0, 7, 0}, // 7
|
|
|
|
{0, 3, 0}, // 8
|
|
|
|
};
|
|
|
|
|
|
|
|
// the release threashold will be set to THREASHOLD - RELEASE_THREASHOLD_OFFSET
|
|
|
|
const uint8_t RELEASE_THREASHOLD_OFFSET = 0;
|
|
|
|
|
|
|
|
// AN3944 recommended values are:
|
|
|
|
// MHDR = 1
|
|
|
|
// NHDR = 1
|
|
|
|
// NCLR = 0
|
|
|
|
// FDLR = 0
|
|
|
|
// MHDF = 1
|
|
|
|
// NHDF = 1
|
|
|
|
// NCLF = 255
|
|
|
|
// FDLF = 2
|
|
|
|
// dk values are:
|
|
|
|
// MHDR = 1
|
|
|
|
// NHDR = 16
|
|
|
|
// NCLR = 4
|
|
|
|
// FDLR = 0
|
|
|
|
// MHDF = 4
|
|
|
|
// NHDF = 1
|
|
|
|
// NCLF = 16
|
|
|
|
// FDLF = 4
|
|
|
|
const uint8_t MHDR = 2;
|
|
|
|
const uint8_t NHDR = 2;
|
|
|
|
const uint8_t NCLR = 4;
|
|
|
|
const uint8_t FDLR = 0;
|
|
|
|
const uint8_t MHDF = 2;
|
2023-07-15 22:06:27 +08:00
|
|
|
const uint8_t NHDF = 1;
|
|
|
|
const uint8_t NCLF = 32;
|
2023-07-15 20:56:04 +08:00
|
|
|
const uint8_t FDLF = 4;
|
|
|
|
|
|
|
|
// range: 0 - 3
|
|
|
|
// 0: 6 samples
|
|
|
|
// 1: 10 samples
|
|
|
|
// 2: 18 samples
|
|
|
|
// 3: 34 samples
|
|
|
|
// aka. first filter averaging samples
|
|
|
|
// the highest and lowest are tossed
|
|
|
|
// so theoretically, the less samples, the system is less prone to noise
|
|
|
|
const uint8_t FIRST_FILTER_ITERATIONS = 0;
|
|
|
|
|
|
|
|
// range: 0 - 7
|
|
|
|
// actual value is 2^(CDT-1) us
|
|
|
|
// will be overriden by autoconfig, unless SCTS is set to 1
|
|
|
|
const uint8_t CHARGE_DISCHARGE_TIME = 1;
|
|
|
|
|
|
|
|
// range: 0 - 3
|
|
|
|
// 0: 4 samples
|
|
|
|
// 1: 6 samples
|
|
|
|
// 2: 10 samples
|
|
|
|
// 3: 18 samples
|
|
|
|
// aka. second filter averaging samples
|
|
|
|
const uint8_t SECOND_FILTER_ITERATIONS = 0;
|
|
|
|
|
|
|
|
// range: 0 - 7
|
|
|
|
// 2^ESI ms of first stage samples are taken into account
|
|
|
|
// all the first stage samples in the period is averaged
|
|
|
|
const uint8_t ELECTRODE_SAMPLE_INTERVAL = 0;
|
|
|
|
|
|
|
|
// range: 0 - 7
|
|
|
|
// when DR + 1 samples are lower than the threshold, the electrode is released
|
|
|
|
const uint8_t RELEASE_DEBOUNCE = 1;
|
|
|
|
|
|
|
|
// range: 0 - 7
|
|
|
|
// when DT + 1 samples are higher than the threshold, the electrode is touched
|
|
|
|
// a debounce value that's too low might cause touches that's too short to be missed
|
|
|
|
const uint8_t TOUCH_DEBOUNCE = 1;
|
|
|
|
// ! the touch response time is debounce * SFI * ESI ms
|
|
|
|
// ! so in the code bellow we set read interval to SFI * ESI ms
|
|
|
|
|
|
|
|
// please refer to AN3889 page 9 for more information
|
|
|
|
const uint8_t AUTO_CONFIG_RETRY = 0;
|
|
|
|
const uint8_t AUTO_CONFIG_BVA = 2;
|
|
|
|
const uint8_t AUTO_CONFIG_ARE = 1;
|
|
|
|
const uint8_t AUTO_CONFIG_ACE = 1;
|
|
|
|
|
|
|
|
// @datasheet page 15 and 18
|
|
|
|
// setting this to 1 disables CDT search
|
|
|
|
// which means it will use a fixed CDT and only search for CDC
|
|
|
|
// this results in a known first stage sample amount
|
|
|
|
// however, through testing, setting this to 1 will greatly degrade signal quality
|
|
|
|
const uint8_t SCTS = 0;
|
|
|
|
|
|
|
|
// those values are suitable for 3.3V, for other voltage systems, please refer to AN3889 page 7 through 8
|
|
|
|
const uint8_t USL = 202;
|
|
|
|
const uint8_t TL = 182;
|
|
|
|
const uint8_t LSL = 131;
|
|
|
|
|
|
|
|
// please refer to page 16 of the datasheet for more information
|
|
|
|
const uint8_t CALIBRATION_LOCK = 0x10;
|