Search Results

    loading table of contents...

    The Atmel QTouch library provides support for many devices. This chapter explains the touch library for such devices without any hardware support.

    This section lists the type definitions used in the library.

    Typedef

    Notes

    uint8_t

    unsigned 8-bit integer

    int8_t

    signed 8-bit integer

    uint16_t

    unsigned 16-bit integer

    int16_t

    signed 16-bit integer

    uint32_t

    unsigned 32-bit integer

    threshold_t

    unsigned 8-bit integer used for setting a sensor detection threshold

    This section lists the enumerations used in the QTouch Library.

    Enumeration

    sensor_type_t

    Use

    Define the type of the sensor

    Values

    Comment

    SENSOR_TYPE_UNASSIGNED

    Channel is not assigned to any sensor

    SENSOR_TYPE_KEY

    Sensor is of type KEY

    SENSOR_TYPE_ROTOR

    Sensor is of type ROTOR

    SENSOR_TYPE_SLIDER

    Sensor is of type SLIDER

    Enumeration

    aks_group_t

    Use

    Defines the Adjacent Key Suppression (AKS) groups each sensor may be associated with ( see section 5.3.4 Maximum ON Duration)

    AKS is selectable by the system designer

    7 AKS groups are supported by the library

    Values

    Comment

    NO_AKS_GROUP

    NO AKS group selected for the sensor

    AKS_GROUP_1

    AKS Group number 1

    AKS_GROUP_2

    AKS Group number 2

    AKS_GROUP_3

    AKS Group number 3

    AKS_GROUP_4

    AKS Group number 4

    AKS_GROUP_5

    AKS Group number 5

    AKS_GROUP_6

    AKS Group number 6

    AKS_GROUP_7

    AKS Group number 7

    Enumeration

    channel_t

    Use

    The channel numbers used in the library.

    When using the QTouch acquisition method, the channel numbers have a one to one mapping to the pin numbers of the port being used.

    When using the QMatrix acquisition method, the channel numbers are ordered in a matrix sequence

    Values

    Comment

    CHANNEL_0

    Channel number : 0

    CHANNEL_1

    Channel number : 1

    CHANNEL_2

    Channel number : 2

    CHANNEL_3

    Channel number : 3

    .....

    Channel number: ..

    Upto CHANNEL ( N-1 )

    Channel number N-1 : for an N Channel library

    The maximum number of channels supported is dependent on the library variant. Possible values of N are as listed below

    Acquisition method

    Device type

    Possible values of N

    ( Maximum number of channels )

    QTouch acquisition

    8-bit

    4,8,16

    32-bit

    8, 16, 32

     

    QMatrix Acquisition

    8-bit

    8,16,32,64

    Enumeration

    Hysteresis_t

    Use

    Defines the sensor detection hysteresis value. This is expressed as a percentage of the sensor detection threshold.

    This is configurable per sensor.

    HYST_x = hysteresis value is x percent of detection threshold value (rounded down).

    Note that a minimum value of 2 is used as a hard limit. Example: if detection threshold = 20, then:

    HYST_50 = 10 (50 percent of 20)

    HYST_25 = 5 (25 percent of 20)

    HYST_12_5 = 2 (12.5 percent of 20)

    HYST_6_25 = 2 (6.25 percent of 20 = 1, but set to the hard limit of 2)

    Values

    Comment

    HYST_50

    50% Hysteresis

    HYST_25

    25% Hysteresis

    HYST_12_5

    12.5% Hysteresis

    HYST_6_25

    6.25% Hysteresis

    Enumeration

    resolution_t

    Use

    For rotors and sliders, the resolution of the reported angle or position.

    RES_x_BIT = rotor/slider reports x-bit values.

    Example: if slider resolution is RES_7_BIT, then reported positions are in the range 0…127.

    Values

    Comment

    RES_1_BIT

    1 bit resolution : reported positions range 0 – 1

    RES_2_BIT

    2 bit resolution : reported positions range 0 – 3

    RES_3_BIT

    3 bit resolution : reported positions range 0 – 7

    RES_4_BIT

    4 bit resolution : reported positions range 0 – 15

    RES_5_BIT

    5 bit resolution : reported positions range 0 – 31

    RES_6_BIT

    6 bit resolution : reported positions range 0 – 63

    RES_7_BIT

    7 bit resolution : reported positions range 0 – 127

    RES_8_BIT

    8 bit resolution : reported positions range 0 – 255

    Enumeration

    recal_threshold_t

    Use

    A sensor recalibration threshold. This is expressed as a percentage of the sensor detection threshold.

    This is for automatic recovery from false conditions, such as a calibration while sensors were touched, or a significant step change in power supply voltage.

    If the false condition persists the library will recalibrate according to the settings of the recalibration threshold.

    This setting is applicable to all the configured sensors.

    Usage :

    RECAL_x = recalibration threshold is x percent of detection threshold value (rounded down).

    Note: a minimum value of 4 is used.

    Example: if detection threshold = 40, then:

    RECAL_100  = 40 ( 100 percent of 40)

    RECAL_50      = 20 ( 50 percent of 40)

    RECAL_25      = 10 ( 25 percent of 40)

    RECAL_12_5  = 5  ( 12.5 percent of 40)

    RECAL_6_25  = 4  ( 6.25 percent of 40 = 2, but value is limited to 4)

    Values

    Comment

    RECAL_100

    100% recalibration threshold

    RECAL_50

    50% recalibration threshold

    RECAL_25

    25% recalibration threshold

    RECAL_12_5

    12.5% recalibration threshold

    RECAL_6_25

    6.25% recalibration threshold

    This section lists the data structures that hold sensor status, settings, and diagnostics information

    Structure

    qt_touch_status_t

    Input / Output

    Output from the Library

    Use

    Holds the status ( On/ Off ) of the sensors and the linear and angular positions of sliders and rotors respectively

    Fields

    Comment

    sensor_states[]

    For Sensor, the sensor_states. Bit “n” = state of nth sensor :

    Bit Value  0 - indicates the sensor is not in detect

    Bit Value 1  - indicates the sensor is in detect

    rotor_slider_values[]

    Rotors angles or slider positions if rotors and sliders are used. These values are valid when sensor states shows that the corresponding rotor or slider is in detect

    The macro that can get the sensor state when the sensor number is provided can be something as below:

    #define GET_SENSOR_STATE(SENSOR_NUMBER) qt_measure_data.qt_touch_status.sensor_states[(SENSOR_NUMBER/8)] & (1 <<(SENSOR_NUMBER % 8))

    The host application can use this macro to act accordingly, the following example shows how to toggle a IO pin (PD2) based on the sensor0 state.( Set PD2 if sensor0 is in detect, and clear PD2 if sensor0 is not in detect)

    DDRD |= (1u << PORTD2);
    if (GET_SENSOR_STATE(0) !=0)
    {        
        PORTD |= (1u << PORTD2); /* Set PORTD2 */
    }
    else
    {
        PORTD &= ~(1u << PORTD2); /* Clear PORTD2 */
    

    Structure

    qt_touch_lib_config_data_t

    Input / Output

    Input to the library

    Use

    Global Configuration data settings for the library.

    Fields

    Type

    Comment

    qt_recal_threshold

    recal_threshold_t

    Sensor recalibration threshold. Default: RECAL_50 (recalibration threshold = 50 percent of detection threshold. Refer to section 5.3.1 Recalibration Threshold more details

    qt_di

    uint8_t

    Sensor detect integration (DI) limit. Default value: 4. Refer to section 5.3.2 Detect Integration for more details

    qt_drift_hold_time

    uint8_t

    Sensor drift hold time in units of 200 ms. Default value: 20 (20 x 200 ms = 4s), that is hold off drifting for 4 seconds after leaving detect. Refer to section 5.3.3 Drift Hold Time for more details

    qt_max_on_duration

    uint8_t

    Sensor maximum on duration in units of 200 ms. For example: 150 = recalibrate after 30s (150 x 200 ms). 0 = recalibration disabled Default value: 0 (recalibration disabled). Refer to section 5.3.4 Maximum ON Duration for more details.

    qt_neg_drift_rate

    uint8_t

    Sensor negative drift rate in units of 200 ms. Default value: 20 (20 x 200 ms = 4s per LSB). Refer to section 5.3.5 Positive / Negative Drift for more details

    qt_pos_drift_rate

    uint8_t

    Sensor positive drift rate in units of 200 ms. Default value: 5 (5 x 200 ms = 1s per LSB). Refer to section 5.3.5 Positive / Negative Drift for more details

    qt_pos_recal_delay

    uint8_t

    Sensor positive recalibration delay. Default: 3. Refer to section 5.3.6 for more details.

    The measurement limit for touch sensing using QTouch acquisition method is hard coded as 8192.

    The QTouch library exports a variable of this type so that the user can specify the threshold parameters for the library. The API qt_set_parameters() should be called to apply the parameters specified.

    extern  qt_touch_lib_config_data_t qt_config_data;

    Structure

    qt_touch_lib_measure_data_t

    Input / Output

    Output from the library

    Use

    Data structure which holds the sensor and channel states and values.

    Fields

    Type

    Comment

    channel_signals

    uint16_t

    The measured signal on each channel.

    channel_references

    uint16_t

    The reference signal for each channel.

    qt_touch_status

    qt_touch_status_t

    The state and position of the configured sensors

    The QTouch library exports a variable of this type which can be accessed to retrieve the touch status of all the sensors.

    extern qt_touch_lib_measure_data_t  qt_measure_data;

    Structure

    qt_burst_lengths

    Input / Output

    Input to the library

    Use

    NOTE: Applicable only to the QMatrix acquisition method libraries

    This data structure is used to specify the burst lengths for each of the QMatrix channels

    Fields

    Type

    Comment

    qt_burst_lengths[]

    uint8_t

    The burst length for each of the QMatrix channel in units of pulses. Default value: 64 pulses.

    These values can be configured for each channel individually.

    The signal gain for each sensor is controlled by circuit parameters as well as the burst length. The burst length is simply the number of times the charge-transfer (‘QT’) process is performed on a given sensor. Each QT process is simply the pulsing of an X line once, with a corresponding Y line enabled to capture the resulting charge passed through the sensor’s capacitance Cx.

    The QMatrix acquisition method library exports a variable of this type which can be accessed to set the burst length for each of the QMatrix channels

    extern uint8_t qt_burst_lengths[QT_NUM_CHANNELS];

    Structure

    tag_sensor_t

    Input / Output

    Output from the library

    Use

    Data structure which holds the internal sensor state variables used by the library.

    Fields

    Type

    Comment

    State

    uint8_t

    internal sensor state

    general_counter

    uint8_t

    general purpose counter: used for calibration, drifting, etc

    ndil_counter

    uint8_t

    drift Integration counter

    Threshold

    uint8_t

    sensor detection threshold. Refer to section 5.4.1 Detect threshold for more details

    type_aks_pos_hyst

    uint8_t

    holds information for sensor type, AKS group, positive recalibration flag, and hysteresis value

    Bit fields

    Use

    B1 : B0

    Hysteresis. Refer to section 5.4.2 Hysteresis for more details

    B2

    positive recalibration flag

    B5:B3

    AKS group. Refer to section 5.4.5 for more details

    B7:B6

    sensor type

      

    from_channel

    uint8_t

    starting channel number for sensor

    to_channel

    uint8_t

    ending channel number for sensor

    Index

    uint8_t

    index for array of rotor/slider values

    Structure

    qt_lib_siginfo_t

    Input / Output

    Output from the library

    Use

    Data structure which holds the information about the library variant and its version information.

    qt_lib_siginfo_t structure definition for a QTouch acquisition method library variant is shown below.

    Fields

    Type

    Comment

    library_version

    uint16_t

    Holds the library version information.

    Bit fields

    Use

    B3 : B0

    Patch version of the library

    B7 : B4

    Minor version of the library

    B15:B8

    Major version of the library

      

    lib_sig_lword

    uint16_t

    Holds the general information about the library       

    Bit fields

    Use

    B1 : B0

    Library Type :

    00 : QTouch acquisition method

    01 : QMatrix acquisition method

    B2

    Compiler tool chain used

    0 – GCC

    1 – IAR

    B9 : B3

    Maximum number of channels supported by the library

    B10

    0 – Library supports only keys

    1 – Library supports keys and rotors

    B15 : B11

    Maximum number of rotors and sliders supported by the library

      

    lib_sig_hword

    uint16_t

    Reserved

    qt_lib_siginfo_t structure definition for a QMatrix acquisition method library variant is shown below.

    Fields

    Type

    Comment

    library_version

    uint16_t

    Holds the library version information.

    Bit fields

    Use

    B3 : B0

    Patch version of the library

    B7 : B4

    Minor version of the library

    B15:B8

    Major version of the library

      

    lib_sig_lword

    uint16_t

    Holds the general information about the library

    Bit fields

    Use

    B1 : B0

    Library Type :

    00 : QTouch acquisition method

    01 : QMatrix acquisition method

    B2

    Compiler tool chain used

    0 – GCC

    1 – IAR

    B9 : B3

    Maximum number of channels supported by the library

    B10

    0 – Library supports only keys

    1 – Library supports keys and rotors

    B15 : B11

    Maximum number of rotors and sliders supported by the library

      

    lib_sig_hword

    uint16_t

    Holds information about the X and Y lines for a QMatrix library variant

    Bit fields

    Use

    B4 : B0

    Number of X Lines

    B8 : B5

    Number of Y Lines

    B9

    0

      

    This section lists the public functions available in the QTouch libraries and its usage.

    This function is used to initialize the global configuration settings in the variable qt_config_data of the QTouch and QMatrix acquisition method libraries.

    void qt_set_parameters ( void )

    Arguments

    Type

    Comment

    Void

    -

    This function will initialize the parameters required by the library to default values .But the default values can be changed by the user by modifying the global threshold values as defined in qt_touch_lib_config_data_t . See section 5.6.4.1 for details.

    NOTE:

    This function is used to configure a channel as a key.

    void qt_enable_key (
        channel_t channel,
        aks_group_t aks_group,
        threshold_t detect_threshold,
        hysteresis_t detect_hysteresis
        )
                

    Arguments

    Type

    Comment

    Channel

    channel_t

    Specifies the channel number to be configured for use as a “key”

    aks_group

    aks_group

    Specifies the aks group associated with the sensor being configured as “key”

    detect_threshold

    threshold_t

    Specifies the detect threshold for the sensor

    detect_hysteresis

    hysteresis_t

    Specifies the detection hysteresis for the sensor

    This function is used to configure a set of channels as a rotor.

    void qt_enable_rotor (

                    channel_t                from_channel ,

                    channel_t                to_channel ,

                    aks_group_t                aks_group ,

                    threshold_t                detect_threshold ,

                    hysterisis_t        detect_hysterisis ,

                    resoulution_t        angle_resolution ,

                    uint8_t                angle_hysterisis

                    )

    Arguments

    Type

    Comment

    from_channel

    Channel_t

    Specifies the starting channel number to be configured for use as a “Rotor”

    to_channel

    Channel_t

    Specifies the end channel number to be configured for use as a “Rotor”

    aks_group

    aks_group

    Specifies the aks group associated with the sensor being configured as “ROTOR”

    detect_threshold

    threshold_t

    Specifies the detect threshold for the sensor

    detect_hysterisis

    hysterisis_t

    Specifies the detection hysteresis for the sensor

    angle_resolution

    resolution_t

    Specifies the resolution of the reported angle value

    angle_hysterisis

    uint8_t

    Specifies the hysteresis of the reported angle value

    NOTE:

    This function is used to configure a set of channels as a rotor.

    void qt_enable_slider (

                    channel_t                from_channel ,

                    channel_t                to_channel ,

                    aks_group_t                aks_group ,

                    threshold_t                detect_threshold ,

                    hysterisis_t        detect_hysterisis ,

                    resolution_t        position_resolution ,

                    uint8_t                position_hysteresis

                    )

    Arguments

    Type

    Comment

    from_channel

    Channel_t

    Specifies the starting channel number to be configured for use as a “Slider”

    to_channel

    Channel_t

    Specifies the end channel number to be configured for use as a “Slider”

    aks_group

    aks_group

    Specifies the aks group associated with the sensor being configured as “Slider”

    detect_threshold

    threshold_t

    Specifies the detect threshold for the sensor

    detect_hysterisis

    hysterisis_t

    Specifies the detection hysteresis for the sensor

    position_resolution

    resolution_t

    Specifies the resolution of the reported position value

    position_hysterisis

    uint8_t

    Specifies the hysteresis of the reported position value

    NOTE:

    This function performs a capacitive measurement on all enabled sensors. The measured signals for each sensor are then processed to check for user touches, releases, changes in rotor angle and changes in slider position. The function returns the status of the Library as a combination of bit fields in an uint16_t value.

     

    unit16_t qt_measure_sensors( uint16_t current_time_ms  )

    Arguments

    Type

    Comment

    current_time_ms

    uint16

    The current time in milliseconds

    Return value(s)

    Bit definition

    Comments

    QTLIB_NO_ACTIVITY

    0x0000

    No activity detected on any of the sensors

    QTLIB_IN_DETECT

    0x0001

    At least one sensor is in detect

    QTLIB_STATUS_CHANGE

    0x0002

    At least one sensor has changed ON/OFF state since the last call to qt_measure_sensor()

    QTLIB_ROTOR_SLIDER_POS_CHANGE

    0x0004

    At least one rotor/slider has changed position since the last call to qt_measure_sensors()

    QTLIB_CHANNEL_REF_CHANGE

    0x0008

    At least one reference value has changed since last call to qt_measure_sensors()

    QTLIB_BURST_AGAIN

    0x0100

    Flag to indicate Multiple measurements needed.

    QTLIB_RESOLVE_CAL

    0x0200

    Multiple measurements needed to resolve calibration. Call qt_measure_sensors( ) once again.

    QTLIB_RESOLVE_FILTERIN

    0x0400

    Multiple measurements needed to resolve filtering. Call qt_measure_sensors( ) once again.

    QTLIB_RESOLVE_DI

    0x0800

    Multiple measurements needed to resolve detect integration. Call qt_measure_sensors( ) once again.

    QTLIB_RESOLVE_POS_RECAL

    0x1000

    Multiple measurements needed to resolve positive recalibration. Call qt_measure_sensors( ) once again.

    NOTE:

    Figure 6 illustrates the sequence of operations required to be performed to add touch to an end application. By using the simple API’s as illustrated in the sequence flowchart, the user can add touch sensing in his design.

    QTouch acquisition method libraries require 2 GPIO pins per channel. QTouch libraries can be configured to use 1 to 16 channels requiring 2 to 32 pins respectively. There are two options provided for connecting the SNS and SNSK pins.

    1. The SNS and SNSK pins are connected to separate ports. ( i.e. Interport)

    2. The SNS and SNSK pins are connected to the same port. ( i.e. Intraport)

    For 8bit AVR libraries, the following list provides a look at various combinations supported.

    When pin configurability is not used:

    1. 4-channel library – supports up to 4 channels using 4 consecutive pins on different SNS and SNSK ports (or) supports up to 4 channels using 8 consecutive pins on the same port used for both SNS and SNSK lines. This library requires 1 or 2 ports.

    2. 8-channel library – supports up to 8 channels using 8 consecutive pins on different SNS and SNSK ports (or) supports up to 8 channels using 16 pins spread over two ports (SNS and SNSK are on alternate pins) with SNS1 and SNSK1 pins on the first port and SNS2 and SNSK2 pins on the second port. This library requires 2 ports.

    3. 12-channel library (available only for 8bit AVR devices) – supports up to 12 channels out of which, 8 channels with 8 consecutive pins for SNS1 and SNSK1 are available on different ports and the other 4 channels with 8 consecutive pins available on the same port for both SNS and SNSK lines. This library requires a total of 3 ports.

    4. 16-channel library – supports up to 16 channels out of which, 8 channels with 8 consecutive pins for SNS1 and SNSK1 are available on different ports and the other 8 channels with 8 consecutive pins are available on a different pair of SNS2 and SNSK2 ports. This library requires a total of 4 ports.

    When pin configurability is used:

    1. 4-channel library – supports up to 4 channels using any 4 pins on different SNS and SNSK ports (or) supports up to 4 channels using pins on the same port used for both SNS and SNSK lines. This library requires 1 or 2 ports.

    2. 8-channel library – supports up to 8 channels using 8 pins on different SNS and SNSK ports (or) supports up to 8 channels using pins spread over two ports (SNS and SNSK are on alternate pins) with SNS1 and SNSK1 pins on the first port and SNS2 and SNSK2 pins on the second port. This library requires 2 ports.

    3. 12-channel library (available only for 8bit AVR devices) – supports up to 12 channels out of which, 8 channels with 8 pins for SNS1 and SNSK1 are available on different ports and the other 4 channels with 8 pins available on the same port for both SNS and SNSK lines. This library requires a total of 3 ports.

    4. 16-channel library – supports up to 16 channels out of which, 8 channels with 8 pins for SNS1 and SNSK1 are available on different ports and the other 8 channels with 8 pins are available on a different pair of SNS2 and SNSK2 ports. This library requires a total of 4 ports.

    Note:

    1. When a library supports 4 channels using 8 consecutive pins on the same port, the SNS and SNSK pins are allocated alternately. This is valid for all the libraries mentioned above.

    2. Usage of intraport configuration requires more code memory than the interport configuration. The values mentioned in the Library_selection_Guide.xls are for interport configurations. The memory consumption for intra-port will be higher to the values mentioned in the Library_selection_Guide.xls

    3. The configurations on pin configurability should be used in conjunction with the rules for assigning the pins that are described in section 5.8.2

    For UC3 and ATSAM libraries, an n- channel library supports up to n channels using n consecutive pins on different SNS and SNSK ports (or) supports up to n channels using (2*n) consecutive pins on the same port used for both SNS and SNSK lines. This library requires 1 or 2 UC3 or ATSAM ports. In addition to this, for the ATSAM libraries the pins can be configured on 3 ports based on the configuration selected.

    NOTE:

    Some of the devices in UC3 family has ports having more than 32 pins or less than 32 pins.In those devices, the mapping is given as below:

    GPIO Port0 -> A

    GPIO Port1 -> B

    GPIO Port2 -> C

    GPIO Port3 -> X

    Example SNS=A and SNSK=X, So channel 0 will be (SNS0 = GPIO0_Pin0 and SNSK0 = GPIO3_Pin0 ).

    Similarly,Example SNS=X and SNSK=X, So channel 0 will be (SNS0 = GPIO3_Pin0 and SNSK0 = GPIO3_Pin1 ).

    Figure 5‑7 : Sequence of operations to add Touch capability

    Figure 5-9 illustrates a QMatrix capacitive sensing solution which uses 4 X lines and 4 Y lines thereby providing a 16 channel solution.

    Note:

    The channel numbering for QMatrix configuration follows a matrix pattern with the channel numbers starting from 0 for the matrix intersection (X0Y0 ) and increasing along the X lines for a given Y line ( Channel 1 is X1Y0 ) and then moving on to the row number 0 for the next column. Table 1 lists the possible channel numbers and the associated X/Y line associations for the different configurations of QMatrix library variants.

    A group of channels form a sensor and the sensor numbering is determined by the order in which the user defines the association of channels and uses them as a sensor.

    The channel numbering is fixed for a specific library variant based on the number of X and Y lines used whereas the sensor numbering is determined at the time of usage based on the order in which the user defines the association of the channels to create a sensor.

    Figure 5‑10: Channel Numbering for QMatrix acquisition method libraries

    Table 1 : Channel numbers for QMatrix configurations

    Line label

    4 channel configuration

    (4 x 1)

    8   channel configuration

    (4 x 2)

    16 channel

    Configuration

    (8 x 2)

    16 channel

    Configuration

    (4 x 4)

    32 channel configuration

    (8 x 4)

    56 channel configuration

    (8 x 7)

    64 channel configuration

    (8 x 8)

    Channel 0

    X0Y0

    X0Y0

    X0Y0

    X0Y0

    X0Y0

    X0Y0

    X0Y0

    Channel 1

    X1Y0

    X1Y0

    X1Y0

    X1Y0

    X1Y0

    X1Y0

    X1Y0

    Channel 2

    X2Y0

    X2Y0

    X2Y0

    X2Y0

    X2Y0

    X2Y0

    X2Y0

    Channel 3

    X3Y0

    X3Y0

    X3Y0

    X3Y0

    X3Y0

    X3Y0

    X3Y0

    Channel 4

    N/A

    X0Y1

    X4Y0

    X0Y1

    X4Y0

    X4Y0

    X4Y0

    Channel 5

    N/A

    X1Y1

    X5Y0

    X1Y1

    X5Y0

    X5Y0

    X5Y0

    Channel 6

    N/A

    X2Y1

    X6Y0

    X2Y1

    X6Y0

    X6Y0

    X6Y0

    Channel 7

    N/A

    X3Y1

    X7Y0

    X3Y1

    X7Y0

    X7Y0

    X7Y0

    Channel 8

    N/A

    N/A

    X0Y1

    X0Y2

    X0Y1

    X0Y1

    X0Y1

    Channel 9

    N/A

    N/A

    X1Y1

    X1Y2

    X1Y1

    X1Y1

    X1Y1

    Channel 10

    N/A

    N/A

    X2Y1

    X2Y2

    X2Y1

    X2Y1

    X2Y1

    Channel 11

    N/A

    N/A

    X3Y1

    X3Y2

    X3Y1

    X3Y1

    X3Y1

    Channel 12

    N/A

    N/A

    X4Y1

    X0Y3

    X4Y1

    X4Y1

    X4Y1

    Channel 13

    N/A

    N/A

    X5Y1

    X1Y3

    X5Y1

    X5Y1

    X5Y1

    Channel 14

    N/A

    N/A

    X6Y1

    X2Y3

    X6Y1

    X6Y1

    X6Y1

    Channel 15

    N/A

    N/A

    X7Y1

    X3Y3

    X7Y1

    X7Y1

    X7Y1

    Channel 16

    N/A

    N/A

    N/A

    N/A

    X0Y2

    X0Y2

    X0Y2

    Channel 17

    N/A

    N/A

    N/A

    N/A

    X1Y2

    X1Y2

    X1Y2

    Channel 18

    N/A

    N/A

    N/A

    N/A

    X2Y2

    X2Y2

    X2Y2

    Channel 19

    N/A

    N/A

    N/A

    N/A

    X3Y2

    X3Y2

    X3Y2

    Channel 20

    N/A

    N/A

    N/A

    N/A

    X4Y2

    X4Y2

    X4Y2

    Channel 21

    N/A

    N/A

    N/A

    N/A

    X5Y2

    X5Y2

    X5Y2

    Channel 22

    N/A

    N/A

    N/A

    N/A

    X6Y2

    X6Y2

    X6Y2

    Channel 23

    N/A

    N/A

    N/A

    N/A

    X7Y2

    X7Y2

    X7Y2

    Channel 24

    N/A

    N/A

    N/A

    N/A

    X0Y3

    X0Y3

    X0Y3

    Channel 25

    N/A

    N/A

    N/A

    N/A

    X1Y3

    X1Y3

    X1Y3

    Channel 26

    N/A

    N/A

    N/A

    N/A

    X2Y3

    X2Y3

    X2Y3

    Channel 27

    N/A

    N/A

    N/A

    N/A

    X3Y3

    X3Y3

    X3Y3

    Channel 28

    N/A

    N/A

    N/A

    N/A

    X4Y3

    X4Y3

    X4Y3

    Channel 29

    N/A

    N/A

    N/A

    N/A

    X5Y3

    X5Y3

    X5Y3

    Channel 30

    N/A

    N/A

    N/A

    N/A

    X6Y3

    X6Y3

    X6Y3

    Channel 31

    N/A

    N/A

    N/A

    N/A

    X7Y3

    X7Y3

    X7Y3

    Channel 32

    N/A

    N/A

    N/A

    N/A

    N/A

    X0Y4

    X0Y4

    Channel 33

    N/A

    N/A

    N/A

    N/A

    N/A

    X1Y4

    X1Y4

    Channel 34

    N/A

    N/A

    N/A

    N/A

    N/A

    X2Y4

    X2Y4

    Channel 35

    N/A

    N/A

    N/A

    N/A

    N/A

    X3Y4

    X3Y4

    Channel 36

    N/A

    N/A

    N/A

    N/A

    N/A

    X4Y4

    X4Y4

    Channel 37

    N/A

    N/A

    N/A

    N/A

    N/A

    X5Y4

    X5Y4

    Channel 38

    N/A

    N/A

    N/A

    N/A

    N/A

    X6Y4

    X6Y4

    Channel 39

    N/A

    N/A

    N/A

    N/A

    N/A

    X7Y4

    X7Y4

    Channel 40

    N/A

    N/A

    N/A

    N/A

    N/A

    X0Y5

    X0Y5

    Channel 41

    N/A

    N/A

    N/A

    N/A

    N/A

    X1Y5

    X1Y5

    Channel 42

    N/A

    N/A

    N/A

    N/A

    N/A

    X2Y5

    X2Y5

    Channel 43

    N/A

    N/A

    N/A

    N/A

    N/A

    X3Y5

    X3Y5

    Channel 44

    N/A

    N/A

    N/A

    N/A

    N/A

    X4Y5

    X4Y5

    Channel 45

    N/A

    N/A

    N/A

    N/A

    N/A

    X5Y5

    X5Y5

    Channel 46

    N/A

    N/A

    N/A

    N/A

    N/A

    X6Y5

    X6Y5

    Channel 47

    N/A

    N/A

    N/A

    N/A

    N/A

    X7Y5

    X7Y5

    Channel 48

    N/A

    N/A

    N/A

    N/A

    N/A

    X0Y6

    X0Y6

    Channel 49

    N/A

    N/A

    N/A

    N/A

    N/A

    X1Y6

    X1Y6

    Channel 50

    N/A

    N/A

    N/A

    N/A

    N/A

    X2Y6

    X2Y6

    Channel 51

    N/A

    N/A

    N/A

    N/A

    N/A

    X3Y6

    X3Y6

    Channel 52

    N/A

    N/A

    N/A

    N/A

    N/A

    X4Y6

    X4Y6

    Channel 53

    N/A

    N/A

    N/A

    N/A

    N/A

    X5Y6

    X5Y6

    Channel 54

    N/A

    N/A

    N/A

    N/A

    N/A

    X6Y6

    X6Y6

    Channel 55

    N/A

    N/A

    N/A

    N/A

    N/A

    X7Y6

    X7Y6

    Channel 56

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X0Y7

    Channel 57

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X1Y7

    Channel 58

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X2Y7

    Channel 59

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X3Y7

    Channel 60

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X4Y7

    Channel 61

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X5Y7

    Channel 62

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X6Y7

    Channel 63

    N/A

    N/A

    N/A

    N/A

    N/A

    N/A

    X7Y7

    The ordering and numbering of sensors is related to the order in which the sensors are enabled. This is independent of the acquisition method (QMatrix or QTouch acquisition method libraries).

    For example, consider this code snippet:

    ….

    /* enable slider */

    qt_enable_slider (CHANNEL_0, CHANNEL_2, AKS_GROUP_1, 16, HYST_6_25, RES_8_BIT, 0);

    /* enable rotor */

    qt_enable_rotor (CHANNEL_3, CHANNEL_5, AKS_GROUP_1, 16, HYST_6_25, RES_8_BIT, 0);

    /* enable keys */

    qt_enable_key (CHANNEL_6, AKS_GROUP_2, 10, HYST_6_25);

    qt_enable_key (CHANNEL_7, AKS_GROUP_2, 10, HYST_6_25);

    In the case above, the slider on channels 0 to 2 will be sensor 0, the rotor on channels 3-to-5 is sensor 1 and the keys on channels 6 and 7 are sensor numbers 3 and 4 respectively.

    When the touch status is reported or queried, the corresponding sensor positions and status indicate the touch status. For example, the slider is in detect if “qt_measure_data. qt_touch_status.sensor_states” bit position 0 is set. Similarly, the rotor on channels 3 to 5 is sensor 1, and the keys on channels 6 and 7 are sensors 2 and 3 respectively.

    However, the code could be re-arranged as follows to give a different sensor numbering.

    /* enable rotor */

    qt_enable_rotor (CHANNEL_3, CHANNEL_5, NO_AKS_GROUP, 16, HYST_6_25, RES_8_BIT, 0);

    /* enable keys */

    qt_enable_key (CHANNEL_6, AKS_GROUP_2, 10, HYST_6_25);

    qt_enable_key (CHANNEL_7, AKS_GROUP_2, 10, HYST_6_25);

     /* enable slider */

    qt_enable_slider (CHANNEL_0, CHANNEL_2, NO_AKS_GROUP, 16, HYST_6_25, RES_8_BIT, 0);

    Now, the rotor is sensor 0, the keys are sensors 1 and 2, and the slider is sensor 3.

    So, the order in which the user enables the sensors is the order in which the sensors are numbered. Depending on the user requirements, the sensors can be configured in the preferred order.

    NOTE:  In case of QMatrix, the channels on the Unused X lines (or) unused  Y lines should be ignored and not to be used as arguments in this API.

    Ex: If the host application needs only 24 channels , there are two possible options.

    The ATMEL QTouch Library API provides a function pointer called “qt_filter_callback”. The user can use this hook to apply filter functions to the measured signal values.

    If the pointer is non-NULL, the library calls the function after library has made capacitive channel measurements, but before the library has processed the channel information and determining the sensor states.

    Figure 5‑11 : Block diagram to represent usage of filter callback function

    Example: Averaging the Last Four Signal Values

    1. Add a static variable in the main module:

    /* filter for channel signals */

    static uint16_t filter[QT_NUM_CHANNELS][4];

    2. Add a filter function prototype to the main module:

    /* example signal filtering function */

    static void filter_data_mean_4( void );

     3. When configuring the ATMEL QTouch library, set the callback function pointer:

    /* set callback function */

    qt_filter_callback = filter_data_mean_4;

     4. Add the filter function:

    void filter_data_mean_4( void )

    {

    uint8_t i;

    /*

    * Shift previously stored channel signal data.

    * Store new channel signal data.

    * Set library channel signal data = mean of last 4 values.

    */

    for( i = 0u; i < QT_NUM_CHANNELS; i++ )

    {

    filter[i][0] = filter[i][1];

    filter[i][1] = filter[i][2];

    filter[i][2] = filter[i][3];

    filter[i][3] = qt_measure_data.channel_signals[i];

    qt_measure_data.channel_signals[i] = ( (         filter[i][0] +

    filter[i][1] +

    filter[i][2] +

    filter[i][3] ) / 4u );

    }

    }

    The signal values processed by the ATMEL QTouch Library are now the mean of the last four actual signal values.

    The GPIO pins within a port that are not used for QTouch or QMatrix acquisition methods can be used for user application. The usage of pins for QTouch is based on the channels that are being configured while enabling the sensors (keys/rotors/sliders).

    The example below configuring 4 keys, a rotor and a slider shows how the pin configurability is achieved by configuring the sensor channels. The code snippet configures a specific 10 channels of a 16 channel library based on the GPIO port pins available for QTouch™.

    Port Configuration:

        #define SNSK1        C

        #define SNS1        D

        #define SNSK2        A

        #define SNS2        B

    Channel/Pin Configuration:

        /* enable a key on channel 0    */

        qt_enable_key( CHANNEL_0, AKS_GROUP_2, 10u, HYST_6_25 );

        /* enable a slider on channels 2 to 4  */

        qt_enable_slider( CHANNEL_2, CHANNEL_4, AKS_GROUP_1, 16u, HYST_6_25, RES_8_BIT, 0u  );

        /* enable a key on channel 6 */

        qt_enable_key( CHANNEL_6, AKS_GROUP_2, 10u, HYST_6_25 );

        /* enable a key on channel 7 */

        qt_enable_key( CHANNEL_7, AKS_GROUP_2, 10u, HYST_6_25 );

        /* enable a rotor on channels 12 to14   */

        qt_enable_rotor( CHANNEL_12, CHANNEL_14, AKS_GROUP_1, 16u, HYST_6_25, RES_8_BIT, 0u );

        /* enable a key on channel 15 */

        qt_enable_key( CHANNEL_15, AKS_GROUP_2, 10u, HYST_6_25 );

    The channel numbers 0,2,3,4,6,7 are allocated to pins 0,2,3,4,6,7 of (D,C) port pair respectively. Pins 1 and 5 of ports C and D can be used for user application. Similarly the channel numbers 12,13,14,15 are allocated to pins 4,5,6,7 of (B,A) port pair respectively. Pins 1, 2, 3 and 4 of ports B and A are again unused by the QTouch library and can be used for user application.

    QMatrix acquisition method libraries are available for a set of AVRs The library variants can be configured to have port and pin assignments for X, Ya, Yb and SMP. Please refer to section 5.8.2 for port-pin configurability.

    Some of the key constraints are

    TIMER1 will not be available for critical sections of the code where the library is called. But resources are available to the host application when the normal user’s application is running.

    Number of channels

    X x Y

    Maximum Channels per ROTOR_SLIDER

    4

    4 x 1

    4

    8

    4 x 2

    4

    16

    4 x 4

    4

    16

    8 x 2

    8

    32

    8 x 4

    8

    56

    8 x 7

    8

    64

    8 x 8

    8

    AVR Microcontrollers can use a number of clock sources, ranging from high precision external crystals to less accurate resonators down to simple external RC circuits. Most AVR devices also come with integrated RC oscillators. This provides a system clock source without additional cost or board space. When using internal RC oscillators some considerations need to be taken. The accuracy i.e. frequency of CMOS RC oscillators will vary slightly from device to device due to process variance.

    QMatrix acquisition method uses an internal timer to measure the discharge time of a capacitor, and any frequency variation or fluctuation in the RC Oscillator will thus show up as a variance in the measurement data. The application should for this reason be designed and tuned to allow for such variance in the internal RC oscillator frequency. For most AVR microcontrollers, the rated accuracy of the internal RC oscillator is 2%, and to have some headroom and guarantee a robust and stable system, the designer should aim to follow these design rules:

    If the design of the system does not comply with the rules above, special attention should be taken when testing it to make sure that the design meets the desired performance. In systems with big signal values and small deltas (i.e. less than 10%) it is recommended to either change component values to conform to the 10% delta rule, or change to a higher precision clock source.

    QTouch Composer is the preferred tool when checking and validating any QTouch Designs.

    The library needs different charge / dwell cycles based on the operation and design. The charge/dwell cycles are determined by the QT_DELAY_CYCLES parameter defined by the user. The recommended range of charge/dwell cycle times that the user must select based on the operating clock frequency of the Microcontroller is provided in the table below.

    Fine tuning of the QT_DELAY_CYCLES to match the sensor design may be done by monitoring the reference levels, and finding the charge/dwell time where the reference level has reached >99% of maximum reference value seen. For QTouch acquisition method, the reference value will decrease as the QT_DELAY_CYCLES is increased. For QMatrix acquisition method, the reference value will increase with increase in QT_DELAY_CYCLES. If the cycle time is not optimum, the design may experience temperature sensitivity.

    Possible values:

    The following table lists the possible values of QT_DELAY_CYCLES for both QTouch and QMatrix acquisition method libraries.

    Acquisition method

    Possible values

    QTouch

    Any value from 1- 255 for 8bit AVR

    3,4,5,10,25,50 for UC3 and ATSAM libraries

    QMatrix

    1,2,3,4,5,10,25,50

    Example:

    When operating at 4 MHz, 1~10 cycle charge times are recommended (0.125us to 1.25us).

    Table 2 :  Frequency of operation

    Frequency of Microcontroller

    (MHz))

    microcontroller Cycle time

    (us)

    Suitable Charge Cycle times (or)

    Suitable Dwell Cycle times

    (us)

    1

    1

    1 to 2 cycles (1us to 2us)

    2

    0.5

    1 to 5 cycles (0.5us to 2.5us)

    4

    0.25

    1 to 10 cycles (0.25us to 2.5us)

    8

    0.125

    1 to 10 cycles (0.125us to 1.25us)

    10

    0.1

    2 to 25 cycles (0.2us to 2.5us)

    16

    0.0625

    2 to 25 cycles (0.125us to 1.5625us)

    20

    0.05

    3 to 50 cycles (0.15us to 2.5us)

    48

    0.02083

    5~50 cycles (0.104us to 1.04us)

    >48

    <0.02083

    5 to <  50 (up to 255 cycles for 8bit AVR)

    Note:

    If the microcontroller is only used for Touch detection then running at the lowest frequency possible for the desired touch response may provide the best power and EMC performance. If it is also used for other functions then running at a higher frequency may be necessary. In some power critical applications it may be worth switching the frequency on the fly, such as lowering the frequency during touch detect API instead of using long cycle times, and then switching to a higher frequency for non-touch code. It is necessary to carefully design timer operation when change frequencies.

    This section illustrates the usage of interrupts during qt_measure_sensors call. The library disables interrupts for time-critical periods during touch sensing. These periods are generally only a few cycles long, and so host application interrupts should remain responsive during touch sensing. However, any interrupt service routines (ISRs) during touch sensing should be as short as possible to avoid affecting the touch measurements or the application responsiveness.

    Interrupts are disabled once for each signal count/burst pulse and this is typically 65 instruction cycles when Delay cycles (QT_DELAY_CYCLE=1).

    The number of times interrupts are disabled during one measurement will depend on signal count of a channel as well as the number of channels and port configuration like interport (SNS and SNSK on different port)/intraport (SNS and SNSK on same port).

    Example- 4 channel intraport case:

    Channel0 is formed by PA0 and PA1 pin with signal count 300.

    Channel1 is formed by PA2 and PA3 pin with signal count 200.

    Channel2 is formed by PA4 and PA5 pin with signal count 250

    Channel3 is formed by PA6 and PA7 pin with signal count 150

    In the above case, the no of times interrupts disabled will be 300 (maximum signal count) as all four channels burst together in case of intraport.

    Example- 4 channel interport case:

    Channel0 is formed by PA0 and PB0 pin with signal count 300.

    Channel1 is formed by PA1 and PB1 pin with signal count 200.

    Channel2 is formed by PA2 and PB2 pin with signal count 250

    Channel3 is formed by PA3 and PB3 pin with signal count 150

    In the above case, as bursting happens in odd and even pairs, so maximum signal counts in case of both even and odd channels will be taken. Maximum signal count out of even channels channel0 and channel2 is 300 and maximum signal count out of odd channels channel1 and channel3 is 250.So total number of times interrupts disabled will be (300 + 250 = 550).

    The recommended maximum ISR execution time is 1msec.If ISR time exceeds 1 ms then it may result in charge leakage which will further lead to rise in signal value. Noise observed in the signal value will increase. The 1msec ISR limit applies to the total time spent in an ISR during one acquisition period, and applies only to QTouch and QMatrix. One acquisition period is the time to complete one burst sequence. This will be the time required to do the 300 pulses situation in the first example above. In the second example above the 1msec limitation applies to the 300 and then the 250 pulses; 1msec of total ISR can occur during the 300 and another 1msec ISR can occur during the 250. This is all about self discharge happening while doing a burst. In the example below it would be perfectly OK to have a 1msec ISR happening every 5 msec.

    If the ISR load is constant and synced with the acquisition (meaning the ISR takes a constant amount of time and executes in the same amount of time during each burst sequence), the signal will not suffer at all since the self discharge will be the same every time the acquisition is run. If there is a strong variation in the total ISR execution time during acquisition this will appear as noise in the signal due to the variable self discharge of the sample cap.

    The time to execute one measurement will depend on various parameters like sampling capacitor, operating voltage, and different software parameters like QT_DELAY_CYCLES, CPU frequency.

    For single button with below parameters

    Sampling Capacitor = 10 nf

    CPU Freq= 4 MHZ

    VCC= 5V

    QT_DELAY_CYCLES=1

    Qtouch takes around 2.6 msec for one channel.

    Please note that none of the API functions should be called from a user interrupt.

    This section illustrates the key steps required in integrating the QTouch library in your application.

    Table 1 :The QTouch library directory structure is as listed below

    What

    Where

    Comments

    Root Installation

    Default directory is C:\Program Files\Atmel\ Atmel_QTouch_Libraries_5.x\Generic_QTouch_Libraries

    This is the default directory path but the user can install the directory in desired location.

    Header File

    ..\include

    touch_api.h is located in this directory.touch_api_2kdevic.h for 2K devices support is also added in this directory

    Configuration and assembler routines for acquisition

    QTouch acquisition method libraries

    8-bit devices

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\QTouch\ common_files

    qt_asm_avr.h, qt_asm_tiny_mega.S, qt_asm_xmega.S, qt_asm_avr_config_2kdevice.h, qt_asm_tiny_mega_2kdevice.S

    UC3

    Not needed for UC3 devices

    ATSAM

    Not needed for ATSAM devices

    QMatrix acquisition method libraries

    8-bit devices

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\QMatrix\ common_files

    qm_asm_avr.h, qm_asm_tiny_mega.S, qm_asm_m8535_m16.S, qm_asm_xmega.S, qm_asm_tiny_mega_m64_v3g4_avr51g1.S

    UC3

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries\32bit_AVR\UC3\QMatrix\ common_files

    touch_config.h, touch_qm_config32_assembler.h, qm_asm_uc3c_gcc.x, qm_asm_uc3c_iar.s82

    Library files

    QTouch acquisition method libraries

    8-bit devices

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\QTouch\ library_files

    All libraries ( .r90 for IAR and .a for GCC) for the supported 8 bit devices are in this location. Also r82 libraries for AVR 32 bit devices are also here

    UC3

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \32bit_AVR\UC3\QTouch\library_files

    ATSAM

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AT91SAM\SAM3\QTouch\library_files, ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AT91SAM\SAM4\QTouch\library_files

    QMatrix acquisition method libraries

    8-bit devices

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\QMatrix\library_files

    UC3

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries\32bit_AVR\UC3\QMatrix\ library_files

    Example Projects

    QTouch acquisition method libraries

    8-bit devices

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\QTouch\ example_projects

    All example projects using the libraries above (IAR and GCC) for the supported devices are in this location

    UC3

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \32bit_AVR\UC3\QTouch\example_projects

    ATSAM

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries\AT91SAM\SAM3\QTouch\example_projects, ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries\AT91SAM\SAM4\QTouch\ example_projects\SAM4S_XPLAINED_DEMO_APPLICATION1

    QMatrix acquisition method libraries

    8-bit devices

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\ QMatrix\example_projects

    UC3

    ..\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries\32bit_AVR\UC3\QMatrix\ example_projects

    The following steps illustrate how to add QTouch acquisition method support in your application.

    1. QTouch acquisition method library variants are offered for IAR and AVR Studio/GCC tool chains. First step is to select the compiler tool chain to be used based on the code and data memory requirements. The list of supported compiler tool chains can be found in 5.7.1.2.

      Use the library selection guide (C:\ Program Files\Atmel\Atmel_QTouch_Libraries_5.x\ Library_Selection_Guide.xls) to select the QTouch acquisition method library variant required for the device.

      1. There are specific library variants distributed for each microcontroller. You would need the following parameters to identify the right library variant to be used in your application

        1. The microcontroller to be used for the application.

        2. The acquisition method to be used for the application.

        3. The number of channels you need for the application.

        4. Whether Rotor and/or Slider support required in the application.

        5. The number of rotors and/or slider needed for the application.

      2. There are specific variants of the library which is pre-built with a specific configuration set supported. Use the library selection guide (C:\ Program Files\Atmel\ Atmel_QTouch_Libaries_5.x\Library_Selection_Guide.xls) to find the sample project using the QTouch acquisition method library variant.

    2. Define the constants and symbol names required

      1. The next step is to define certain constants and symbols required in the host application files where the touch API is going to be used.

      2. The constant/symbol names are as listed in the table below.

      3. The constant/symbol definitions can be placed in the touch_config.h file. The user may modify these defined values based on the requirements.

        Table 2 : Constant and symbol name definitions required to use the QTouch acquisition method libraries

        Symbol / Constant name

        Range of values

        Comments

        _QTOUCH_

        This macro has to be defined in order to use QTouch libraries.

         

        SNS1 & SNSK1

        Refer to library selection guide.

        To be used if only single port pair is needed for the design.

        SNS1 – SNSK1

        &

        SNS2 – SNSK2

         Refer to library selection guide.

        To be used if two port pairs are needed for the design.

        _SNS1_SNSK1_SAME_PORT_

        Comment/uncomment define

        To be enabled if the same port is used for SNSK1 and SNS1 pins for QTouch. If SNSK1 and SNS1 pins are on different ports then this definition is not required.

        _SNS2_SNSK2_SAME_PORT_

        Comment/uncomment define

        To be enabled if the same port is used for SNSK2 and SNS2 pins for QTouch. If SNSK1 and SNS1 pins are on different ports then this definition is not required.

        QT_NUM_CHANNELS

        4, 8, 12, 16 for tinyAVR, megaAVR and XMEGA device libraries and 8, 16, 32 for UC3 device libraries.

         

        _ROTOR_SLIDER_

        Rotor / slider can be added to the design, if this macro is enabled.

        A library with rotor / slider functionality already available needs to be selected if this macro is to be enabled.

        QT_DELAY_CYCLES

        1 to 255

        Please refer to section 5.6.8.

        _POWER_OPTIMIZATION_

        (Required only for ATtiny and ATmega libraries. ATxmega and UC3 libraries by default optimized for power without any limitations)

        0 or 1

        Used to reduce the power consumed by the library. When power optimization is enabled the unused pins, within a port used for QTouch, may not be usable for interrupt driven applications. Spread spectrum noise reduction is also disabled when power optimization is enabled.

        _TOUCH_ARM_

        To be defined when using ATSAM libraries

        For ATSAM libraries only.

        QTOUCH_STUDIO_MASKS

        This macro needs to be defined if QTouch Studio Pin Configurator Wizard.is used to generate the SNS and SNSK masks.

        Please refer to section 5.8.1

        _STATIC_PORT_PIN_CONF_

        This macro needs to be defined only in case of 4 and 8 channel libraries with interport configuration and pin configurability.

        Please refer to section 5.8.1

    3. Using QTouch API’s in your application to add touch functionality

      1. The clock, host application and other peripherals needed by the host application needs to be initialized.

      2. In your application, create, initialize and configure the sensors.

        1. The APIs of interest are qt_enable_key/rotor/slider(). see sections 5.6.5.2,  5.6.5.3 and 5.6.5.4.

      3. The channel configuration parameters need to be set by calling the qt_set_parameters()  ( see section 5.6.5.1).

      4. Once the sensors are configured, qt_init_sensing() has to be called to trigger the initialization of the sensors with the configuration defined in steps above.

      5. Provide timing for the QTouch libraries to operate. i,e the QTouch libraries do not use any timer resources of the microcontroller. The Host application has to provide the required timing and also call the API’s at the appropriate intervals to perform touch sense detect operations.

        NOTE: The ATSAM example applications provided with the libraries illustrate the usage for the evaluation kits supported by the library. Please refer to the main.c files for reference.

    4. Adding the necessary source files

      The following files are to be added along with the touch library and user application before compilation:

      1. ATtiny, ATmega devices - touch_api.h, qt_asm_avr.h, touch_config.h and qt_asm_tiny_mega.S.

      2. ATxmega devices - touch_api.h, qt_asm_avr.h, touch_config.h and qt_asm_xmega.S.

      3. UC3 devices – touch_api.h.

      4. ATSAM devices - touch_api.h and touch_config.h.

    5. General application notes

      1. The clock, host application and other peripherals needed by the host application needs to be initialized.

      2. Ensure that there are no conflicts between the resources used by the touch library and the host application.

      3. Ensure that the stack size for your application is adjusted to factor in the stack depth required for the operation of the touch libraries.

    Table 3 :The example below will explain in detail the steps to follow for library selection.

    Criteria

    Selection

    Notes

    Microcontroller

    AVR STUDIO® IDE and GNU compiler

    The GCC compiled variant of the libraries for the device selected needs to be used.

    Number of Keys required for the application

    3

    Each key requires 1 QTouch acquisition channel

    Rotors and sliders required

    Yes

    Number of Rotors and Sliders required

    3

    Each rotor / slider will require 3 channels.

    Number of Channels required for the application ( should be the sum of all channels required for all the keys ,rotors and sliders used in the design )

    12

    3 Keys + ( 3 rotors x 3 channels per rotor/slider )  12 channels

    Charge cycle time required for the design

    1 cycle

    Assuming the device is configured with a clock frequency of 4Mhz

    Number of ports needed

    3 ports

    This is determined based on the number of channels required and the routing required for the channels SNS and SNSK pins to the ports For this design, 24 pins are required and we need 3 ports to support the sensors.

    Choice of ports available for the design

    SNS/ SNSK Pair1 ports

    SNS1 Port : A

    The choice of ports for the port pairs is limited and can be found in the section 5.7.1.5

    SNSK1 Port : A

    SNS/ SNSK Pair 2 ports

    SNS2 Port : B

    SNSK2 Port : C

    Is there a need for reduced power consumption (and reduced execution time)?

    _POWER_ OPTIMIZATION_ = 1

    Enabling _POWER_OPTIMIZATION_ will lead to a 40% reduction in power consumed by the library, but at the expense of reduced external noise immunity. When power optimization is enabled, the unused pins within a port used for QTouch, may not be usable for interrupt driven applications. This option is available only for ATtiny and ATmega devices.

    SNS1 and SNSK1 pins use the same port.

    _SNS1_SNSK1_SAME_PORT_

    The _SNS1_SNSK1_SAME_PORT_ symbol needs to be defined as port A is used for both SNS1 and SNSK1 pins.

    Given the above requirements for the applications, the first step is to select the right library variant required.

    Step 1: Selecting the right library variant

    Referring to the library selection guide, we see that there are a few variants of libraries supported for ATmega1280. Since the application requires 12 channels and rotor slider support, one has to select a library variant which supports at least 12 channels or more along with 3 Rotors/Sliders. Hence we select the 12 channel library variant for GCC complier which supports the required number of sensors/channels. This works out to be libavr51g1_12qt_k_3rs.a

    Step 2: Defining the constants / symbols in the project space

    In the host application file (say main.c), define the following constants and symbols

    #define        QTOUCH_

    #define        QT_NUM_CHANNELS                12

    #define        SNSK1                                A

    #define        SNS1                                A

    #define        SNSK2                                B

    #define        SNS2                                C

    #define        QT_DELAY_CYCLES                1

    #define        _POWER_OPTIMIZATION_        1

    #define        _SNS1_SNSK1_SAME_PORT_

    NOTE: The above definitions are available in touch_config.h file. Alternatively, you can define these in your IDE’s project options or have them defined in a separate header file.

    Step 3: Usage of library API’s

    Now, you can use the touch API’s to create, initialize and perform touch sensing. Please refer to the sample applications in section 5.6.11.2 for reference. These sample applications illustrate the usage of the API’s and the sequence of operation.

    Step 4: Adding necessary source files for compilation

    The source files needed for compiling your application along with the touch library are touch_api.h, touch_config.h and qt_asm_tiny_mega.S.

    Table 4 : The example below will explain in detail the steps to follow for library selection.

    Criteria

    Selection

    Notes

    Microcontroller

    AT91SAM3S

    IDE and compiler tool chain used

    IAR Workbench and GNU compiler

    The GCC compiled variant of the libraries for the device selected needs to be used.

    Number of Keys required for the application

    3

    Each key requires 1 QTouch acquisition channel

    Rotors and sliders required

    Yes

    Number of Rotors and Sliders required

    3

    Each rotor / slider will require 3 channels.

    Number of Channels required for the application ( should be the sum of all channels required for all the keys ,rotors and sliders used in the design )

    12

    3 Keys + ( 3 rotors x 3 channels per rotor/slider )  12 channels

    Charge cycle time required for the design

    5 cycles

    Assuming the device is configured with a clock frequency of 48Mhz

    Number of SNS/SNSK port pairs needed

    2 pairs

    This is determined based on the free PIO of the board

    Choice of ports available for the design

    SNS/ SNSK Pair1 ports

    SNS1 Port : A

    The choice of ports for the port pairs is limited and can be found in the section 5.7.1.5

    SNSK1 Port : A

    SNS/ SNSK Pair 2 ports

    SNS2 Port : B

    SNSK2 Port : B

    Given the above requirements for the applications, the first step is to select the right library variant required.

    Step 1: Selecting the right library variant

    Referring to the library selection guide, we see that there are a few variants of libraries supported for AT91SAM3S. One library is for IAR and the other is for GNU. If we want to use IAR Workbench, we use the library name: libsam3s-32qt-k-8rs-iar.a.

    Step 2: Defining the constants / symbols in the project space

    In IAR, change preprocessor options by adding the good defines:

    _TOUCH_ARM_

    _QTOUCH_

    SNS1=B

    SNSK1=B

    SNS2=A

    SNSK2=A

    QT_NUM_CHANNELS=32

    _ROTOR_SLIDER_

    QT_DELAY_CYCLES=10

    _SNS1_SNSK1_SAME_PORT_

    _SNS2_SNSK2_SAME_PORT_

    Step3: Usage of library API’s

    Now, you can use the touch API’s to create, initialize and perform touch sensing.

    The following is a checklist of items which needs to be ensured when integrating QTouch acquisition method libraries

    The host application must provide the current time to the library. This information is passed to the library as an argument to the function qt_measure_sensors()”. This is used for time-based library operations such as drift compensation.

    Based on the application design needs, the user needs to select the right library variant and the configuration to be used along with the variant. This section illustrates the steps required to select the right QMatrix acquisition method library variant and configuration for your application. QMatrix acquisition method library Variants are offered for IAR and AVR-GCC tool chains. First step is to select the compiler tool chain for which the libraries are required. The list of supported compiler tool chains can be found in section 5.7.2.2

    There are specific library variants distributed for each microcontroller. For your design, you would need the following information to select the correct library variant

    1. Device to be used for the design

    2. The number of touch sensing channels needed by the application – Then identify the Maximum number of channels required for the design that are supported by the library.

    3. Number of X lines to be used in the design

      1. The ports on which your design permits to have the X lines.

      2. The X lines can be spread on a maximum of three ports, the more ports used the more is the code memory requirement by the library.

    4. Number of Y lines to be used in the design

      1. The port-pins ports on which your design permits to have the Y lines.

    5. Do you need support for Rotors and/or Sliders in your design

      1. If yes, how many rotors/sliders would be needed?

      2. Based on a) above, identify the maximum number of rotors sliders that the library supports.

    6. Which compiler platform you intend to use to integrate the libraries – IAR or AVR -GCC

    Follow the steps listed below to arrive at the right library variant

    1. Select the device from the list of supported devices listed in 5.7.2.4.1

    2. Select the right library variant for the device selected  from the selection guide available in

      C:\ Program Files\Atmel\Atmel_QTouch_Libraries_5.x\Library_Selection_Guide.xls

      Each variant supports

      1. a specific number of channels,

      2. Supports a specific configuration of X x Y matrix pins ( eg 4 x 2 for 4 - X pins & 2 - Y pins )

      3. has support for Rotor / Slider ( either supported or not )

      4. support is available for IAR and/or GCC compiler tool chain

      5. support for specific number of rotors sliders.

    3. Define the constants and symbol names required

      1. The next step is to define certain constants and symbols required in the host application files where the touch API is going to be used. These values are derived from the parameters defined in step 2 for your application.

      2. The constant/symbol names are as listed in the table below

      3. The constant/symbol definitions can be placed in any of the following

        1. In the user’s ‘C’ file prior to include touch_api.h in the file.

        2. Modifying the defines in a touch_config.h available in the project folder.

      Table 5 :List of configurable parameters for touch library usage.

      Symbol / Constant name

      Range of values

      Comments

      _QMATRIX_

      Symbol defined to indicate QMatrix acquisition method is required

      Define this symbol to indicate QMatrix acquisition method is required

      QT_NUM_CHANNELS

      The number of channels the library supports.( Possible values:4,8,16,32,56,64).

      Note: 56 channel for only ATxmega Devices.

      Value should be same as the number of channels that the library supports

      NUM_X_LINES

      The number of X lines the library supports.( Possible values:4,8)

      Value should be same as the number of X lines that the library supports. Refer to library selection guide

      NUM_Y_LINES

      The number of Y lines the library supports.( Possible values:1,2,4,7,8)

      Note: 7 Y-lines for only ATxmega Devices)

      Value should be same as the number of Y lines that the library supports. Refer to library selection guide

      _ROTOR_SLIDER_

      Symbol defined if Rotor and/or slider is required

      Needs to be added in case user needs to configure ROTOR/SLIDER

      Needs to be removed for ALL KEYS configuration

      QT_MAX_NUM_ROTORS_SLIDERS

      Maximum number of rotors/sliders the library supports( possible values:0,2,4,8)

      Subject to support for rotors/sliders in the library selected.

      QT_DELAY_CYCLES

      Possible values :1,2,3,4,5,10,25,50

      Please refer to section 5.6.8

      NUM_X_PORTS

      Number of ports on which the X lines needs to be spread.

      (Possible values 1,2,3)

      Maximum number of ports that the X lines can spread is 3.

      Note: Code memory required increases with the increase in NUM_X_PORTS

      PORT_X_1

      First IO port for configuring the X lines.Any IO port available with the device.

      Drive electrode for touch sensing using QMatrix acquisition

      Valid when NUM_X_PORTS =1,2,3

      PORT_NUM_1

      1

      Please donot edit this macro

      Valid when NUM_X_PORTS =1,2,3

      PORT_X_2

      Second IO port for configuring the X lines. Any IO port available with the device.

      Drive electrode for touch sensing using QMatrix acquisition

      Valid when NUM_X_PORTS =2,3

      PORT_NUM_2

      2

      Please donot edit this macro

      Valid when NUM_X_PORTS =2,3

      PORT_X_3

      Third IO port for configuring the X lines. Any IO port available with the device.

      Drive electrode for touch sensing using QMatrix acquisition

      Valid when NUM_X_PORTS =3

      PORT_NUM_3

      3

      Please donot edit this macro

      Valid when NUM_X_PORTS =3

      PORT_YA

      Any IO port available with the device.

      Receive electrode for touch sensing using QMatrix acquisition

      PORT_YB

      ADC port available for the device.

      Receive electrode for touch sensing using QMatrix acquisition

      PORT_SMP

      Any IO port available with the device.

      Port of the Sampling pin for touch sensing using QMatrix acquisition

      SMP_PIN

      Any IO port available with the device.

      Sampling pin for touch sensing using QMatrix acquisition

      _ATXMEGA_

      Symbol defined if an ATxmega Device is used for QMatrix sensing technology

      Needs to be added if the device to be supported is ATxmegaxxxx

      SHARED_YAYB

      Possible values: 0 or 1

      #define SHARED_YAYB 1 in case YA and YB are on same port else 0.

      Once you have selected the right library variant and configuration parameters for the application, follow the steps outlined below to integrate the library variant in your application.

    4. Fill in the arrays x_line_info_t x_line_info[NUM_X_LINES] y_line_info_t ya_line_info[NUM_Y_LINES] and y_line_info_t yb_line_info[NUM_Y_LINES] using the pin configuration wizard provided by the QTouch Studio.

    5. Copy the library variant that was selected in step one to your project’s working directory or update your project to point to the library selected.

      Include the “touch_api.h” header file and assembler source file from the QTouch library in your application. The touch_api.h can be found in the release package at C:\Program Files\Atmel\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\QMatrix\common_files. The assembler files mentioned below could be found at the location C:\Program Files\Atmel\Atmel_QTouch_Libraries_5.x\ Generic_QTouch_Libraries \AVR_Tiny_Mega_XMega\QMatrix\common_ files

      1. qm_asm_tiny_mega.S in case of  ATtiny and ATmega devices.

      2. qm_asm_xmega.S in case of ATxmega devices.

      3. qm_asm_m8535_m16.S in case of ATmega8535 and ATmega16 devices.

    6. Initialize/create and use the touch api’s in your application

      1. In your application, create, initialize and configure the sensors.

        1. The APIs of interest are qt_enable_key/rotor/slider(). see sections 5.6.5.2,  5.6.5.3 and 5.6.5.4

      2. configure the global configuration parameters valid for all the sensors in the  library

      3. Provide timing for the QTouch libraries to operate. i,e. the QTouch libraries do not use any timer resources of the microcontroller. The Host application has to provide the required timing and also call the API’s at the appropriate intervals to perform touch sense detect operations

    7. General application notes

      1. The clock, host application and other peripherals needed by the host application needs to be initialized.

      2. The QMatrix acquisition method libraries internally use TIMER1 for their operation.

      3. Ensure that there are no conflicts between the resources used by the touch library and the host application

      4. Ensure that the stack size is adjusted to factor in the stack depth required for the operation of the touch libraries.

    Table 6 : Example details.

    Criteria

    Selection

    Notes

    Microcontroller

    ATTiny88

    List of supported devices can be found at Library_Selection_Guide.xls

    Number of channels required for the application

    6

    number channels available for a Tiny88 is listed in Library_Selection_Guide.xls

    Number of X lines needed

    Based on the number of channels, since 8 channels is needed, 4 X lines are supported. NUM_X_LINES is 4

    Since 3 X- lines (6 channels ) are used, Do not initialize 4th element in x_line_info[NUM_X_LINES]. Hence channel6, channel7 need not be used.

    Number of Y lines needed

    Based on the number of channels, since 8 channels is needed, 2 Y lines are supported

    NUM_Y_LINES is 2.

    Rotors and sliders required and Number of ROTOR/SLIDERS

    Yes - 2

    Library variants supported for ATTiny88 is listed in the Library_Selection_Guide.xls

    X_LINES on pins as below(4-X lines) X0- B0, X1- D2,X3 – B7, X4 – B5

    FILL_OUT_X_LINE_INFO(1,0), FILL_OUT_X_LINE_INFO(2,2), FILL_OUT_X_LINE_INFO(1,7),

    Main file has to be edited based on the configuration. Refer to section 5.8.2.1 . Refer channel numbering from the section5.6.6.1.2 Or This can be filled from the output of the pin configurator tool in QTouch Studio. Please refer to section 5.8.2

    Y_LINES on pins as below (2 Y-Lines) Y0A- D0, Y0B- C1, Y1A-D5, Y1B-C4,

    FILL_OUT_YA_LINE_INFO(0), FILL_OUT_YA_LINE_INFO(5), FILL_OUT_YB_LINE_INFO(1), FILL_OUT_YB_LINE_INFO(4),

    Main file has to be edited based on the configuration. Refer to section 5.8.2.1 Or This can be filled from the output of the pin configurator tool in QTouch Studio. Please refer to section 5.8.2

    NUM_X_PORTS

    2

    Since X lines are spread on a multiple(2) ports: PORTB, PORTD

    Compiler tool chain

    IAR

    Supported compiler tool chains listed in 5.7.2.2

    Choice of ports available for the design

    PORT_X_1 = B PORT_X_2 = D

    Any pins that are not conflicting with the host application and follow the configuration supported by library can be used. Or This can be filled from the output of the pin configurator tool in QTouch Studio. Please refer to section 5.8.2

    YA Line on PORTD

    YB Line on PORTC

    SMP Pin on PORTD pin 7

    QT_DELAY_CYCLES of 4

    Choice of Shared Ya and Yb on same port

    SHARED_YAYB

    This should be defined as 0 if YA and YB not shared on same port else 1 if shared on same port

    Given the above requirements for the applications, the first step is to select the right library variant required.

    Step 1:

    Select the Device that suits the requirements based on the touch sensing channels needed from the library selection guide available at C:\ Program Files\Atmel\ Atmel_QTouch_Libraries_5.x\ Library_Selection_Guide.xls

    Step 2:

    From the Library_selection_Guide.xls list,, we see that there are a few variants of libraries supported for AT Tiny device. Since the application requires 6 channels and rotor slider support, one has to select a library variant which supports at least 6 channels or more. Hence we select the 8 channel library which supports the required Port combination and the delay cycle preferred which works out to be the variant

    Step 3:

    Defining the constants / symbols in the project space or modifying in touch_config.h

    In the host application file (say main.c), define the following constants and symbols

    #define        _QMATRIX_

    #define        QT_NUM_CHANNELS                8

    #define        NUM_X_LINES                 4

    #define        NUM_Y_LINES                 2

    #define        NUM_X_PORTS                2

    #define        PORT_X_1                        B

    #define        PORT_NUM_1                         1

    #define        PORT_X_2                        D

    #define        PORT_NUM_2                         2

    #define        PORT_YA                        D

    #define        PORT_YB                        C

    #define        PORT_SMP                        D

    #define        SMP_PIN                        7

    #define        QT_DELAY_CYCLES                4

    #define        ROTOR_SLIDER_

    #define        QT_MAX_NUM_ROTORS_SLIDERS        2

    #define        SHARED_YAYB        0

    Note1: The above definitions are available in touch_config.h file. Alternatively, you can define these in your IDE's project options or have them defined in a separate header file.

    Note2:

    Step 4:

    Filling Arrays in the main.c file

    According to the pin availability for the touch sensing, initialize the arrays in the main.c file as below:

    x_line_info_t x_line_info[NUM_X_LINES]= {

        FILL_OUT_X_LINE_INFO(  1,0u ),

        FILL_OUT_X_LINE_INFO(  2,2u ),

        FILL_OUT_X_LINE_INFO(  1,7u ),

    };

    y_line_info_t ya_line_info[NUM_Y_LINES]= {

        FILL_OUT_YA_LINE_INFO(  0u ),

        FILL_OUT_YA_LINE_INFO(  5u ),

    };

    y_line_info_t yb_line_info[NUM_Y_LINES]= {

        FILL_OUT_YB_LINE_INFO(  0u ),

        FILL_OUT_YB_LINE_INFO(  5u ),

    };

    Note:

    Step 5:

    Usage of libraries

    Now, you can use the touch API’s to create, initialize and perform touch sensing. Please refer to the sample applications in section 5.6.11.3 for reference. These sample applications illustrate the usage of the API’s and the sequence of operation

    Based on the application design, the user needs to select the right library variant and the configuration to be used along with the variant. This section illustrates the steps required to select the right QMatrix acquisition method library variant and configuration for your application.

    For your design, you would need the following information to select the correct library variant

    1. Device to be used for the design(only AT32UC3C0512 supported)

    2. The number of touch sensing channels needed by the application – Then identify the Maximum number of channels required for the design that are supported by the library.

    3. Number of X lines to be used in the design

      1. The port on which your design permits to have the X lines

      2. The X lines can be spread on a single port.

    4. Number of Y lines to be used in the design

      1. The port-pins ports on which your design permits to have the Y lines

    5. Do you need support for Rotors and/or Sliders in your design

      1. If yes, how many rotors/sliders would be needed?

      2. Based on a) above, identify the maximum number of rotors sliders that the library supports

    6. Which compiler platform you intend to use to integrate the libraries – IAR or AVR -GCC

    After selecting the right library variant, following steps are to be performed

    1. Define the constants and symbol names required

      1. The next step is to define certain constants and symbols required in the host application files where the touch API is going to be used. These values are derived from the parameters defined in step 2 for your application

      2. The constant/symbol names are as listed in the table below

      3. The constant/symbol definitions can be placed in any of the following:

        1. In the user’s ‘C’ file prior to include touch_api.h in the file

        2. Defined user’s project options.

        3. Modify the defines in a touch_config.h

          Table 7 : List of configuration parameters/macros.

        Symbol / Constant name

        Range of values

        Comments

        _QMATRIX_

        Symbol defined to indicate QMatrix acquisition method is required

        Define this symbol to indicate QMatrix acquisition method is required

        QT_NUM_CHANNELS

        The number of channels the library supports.( Possible values:4,8,16,24,32,64).

        Value should be same as the number of channels that the library supports

        NUM_X_LINES

        The number of X lines the library supports.( Possible values:4,8)

        Value should be same as the number of X lines that the library supports. Refer to library selection guide

        NUM_Y_LINES

        The number of Y lines the library supports.( Possible values:1,2,3,4,8)

        Value should be same as the number of Y lines that the library supports. Refer to library selection guide

        _ROTOR_SLIDER_

        Symbol defined if Rotor and/or slider is required

        Needs to be added in case user needs to configure ROTOR/SLIDER

        Needs to be removed for ALL KEYS configuration

        QT_MAX_NUM_ROTORS_SLIDERS

        Maximum number of rotors/sliders the library supports( possible values:0,2,3,4,8)

        Subject to support for rotors/sliders in the library selected.

        QT_DELAY_CYCLES

        Possible values :1,2,3,4,5,10,25,50

        Please refer to section 5.6.8

        PORT_X_1

        First IO port for configuring the X lines.Any IO port available with the device.

        Drive electrode for touch sensing using QMatrix acquisition

        PORT_YA

        Any IO port available with the device.

        Receive electrode for touch sensing using QMatrix acquisition

        PORT_YB

        Analog Comparator port available for the device.

        Receive electrode for touch sensing using QMatrix acquisition

        PORT_SMP

        Any IO port available with the device.

        Port of the Sampling pin for touch sensing using QMatrix acquisition

        SMP_PIN

        Any IO port available with the device.

        Sampling pin for touch sensing using QMatrix acquisition

        SHARED_YAYB

        Possible Values 0 or 1.

        Value should be 0 if Ya and Yb are not on same port else 1 if they are on same port.

      Once you have selected the right library variant and configuration parameters for the application, follow the steps outlined below to integrate the library variant in your application.

    2. Fill in the arrays x_line_info_t x_line_info[NUM_X_LINES] y_line_info_t ya_line_info[NUM_Y_LINES] and y_line_info_t yb_line_info[NUM_Y_LINES] as given in main.c file.

      Filling Arrays in the main.c file

      According to the pin availability for the touch sensing, initialize the arrays in the main.c file as below:

      x_line_info_t x_line_info[NUM_X_LINES]= {

          FILL_OUT_X_LINE_INFO(  1,0u ),

          FILL_OUT_X_LINE_INFO(  1,2u ),

          FILL_OUT_X_LINE_INFO(  1,7u ),

          FILL_OUT_X_LINE_INFO(  1,15u ),

      };

      First argument of FILL_OUT_X_LINE_INFO should always be 1 as X port is only on one port.Second arguments denotes the pins on that particular port.

      y_line_info_t ya_line_info[NUM_Y_LINES]= {

          FILL_OUT_YA_LINE_INFO(  0u ),

          FILL_OUT_YA_LINE_INFO(  5u ),

      };

      y_line_info_t yb_line_info[NUM_Y_LINES]= {

          FILL_OUT_YB_LINE_INFO(  7u ),

          FILL_OUT_YB_LINE_INFO(  22u ),

      };

      Yb lines are one of the inputs of the Analog Comparators.

    3. Copy the library variant that was selected in step 1 to your project’s working directory or update your project to point to the library selected.

      Include the “touch_api.h” header file and assembler source file from the QTouch library in your application. The touch_api.h can be found in the release package at C:\Program Files\Atmel\Atmel_QTouch_Libraries_5.x\Generic_QTouch_Libraries\include. The assembler files mentioned below could be found at the location C:\Program Files\Atmel\Atmel_QTouch_Libraries_5.x\Generic_QTouch_Libraries\32bit_AVR\UC3\QMatrix\common_files

      1. qm_asm_uc3c_gcc.x in case of  GCC compiler

      2. qm_asm_uc3c_iar.s82 in case of IAR compiler.

    4. Initialize/create and use the touch api’s in your application

      1. In your application, create, initialize and configure the sensors.

        1. The APIs of interest are qt_enable_key/rotor/slider().see sections 5.6.5.2,  5.6.5.3 and 5.6.5.4

      2. configure the global configuration parameters valid for all the sensors in the  library

      3. Provide timing for the QTouch libraries to operate. i,e. the QTouch libraries do not use any timer resources of the microcontroller. The Host application has to provide the required timing and also call the API’s at the appropriate intervals to perform touch sense detect operations

    5. General application notes

      1. The clock, host application and other peripherals needed by the host application needs to be initialized.

      2. The QMatrix acquisition method libraries for 32 Bit devices internally use TIMER0 with channel0 for their operation.

      3. Ensure that there are no conflicts between the resources used by the touch library and the host application

    Devices supported by 32 Bit Qmatrix Acquisition libraries are:

    The following additional resources are used by the QMatrix acquisition method libraries.

    The device has two Analog comparator interfaces ACIFA0 and ACIFA1 .Each interface provides the flexibility to configure two analog comparators ACA and ACB comparators..UC3C has Four Comparators (AC0A , AC1A , AC0B , AC1B), So there are 10 Possible Yb lines as given in table below.

    User has flexibility to configure maximum 8 Yb lines for maximum 64 channel libraries.

    Table 8 : Below table states the Yblines which can be configured.

    Yb LInes of the Four

    Analog Comparators

    Port A Pins

    AC0AN0(AC0A Comparator)

    PA22

    AC0AN1(AC0A Comparator)

    PA27

    AC0BP0(AC0A Comparator)

    PA23

    AC1AN0(AC1A Comparator)

    PA13

    AC1AN1(AC1A Comparator)

    PA07

    AC1BP0(AC1A Comparator)

    PA14

    AC0BN0(AC0B Comparator)

    PA21

    AC0BN1(AC0B Comparator)

    PA29

    AC1BN0(AC1B Comparator)

    PA15

    AC1BN1(AC1B Comparator)

    PA09

    These Yb lines are the negative input pins of the analog comparator.

    Table 9 : To use the library, the below table shows the lines which are externally grounded for Proper Qmatrix operation.

    Positive Input Pins of the Four

    Analog Comparators

    Port A Pins

    AC0AP0(AC0A Comparator)

    PA20

    AC0BP1(AC0B Comparator)

    PA28

    AC1AP0(AC1A Comparator)

    PA12

    AC1BP1(AC1B Comparator)

    PA08

    If only one comparator is used , then the corresponding pin of that comparator is properly externally grounded.Above table shows the Analog comparator usage and the corresponding lines which needs to be grounded.

    The Port pin configurability is provided in the library to select any port for Ya or X lines.The Port for Yb lines is fixed which is PORTA as these lines are inputs of the Analog comparators which are fixed pins of PORTA.

    Table 10 : Port pin configurability.

    X,YA,YB,SMP Configurations

    Ports on UC3C

    PORTA

    PORTB

    PORTC

    PORTD

    X

    Yes

    Yes

    Yes

    Yes

    YA

    Yes

    Yes

    Yes

    Yes

    YB

    Yes(only few pins of PortA can be configured as Yb Lines)

    No

    No

    No

    SMP

    Yes

    Yes

    Yes

    Yes

    The configurability is provided to select X,SMP and YA lines on Same Port ,X,SMP and YB lines on same port.

    Number of X ports should be 1 means the X lines should be connected to a single port.

    Note: YA and YB cannot be on the same port.

    SMP Pin should be less than equal to 19th pin of any Port

    When integrating QMatrix acquisition method libraries, ensure the following

    1. Check that the CLKPR register is available for the selected device. If not remove the CLKPR statements.

    2. Ensure that the configuration for the QMatrix is done in touch_config.h and the arrays of the x_line_info and y_line info are filled as indicated section 5.8.2

    3. MCUCR register is available and if so disable pullups

    4. Check if the timer registers and bit fields used are correct and change them if necessary.

    5. The above settings can be modified by the user by changing the API’s that are available to the user. The API’s include

    6. The host application must provide the current time.

      This information is passed to the library as an argument to the function qt_measure_sensors()”. This is used for time-based library operations such as drift compensation.

    7. The GPIO internal pull-ups must be disabled for all port pins used for touch sensing when calling the library.

      For 8-bit AVR devices, this can be done by

    8. Setting the JTD bit in the “MCUCR” register to disable JTAG Interface in MCU ( if available ). This can be done only when the JTAG lines are in conflict with the desired touch sensing lines

    9. The library must be called often enough to provide a reasonable response time to user touches. The typical time to call the library is from 25 ms to 50 ms.

    10. Care should be taken while using the ADC conversion logic and QMatrix library such that the host application waits for approximately 1msec before actually calling the qt_measure_sensors() API depending upon the ADC clock.

    For 8-bit AVR devices, this can be done by

    The stack requirements for the QTouch library should be accounted for and the stack size adjusted in the user’s project for proper operation of the software when using the IAR IDE. This section lists the stack usage for the different variants of the QTouch and QMatrix acquisition method libraries applicable to the IAR compiler tool chain.

    Note: When using the IAR IDE / compiler tool chain, the map file generated for the application will list total CSTACK & RSTACK requirements. Please adjust the total CSTACK and RSTACK values in the IAR project options to be greater than the values listed in the map file. Refer to section 5.6.11.4 which illustrates how to change the settings in IAR IDE.

    Table 11 : Stack requirements of the QTouch capacitive sensing libraries when using IAR IDE projects

    QTouch Acquisition method Libraries : Stack usage for IAR compiler tool chain

      

    Configuration

    CSTACK size

    RSTACK size

      

    Single port pair - only keys ( 4 / 8 channels )

    0x30

    0x28

      

    Single port pair – keys/ rotors/ sliders (4/8 channel)

    0x40

    0x2C

      

    Two port pairs - only keys keys (16 channel)

    0x50

    0x28

      

    Two port pairs – keys/ rotors/ sliders (16 channel)

    0x60

    0x2C

      

    Table 12 : Stack requirements of the QMatrix capacitive sensing libraries when using IAR IDE projects

    QMatrix Acquisition method Libraries : Stack usage for IAR compiler tool chain

    Number of channels

    Configuration

    CSTACK size

    RSTACK size

    4

    ONLY KEYS

    0x20

    0x20

    4

    KEYS/ROTOR/SLIDER

    0x30

    0x20

    8

    ONLY KEYS

    0x25

    0x20

    8

    KEYS/ROTOR/SLIDER

    0x35

    0x20

    16

    ONLY KEYS

    0x30

    0x20

    16

    KEYS/ROTOR/SLIDER

    0x40

    0x20

    32

    ONLY KEYS

    0x35

    0x25

    32

    KEYS/ROTOR/SLIDER

    0x45

    0x25

    56

    ONLY KEYS

    0x45

    0x25

    56

    KEYS/ROTOR/SLIDER

    0x55

    0x25

    64

    ONLY KEYS

    0x45

    0x25

    64

    KEYS/ROTOR/SLIDER

    0x55

    0x25

    The QTouch library is shipped with various example projects to illustrate the usage of the touch API’s to add touch sensing to an application across various devices

    Sample applications are also provided for the following kits

    1. TS2080A, QT600_ATtiny88_QT8, QT600_ATxmega128a1_QT16 : QTouch Technology evaluation Kits

    2. TS2080B, QT600_ATmega324_QM64 : QMatrix Technology evaluation Kits

    Note: Example projects must be built in the installed folder, and if moved/copied elsewhere then paths must be edited appropriately.

    Each example project for a device can support multiple configurations (i.e a. keys only, b. with rotors and sliders c.16 channel etc…). The configuration sets determine the configuration options for using the library and also the right library variant to link with the project.

    Table 13 : The configuration sets for IAR IDE are named according to the convention listed below

    Configuration set for IAR IDE

    Naming convention :   <vP>g<Q>_<CH>qt_k_<RS>rs

    Field Name

    Values

    Comments

    vP

    v1, v3, xmega, uc3a, uc3b, uc3c

    VersionP of the core AVR device supported by this library variant

    Q

    1 to 6

    GroupQ of the core AVR device supported by this library variant

    CH

    4, 8, 12, 16, 32

    Total number of channels supported by each library.

    RS

    1, 2, 3, 4, 8

    Total number of rotors / sliders supported for the respective channel counts mentioned in previous row.

    Table 14 : The configuration sets for AVR Studio IDE are named according to the convention listed below

    Configuration set for AVR Studio IDE

    <avrP>g<Q>_<CH>qt_k_<RS>rs

    Field Name

    Values

    Comments

    avrP

    avr25,  avr4, avr 51, avr5, xmega, uc3a, uc3b, uc3c

    VersionP of the core AVR device supported by this library variant

    Q

    1 to 6

    GroupQ of the core AVR device supported by this library variant

    CH

    4, 8, 12, 16, 32

    Total number of channels supported by each library.

    RS

    1, 2, 3, 4, 8

    Total number of rotors / sliders supported for the respective channel counts mentioned in previous row.

    Depending on your need, you need to select the right configuration required and build the project.

    Figure 5‑11: Selecting the right configuration in the QTouch acquisition method example applications in IAR –IDE

    Figure 5‑12 : Selecting the right configuration in QTouch acquisition method example applications in AVR-6 IDE

    The configuration parameters required for the library are specified in the touch_config.h file of the examples under the custom user configuration section. Please refer to the example projects provided with the QTouch libraries release for more information. The mandatory constants to be defined are as listed below .

    Table 14 : The mandatory constants to be defined are as listed below .

    Symbol / Constant name

    Range of values

    Comments

    _QTOUCH_

    This macro has to be defined in order to use QTouch libraries.

     

    SNS & SNSK

    Section 5.7.1.5 provides details on the range of values allowed.

    To be used if only single port pair is needed for the design

    SNS1 – SNSK1 & SNS2 – SNSK2

    Section 5.7.1.5.2 has details on the range of values allowed

    To be used if two port pairs are needed for the design

    QT_NUM_CHANNELS

    4, 8, 12, 16 for tinyAVR, megaAVR and XMEGA device libraries and 8, 16, 32 for UC3 device libraries.

     

    _ROTOR_SLIDER_

    Rotor / slider can be added to the design, if this symbol is defined

    A library with rotor / slider functionality already available needs to be selected if this macro is to be enabled

    _DEBUG_INTERFACE_

    The debug interface code in the example application will be enabled if this macro is enabled.

    This will enable the application to output QTouch measurement values to GPIO pins, which can be used by a USB bridge to view the output on Hawkeye or QTouch Studio. This feature is currently supported by EVK/TS 2080A and QT600 boards.

    QT_DELAY_CYCLES

    1 to 255

    Please refer to section

    QTOUCH_STUDIO_MASKS

    This macro needs to be defined if QTouch Studio Pin Configurator Wizard.is used to generate the SNS and SNSK masks.

    Please refer to section 5.8.1

    _STATIC_PORT_PIN_CONF_

    This macro needs to be defined only in case of 4 and 8 channel libraries with interport configuration and pin configurability.

    Please refer to section 5.8.1

    Figure 5‑15 : Specifying the QTouch acquisition method library configuration parameters for QTouch example projects

    The QMatrix acquisition method libraries include example projects for some of the supported devices. Example projects for both IAR IDE and AVR Studio IDE along with example applications are provided for select devices using the QMatrix acquisition libraries. These sample applications demonstrate the usage of the touch API’s to add touch sensing to an application. Refer to the library selection guide for details on the example projects and sample applications supported for the release.

    The EVK2080 and QT600 applications provide output debug information on standard GPIO pins through the USB Bridge IC to PC software for display by AVR QTouch Studio. Similarly for ATMEL devices that are not supported through EVK or QT600 kits, the output measurement values can be viewed through AVR QTouch Studio using the same QDebug protocol and QT600 USB bridge.

    If a QT600 bridge is not available, please refer to section 5.6.11.6.3 for more information on observing the output touch measurement data without the use of a USB bridge or AVR QTouch Studio.