diff --git a/bsp/cypress/libraries/HAL_Drivers/drv_pwm.c b/bsp/cypress/libraries/HAL_Drivers/drv_pwm.c index 5bc94318e0..28153d08af 100644 --- a/bsp/cypress/libraries/HAL_Drivers/drv_pwm.c +++ b/bsp/cypress/libraries/HAL_Drivers/drv_pwm.c @@ -15,7 +15,7 @@ #include "drv_gpio.h" //#define DRV_DEBUG -#define LOG_TAG "drv.pwm" +#define LOG_TAG "drv.pwm" #include struct rt_device_pwm pwm_device; @@ -29,51 +29,37 @@ struct ifx_pwm rt_uint8_t gpio; }; -enum -{ - #ifdef BSP_USING_PWM0 - PWM0_INDEX, - #endif -}; - static struct ifx_pwm ifx_pwm_obj[] = { - #ifdef BSP_USING_PWM0 - PWM0_CONFIG, - #endif +#ifdef BSP_USING_PWM0_PORT13 + PWM0_CH3_PORT13_CONFIG, +#endif + +#ifdef BSP_USING_PWM0_PORT2 + PWM0_CH7_PORT2_CONFIG, +#endif + +#ifdef BSP_USING_PWM0_PORT5 + PWM0_CH7_PORT5_CONFIG, +#endif + +#ifdef BSP_USING_PWM0_PORT7 + PWM0_CH7_PORT7_CONFIG, +#endif + +#ifdef BSP_USING_PWM0_PORT9 + PWM0_CH7_PORT9_CONFIG, +#endif + +#ifdef BSP_USING_PWM0_PORT10 + PWM0_CH7_PORT10_CONFIG, +#endif + +#ifdef BSP_USING_PWM0_PORT12 + PWM0_CH7_PORT12_CONFIG, +#endif }; -static void pwm_get_pin_number(void) -{ - #ifdef BSP_USING_PWM0_CH7 - #ifdef BSP_USING_PWM0_PORT2 - ifx_pwm_obj[PWM0_INDEX].gpio = GET_PIN(2, 2); - #endif - #ifdef BSP_USING_PWM0_PORT5 - ifx_pwm_obj[PWM0_INDEX].gpio = GET_PIN(5, 6); - #endif - #ifdef BSP_USING_PWM0_PORT7 - ifx_pwm_obj[PWM0_INDEX].gpio = GET_PIN(7, 7); - #endif - #ifdef BSP_USING_PWM0_PORT9 - ifx_pwm_obj[PWM0_INDEX].gpio = GET_PIN(9, 4); - #endif - #ifdef BSP_USING_PWM0_PORT10 - ifx_pwm_obj[PWM0_INDEX].gpio = GET_PIN(10, 2); - #endif - #ifdef BSP_USING_PWM0_PORT12 - ifx_pwm_obj[PWM0_INDEX].gpio = GET_PIN(12, 6); - #endif - #endif -} - -static void pwm_get_channel(void) -{ - #ifdef BSP_USING_PWM0_CH7 - ifx_pwm_obj[PWM0_INDEX].channel = 7; - #endif -} - static rt_err_t drv_pwm_enable(cyhal_pwm_t *htim, struct rt_pwm_configuration *configuration, rt_bool_t enable) { /* get the value of channel */ @@ -83,17 +69,27 @@ static rt_err_t drv_pwm_enable(cyhal_pwm_t *htim, struct rt_pwm_configuration *c { if (!enable) { - if (channel == 7) + if (channel == 3) { - cyhal_pwm_stop(htim); + htim->tcpwm.resource.channel_num = channel; } + else if (channel == 7) + { + htim->tcpwm.resource.channel_num = channel; + } + cyhal_pwm_stop(htim); } else { - if (channel == 7) + if (channel == 3) { - cyhal_pwm_start(htim); + htim->tcpwm.resource.channel_num = channel; } + else if (channel == 7) + { + htim->tcpwm.resource.channel_num = channel; + } + cyhal_pwm_start(htim); } } @@ -107,6 +103,8 @@ static rt_err_t drv_pwm_set(cyhal_pwm_t *htim, struct rt_pwm_configuration *conf tim_clock = (rt_uint32_t)(htim->tcpwm.clock_hz); + htim->tcpwm.resource.channel_num = configuration->channel; + period = (unsigned long long)configuration->period / 1000ULL; pulse = (unsigned long long)configuration->pulse / 1000ULL; @@ -136,33 +134,30 @@ static rt_err_t drv_pwm_control(struct rt_device_pwm *device, int cmd, void *arg switch (cmd) { - case PWMN_CMD_ENABLE: - configuration->complementary = RT_TRUE; + case PWMN_CMD_ENABLE: + configuration->complementary = RT_TRUE; - case PWM_CMD_ENABLE: - return drv_pwm_enable(htim, configuration, RT_TRUE); + case PWM_CMD_ENABLE: + return drv_pwm_enable(htim, configuration, RT_TRUE); - case PWMN_CMD_DISABLE: - configuration->complementary = RT_FALSE; + case PWMN_CMD_DISABLE: + configuration->complementary = RT_FALSE; - case PWM_CMD_DISABLE: - return drv_pwm_enable(htim, configuration, RT_FALSE); + case PWM_CMD_DISABLE: + return drv_pwm_enable(htim, configuration, RT_FALSE); - case PWM_CMD_SET: - return drv_pwm_set(htim, configuration); + case PWM_CMD_SET: + return drv_pwm_set(htim, configuration); - case PWM_CMD_GET: - return drv_pwm_get(htim, configuration); + case PWM_CMD_GET: + return drv_pwm_get(htim, configuration); - default: - return RT_EINVAL; + default: + return RT_EINVAL; } } -static struct rt_pwm_ops drv_ops = -{ - drv_pwm_control -}; +static struct rt_pwm_ops drv_ops = {drv_pwm_control}; static rt_err_t ifx_hw_pwm_init(struct ifx_pwm *device) { @@ -170,6 +165,16 @@ static rt_err_t ifx_hw_pwm_init(struct ifx_pwm *device) RT_ASSERT(device != RT_NULL); + /* config pwm channel */ + if (device->channel == 0x03) + { + if (cyhal_pwm_init_adv(device->pwm_obj, device->gpio, NC, CYHAL_PWM_LEFT_ALIGN, true, 0u, false, RT_NULL) != RT_EOK) + { + LOG_E("%s channel3 config failed", device->name); + result = -RT_ERROR; + goto __exit; + } + } /* config pwm channel */ if (device->channel == 0x07) { @@ -180,7 +185,6 @@ static rt_err_t ifx_hw_pwm_init(struct ifx_pwm *device) goto __exit; } } - __exit: return result; } @@ -190,9 +194,6 @@ static int rt_hw_pwm_init(void) int i; int result = RT_EOK; - pwm_get_pin_number(); - pwm_get_channel(); - for (i = 0; i < sizeof(ifx_pwm_obj) / sizeof(ifx_pwm_obj[0]); i++) { ifx_pwm_obj[i].pwm_obj = rt_malloc(sizeof(cyhal_pwm_t)); @@ -224,8 +225,8 @@ __exit: } INIT_BOARD_EXPORT(rt_hw_pwm_init); -#define PWM_DEV_NAME "pwm0" -#define PWM_DEV_CHANNEL 7 +#define PWM_DEV_NAME "pwm0" +#define PWM_DEV_CHANNEL 7 struct rt_device_pwm *pwm_dev; @@ -233,7 +234,7 @@ static int pwm_sample(int argc, char *argv[]) { rt_uint32_t period, pulse, dir; - period = 500000; + period = 1 * 1000 * 1000; dir = 1; pulse = 0; @@ -248,17 +249,19 @@ static int pwm_sample(int argc, char *argv[]) rt_pwm_set(pwm_dev, PWM_DEV_CHANNEL, period, pulse); rt_pwm_enable(pwm_dev, PWM_DEV_CHANNEL); + rt_kprintf("Now PWM[%s] Channel[%d] Period[%d] Pulse[%d]\n", PWM_DEV_NAME, PWM_DEV_CHANNEL, period, pulse); + while (1) { rt_thread_mdelay(50); if (dir) { - pulse += 5000; + pulse += 100000; } else { - pulse -= 5000; + pulse -= 100000; } if (pulse >= period) diff --git a/bsp/cypress/libraries/HAL_Drivers/drv_pwm.h b/bsp/cypress/libraries/HAL_Drivers/drv_pwm.h index e9319d7521..8e2e235d3e 100644 --- a/bsp/cypress/libraries/HAL_Drivers/drv_pwm.h +++ b/bsp/cypress/libraries/HAL_Drivers/drv_pwm.h @@ -5,7 +5,7 @@ * * Change Logs: * Date Author Notes - * 2022-03-10 leo first version + * 2022-07-13 Rbb666 first version */ #ifndef __PWM_CONFIG_H__ @@ -15,20 +15,75 @@ #include #ifdef __cplusplus -extern "C" { +extern "C" +{ #endif -#define MAX_PERIOD 65535 +#define MAX_PERIOD 65535 #ifdef BSP_USING_PWM0 -#ifndef PWM0_CONFIG -#define PWM0_CONFIG \ - { \ - .name = "pwm0", \ - .channel = 0, \ - .gpio = 0, \ +#ifndef PWM0_CH3_PORT13_CONFIG +#define PWM0_CH3_PORT13_CONFIG \ + { \ + .name = "pwm0", \ + .channel = 3, \ + .gpio = GET_PIN(13, 7), \ } -#endif /* PWM0_CONFIG */ +#endif /* PWM0_CH7_PORT2_CONFIG */ + +#ifndef PWM0_CH7_PORT2_CONFIG +#define PWM0_CH7_PORT2_CONFIG \ + { \ + .name = "pwm0", \ + .channel = 7, \ + .gpio = GET_PIN(2, 2), \ + } +#endif /* PWM0_CH7_PORT2_CONFIG */ + +#ifndef PWM0_CH7_PORT5_CONFIG +#define PWM0_CH7_PORT5_CONFIG \ + { \ + .name = "pwm0", \ + .channel = 7, \ + .gpio = GET_PIN(5, 6), \ + } +#endif /* PWM0_CH7_PORT5_CONFIG */ + +#ifndef PWM0_CH7_PORT7_CONFIG +#define PWM0_CH7_PORT7_CONFIG \ + { \ + .name = "pwm0", \ + .channel = 7, \ + .gpio = GET_PIN(7, 7), \ + } +#endif /* PWM0_CH7_PORT7_CONFIG */ + +#ifndef PWM0_CH7_PORT9_CONFIG +#define PWM0_CH7_PORT9_CONFIG \ + { \ + .name = "pwm0", \ + .channel = 7, \ + .gpio = GET_PIN(9, 4), \ + } +#endif /* PWM0_CH7_PORT9_CONFIG */ + +#ifndef PWM0_CH7_PORT10_CONFIG +#define PWM0_CH7_PORT10_CONFIG \ + { \ + .name = "pwm0", \ + .channel = 7, \ + .gpio = GET_PIN(10, 2), \ + } +#endif /* PWM0_CH7_PORT10_CONFIG */ + +#ifndef PWM0_CH7_PORT12_CONFIG +#define PWM0_CH7_PORT12_CONFIG \ + { \ + .name = "pwm0", \ + .channel = 7, \ + .gpio = GET_PIN(12, 6), \ + } +#endif /* PWM0_CH7_PORT12_CONFIG */ #endif /* BSP_USING_PWM0 */ #ifdef __cplusplus diff --git a/bsp/cypress/libraries/HAL_Drivers/drv_uart.c b/bsp/cypress/libraries/HAL_Drivers/drv_uart.c index d3850e36b4..df3d5eca44 100644 --- a/bsp/cypress/libraries/HAL_Drivers/drv_uart.c +++ b/bsp/cypress/libraries/HAL_Drivers/drv_uart.c @@ -247,7 +247,7 @@ static int ifx_uarths_getc(struct rt_serial_device *serial) ch = -1; - if (RT_EOK == cyhal_uart_getc(uart->config->uart_obj, (uint8_t *)&read_data, 1)) + if (RT_EOK == cyhal_uart_getc(uart->config->uart_obj, (uint8_t *)&read_data, 10)) { ch = read_data & 0xff; } diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/SConscript b/bsp/cypress/libraries/IFX_PSOC6_HAL/SConscript index b69af2e219..3af65b9c2a 100644 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/SConscript +++ b/bsp/cypress/libraries/IFX_PSOC6_HAL/SConscript @@ -103,6 +103,20 @@ if GetDepend('BSP_USING_ON_CHIP_FLASH'): src += ['mtb-pdl-cat1/drivers/source/cy_flash.c'] src += ['mtb-hal-cat1/source/cyhal_flash.c'] +if GetDepend(['BSP_USING_SLIDER']): + src += ['capsense/cy_capsense_control.c'] + src += ['capsense/cy_capsense_sensing.c'] + src += ['capsense/cy_capsense_sensing_v2.c'] + src += ['capsense/cy_capsense_csx_v2.c'] + src += ['capsense/cy_capsense_csd_v2.c'] + src += ['capsense/cy_capsense_processing.c'] + src += ['capsense/cy_capsense_tuner.c'] + src += ['capsense/cy_capsense_structure.c'] + src += ['capsense/cy_capsense_centroid.c'] + src += ['capsense/cy_capsense_filter.c'] + src += ['mtb-pdl-cat1/drivers/source/cy_csd.c'] + src += ['TARGET_CY8CKIT-062S2-43012/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_capsense.c'] + if GetDepend(['RT_USING_WDT']): src += ['mtb-pdl-cat1/drivers/source/cy_wdt.c'] src += ['mtb-hal-cat1/source/cyhal_wdt.c'] diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/api_reference_manual.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/api_reference_manual.html deleted file mode 100644 index fd26c4877f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/api_reference_manual.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Redirect to API Reference Manual main page after 0 seconds - - - - -

- If the automatic redirection is failing, click the following link to open API Reference Manual. -

- - \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/bc_s.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/bc_s.png deleted file mode 100644 index 224b29aa98..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/bc_s.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/bdwn.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/bdwn.png deleted file mode 100644 index 940a0b9504..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/bdwn.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/board.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/board.png deleted file mode 100644 index 753f8fe3a5..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/board.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/closed.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/closed.png deleted file mode 100644 index 98cc2c909d..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/closed.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doc.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doc.png deleted file mode 100644 index 17edabff95..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doc.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doxygen.svg b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doxygen.svg deleted file mode 100644 index d42dad52d5..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doxygen.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doxygen_style.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doxygen_style.css deleted file mode 100644 index b4893b13c0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/doxygen_style.css +++ /dev/null @@ -1,1583 +0,0 @@ -/* The standard CSS for doxygen 1.8.11 */ - -body, table, div, p, dl { - font: 400 14px/22px Roboto,sans-serif; -} - -/* @group Heading Levels */ - -h1.groupheader { - font-size: 150%; -} - -.title { - font: 400 14px/28px Roboto,sans-serif; - font-size: 150%; - font-weight: bold; - margin: 10px 2px; -} - -h2.groupheader { - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -h3.groupheader { - font-size: 100%; -} - -h1, h2, h3, h4, h5, h6 { - -webkit-transition: text-shadow 0.5s linear; - -moz-transition: text-shadow 0.5s linear; - -ms-transition: text-shadow 0.5s linear; - -o-transition: text-shadow 0.5s linear; - transition: text-shadow 0.5s linear; - margin-right: 15px; -} - -h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { - text-shadow: 0 0 15px cyan; -} - -dt { - font-weight: bold; -} - -div.multicol { - -moz-column-gap: 1em; - -webkit-column-gap: 1em; - -moz-column-count: 3; - -webkit-column-count: 3; -} - -p.startli, p.startdd { - margin-top: 2px; -} - -p.starttd { - margin-top: 0px; -} - -p.endli { - margin-bottom: 0px; -} - -p.enddd { - margin-bottom: 4px; -} - -p.endtd { - margin-bottom: 2px; -} - -/* @end */ - -caption { - font-weight: bold; -} - -span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; -} - -div.qindex, div.navpath { - width: 100%; - line-height: 140%; -} - -div.navtab { - margin-right: 15px; -} - -/* @group Link Styling */ - -a { - color: #3D578C; - font-weight: normal; - text-decoration: none; -} - -.contents a:visited { - color: #4665A2; -} - -a:hover { - text-decoration: underline; -} - -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #ffffff; - border: 1px double #869DCA; -} - -.contents a.qindexHL:visited { - color: #ffffff; -} - -a.el { - font-weight: bold; -} - -a.elRef { -} - -a.code, a.code:visited, a.line, a.line:visited { - color: #4665A2; -} - -a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { - color: #4665A2; -} - -/* @end */ - -dl.el { - margin-left: -1cm; -} - -pre.fragment { - border: 1px solid #C4CFE5; - background-color: #FBFCFD; - padding: 4px 6px; - margin: 4px 8px 4px 2px; - overflow: auto; - word-wrap: break-word; - font-size: 9pt; - line-height: 125%; - font-family: monospace, fixed; - font-size: 105%; -} - -div.fragment { - padding: 4px 6px; - margin: 4px 8px 4px 2px; - background-color: #FBFCFD; - border: 1px solid #C4CFE5; -} - -div.line { - font-family: monospace, fixed; - font-size: 13px; - min-height: 13px; - line-height: 1.0; - text-wrap: unrestricted; - white-space: -moz-pre-wrap; /* Moz */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - white-space: pre-wrap; /* CSS3 */ - word-wrap: break-word; /* IE 5.5+ */ - text-indent: -53px; - padding-left: 53px; - padding-bottom: 0px; - margin: 0px; - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -div.line:after { - content:"\000A"; - white-space: pre; -} - -div.line.glow { - background-color: cyan; - box-shadow: 0 0 10px cyan; -} - - -span.lineno { - padding-right: 4px; - text-align: right; - border-right: 2px solid #0F0; - background-color: #E8E8E8; - white-space: pre; -} -span.lineno a { - background-color: #D8D8D8; -} - -span.lineno a:hover { - background-color: #C8C8C8; -} - -div.ah, span.ah { - background-color: black; - font-weight: bold; - color: #ffffff; - margin-bottom: 3px; - margin-top: 3px; - padding: 0.2em; - border: solid thin #333; - border-radius: 0.5em; - -webkit-border-radius: .5em; - -moz-border-radius: .5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); - background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); -} - -div.classindex ul { - list-style: none; - padding-left: 0; -} - -div.classindex span.ai { - display: inline-block; -} - -div.groupHeader { - margin-left: 16px; - margin-top: 12px; - font-weight: bold; -} - -div.groupText { - margin-left: 16px; - font-style: italic; -} - -body { - background-color: white; - color: black; - margin: 0; -} - -div.contents { - margin-top: 10px; - margin-left: 12px; - margin-right: 8px; -} - -td.indexkey { - background-color: #EBEFF6; - font-weight: bold; - border: 1px solid #C4CFE5; - margin: 2px 0px 2px 0; - padding: 2px 10px; - white-space: nowrap; - vertical-align: top; -} - -td.indexvalue { - background-color: #EBEFF6; - border: 1px solid #C4CFE5; - padding: 2px 10px; - margin: 2px 0px; -} - -tr.memlist { - background-color: #EEF1F7; -} - -p.formulaDsp { - text-align: center; -} - -img.formulaDsp { - -} - -img.formulaInl { - vertical-align: middle; -} - -div.center { - text-align: center; - margin-top: 0px; - margin-bottom: 0px; - padding: 0px; -} - -div.center img { - border: 0px; -} - -address.footer { - text-align: right; - padding-right: 12px; -} - -img.footer { - border: 0px; - vertical-align: middle; -} - -/* @group Code Colorization */ - -span.keyword { - color: #008000 -} - -span.keywordtype { - color: #604020 -} - -span.keywordflow { - color: #e08000 -} - -span.comment { - color: #800000 -} - -span.preprocessor { - color: #806020 -} - -span.stringliteral { - color: #002080 -} - -span.charliteral { - color: #008080 -} - -span.vhdldigit { - color: #ff00ff -} - -span.vhdlchar { - color: #000000 -} - -span.vhdlkeyword { - color: #700070 -} - -span.vhdllogic { - color: #ff0000 -} - -blockquote { - background-color: #F7F8FB; - border-left: 2px solid #9CAFD4; - margin: 0 24px 0 4px; - padding: 0 12px 0 16px; -} - -/* @end */ - -/* -.search { - color: #003399; - font-weight: bold; -} - -form.search { - margin-bottom: 0px; - margin-top: 0px; -} - -input.search { - font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #e8eef2; -} -*/ - -td.tiny { - font-size: 75%; -} - -.dirtab { - padding: 4px; - border-collapse: collapse; - border: 1px solid #A3B4D7; -} - -th.dirtab { - background: #EBEFF6; - font-weight: bold; -} - -hr { - height: 0px; - border: none; - border-top: 1px solid #4A6AAA; -} - -hr.footer { - height: 1px; -} - -/* @group Member Descriptions */ - -table.memberdecls { - border-spacing: 0px; - padding: 0px; -} - -.memberdecls td, .fieldtable tr { - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -.memberdecls td.glow, .fieldtable tr.glow { - background-color: cyan; - box-shadow: 0 0 15px cyan; -} - -.mdescLeft, .mdescRight, -.memItemLeft, .memItemRight, -.memTemplItemLeft, .memTemplItemRight, .memTemplParams { - background-color: #F9FAFC; - border: none; - margin: 4px; - padding: 1px 0 0 8px; -} - -.mdescLeft, .mdescRight { - padding: 0px 8px 4px 8px; - color: #555; -} - -.memSeparator { - border-bottom: 1px solid #DEE4F0; - line-height: 1px; - margin: 0px; - padding: 0px; -} - -.memItemLeft, .memTemplItemLeft { - white-space: nowrap; -} - -.memItemRight { - width: 100%; -} - -.memTemplParams { - color: #4665A2; - white-space: nowrap; - font-size: 80%; -} - -/* @end */ - -/* @group Member Details */ - -/* Styles for detailed member documentation */ - -.memtemplate { - font-size: 80%; - color: #4665A2; - font-weight: normal; - margin-left: 9px; -} - -.memnav { - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} - -.mempage { - width: 100%; -} - -.memitem { - padding: 0; - margin-bottom: 10px; - margin-right: 5px; - -webkit-transition: box-shadow 0.5s linear; - -moz-transition: box-shadow 0.5s linear; - -ms-transition: box-shadow 0.5s linear; - -o-transition: box-shadow 0.5s linear; - transition: box-shadow 0.5s linear; - display: table !important; - width: 100%; -} - -.memitem.glow { - box-shadow: 0 0 15px cyan; -} - -.memname { - font-weight: bold; - margin-left: 6px; -} - -.memname td { - vertical-align: bottom; -} - -.memproto, dl.reflist dt { - border-top: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 0px 6px 0px; - color: #253555; - font-weight: bold; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - /* opera specific markup */ - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - border-top-right-radius: 4px; - border-top-left-radius: 4px; - /* firefox specific markup */ - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - -moz-border-radius-topright: 4px; - -moz-border-radius-topleft: 4px; - /* webkit specific markup */ - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - -webkit-border-top-right-radius: 4px; - -webkit-border-top-left-radius: 4px; - -} - -.memdoc, dl.reflist dd { - border-bottom: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 10px 2px 10px; - background-color: #FBFCFD; - border-top-width: 0; - background-image:url('nav_g.png'); - background-repeat:repeat-x; - background-color: #FFFFFF; - /* opera specific markup */ - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - /* firefox specific markup */ - -moz-border-radius-bottomleft: 4px; - -moz-border-radius-bottomright: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - /* webkit specific markup */ - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -dl.reflist dt { - padding: 5px; -} - -dl.reflist dd { - margin: 0px 0px 10px 0px; - padding: 5px; -} - -.paramkey { - text-align: right; -} - -.paramtype { - white-space: nowrap; -} - -.paramname { - color: #602020; - white-space: nowrap; -} -.paramname em { - font-style: normal; -} -.paramname code { - line-height: 14px; -} - -.params, .retval, .exception, .tparams { - margin-left: 0px; - padding-left: 0px; -} - -.params .paramname, .retval .paramname { - font-weight: bold; - vertical-align: top; -} - -.params .paramtype { - font-style: italic; - vertical-align: top; -} - -.params .paramdir { - font-family: "courier new",courier,monospace; - vertical-align: top; -} - -table.mlabels { - border-spacing: 0px; -} - -td.mlabels-left { - width: 100%; - padding: 0px; -} - -td.mlabels-right { - vertical-align: bottom; - padding: 0px; - white-space: nowrap; -} - -span.mlabels { - margin-left: 8px; -} - -span.mlabel { - background-color: #728DC1; - border-top:1px solid #5373B4; - border-left:1px solid #5373B4; - border-right:1px solid #C4CFE5; - border-bottom:1px solid #C4CFE5; - text-shadow: none; - color: white; - margin-right: 4px; - padding: 2px 3px; - border-radius: 3px; - font-size: 7pt; - white-space: nowrap; - vertical-align: middle; -} - - - -/* @end */ - -/* these are for tree view inside a (index) page */ - -div.directory { - margin: 10px 0px; - border-top: 1px solid #9CAFD4; - border-bottom: 1px solid #9CAFD4; - width: 100%; -} - -.directory table { - border-collapse:collapse; -} - -.directory td { - margin: 0px; - padding: 0px; - vertical-align: top; -} - -.directory td.entry { - white-space: nowrap; - padding-right: 6px; - padding-top: 3px; -} - -.directory td.entry a { - outline:none; -} - -.directory td.entry a img { - border: none; -} - -.directory td.desc { - width: 100%; - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - border-left: 1px solid rgba(0,0,0,0.05); -} - -.directory tr.even { - padding-left: 6px; - background-color: #F7F8FB; -} - -.directory img { - vertical-align: -30%; -} - -.directory .levels { - white-space: nowrap; - width: 100%; - text-align: right; - font-size: 9pt; -} - -.directory .levels span { - cursor: pointer; - padding-left: 2px; - padding-right: 2px; - color: #3D578C; -} - -.arrow { - color: #9CAFD4; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: pointer; - font-size: 80%; - display: inline-block; - width: 16px; - height: 22px; -} - -.icon { - font-family: Arial, Helvetica; - font-weight: bold; - font-size: 12px; - height: 14px; - width: 16px; - display: inline-block; - background-color: #728DC1; - color: white; - text-align: center; - border-radius: 4px; - margin-left: 2px; - margin-right: 2px; -} - -.icona { - width: 24px; - height: 22px; - display: inline-block; -} - -.iconfopen { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderopen.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.iconfclosed { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderclosed.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.icondoc { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('doc.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -table.directory { - font: 400 14px Roboto,sans-serif; -} - -/* @end */ - -div.dynheader { - margin-top: 8px; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -address { - font-style: normal; - color: #2A3D61; -} - -table.doxtable caption { - caption-side: top; -} - -table.doxtable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.doxtable td, table.doxtable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.doxtable th { - background-color: #A8A8A8; - color: #000; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -table.fieldtable { - /*width: 100%;*/ - margin-bottom: 10px; - border: 1px solid #A8B8D9; - border-spacing: 0px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); - box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); -} - -.fieldtable td, .fieldtable th { - padding: 3px 7px 2px; -} - -.fieldtable td.fieldtype, .fieldtable td.fieldname { - white-space: nowrap; - border-right: 1px solid #A8B8D9; - border-bottom: 1px solid #A8B8D9; - vertical-align: top; -} - -.fieldtable td.fieldname { - padding-top: 3px; -} - -.fieldtable td.fielddoc { - border-bottom: 1px solid #A8B8D9; - /*width: 100%;*/ -} - -.fieldtable td.fielddoc p:first-child { - margin-top: 0px; -} - -.fieldtable td.fielddoc p:last-child { - margin-bottom: 2px; -} - -.fieldtable tr:last-child td { - border-bottom: none; -} - -.fieldtable th { - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - font-size: 90%; - color: #253555; - padding-bottom: 4px; - padding-top: 5px; - text-align:left; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom: 1px solid #A8B8D9; -} - - -.tabsearch { - top: 0px; - left: 10px; - height: 36px; - background-image: url('tab_b.png'); - z-index: 101; - overflow: hidden; - font-size: 13px; -} - -.navpath ul -{ - font-size: 11px; - background-image:url('tab_b.png'); - background-repeat:repeat-x; - background-position: 0 -5px; - height:30px; - line-height:30px; - color:#8AA0CC; - border:solid 1px #C2CDE4; - overflow:hidden; - margin:0px; - padding:0px; -} - -.navpath li -{ - list-style-type:none; - float:left; - padding-left:10px; - padding-right:15px; - background-image:url('bc_s.png'); - background-repeat:no-repeat; - background-position:right; - color:#364D7C; -} - -.navpath li.navelem a -{ - height:32px; - display:block; - text-decoration: none; - outline: none; - color: #283A5D; - font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - text-decoration: none; -} - -.navpath li.navelem a:hover -{ - color:#6884BD; -} - -.navpath li.footer -{ - list-style-type:none; - float:right; - padding-left:10px; - padding-right:15px; - background-image:none; - background-repeat:no-repeat; - background-position:right; - color:#364D7C; - font-size: 8pt; -} - - -div.summary -{ - float: right; - font-size: 8pt; - padding-right: 5px; - width: 50%; - text-align: right; -} - -div.summary a -{ - white-space: nowrap; -} - -table.classindex -{ - margin: 10px; - white-space: nowrap; - margin-left: 3%; - margin-right: 3%; - width: 94%; - border: 0; - border-spacing: 0; - padding: 0; -} - -div.ingroups -{ - font-size: 8pt; - width: 50%; - text-align: left; -} - -div.ingroups a -{ - white-space: nowrap; -} - -div.header -{ - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - margin: 0px; - border-bottom: 1px solid #C4CFE5; -} - -div.headertitle -{ - padding: 5px 5px 5px 10px; -} - -dl -{ - padding: 0 0 0 10px; -} - -/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ -dl.section -{ - margin-left: 0px; - padding-left: 0px; -} - -dl.note -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #D0C000; -} - -dl.warning, dl.attention -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #FF0000; -} - -dl.pre, dl.post, dl.invariant -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00D000; -} - -dl.deprecated -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #505050; -} - -dl.todo -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00C0E0; -} - -dl.test -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #3030E0; -} - -dl.bug -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #C08050; -} - -dl.section dd { - margin-bottom: 6px; -} - - -#projectlogo -{ - text-align: center; - vertical-align: bottom; - border-collapse: separate; -} - -#projectlogo img -{ - border: 0px none; -} - -#projectalign -{ - vertical-align: middle; -} - -#projectname -{ - font: 250% sans-serif, Tahoma, Ariel; - margin: 0px; - padding: 2px 0px 2px 25px; -} - -#projectbrief -{ - font: 120% Tahoma, Arial,sans-serif; - color: grey; - margin: 0 0 0 26px; - padding: 0; - - height: 0px; -} - -#projectnumber -{ - font: 40% sans-serif, Tahoma, Ariel; - color: #606060; -} - -#titlearea -{ - padding: 0px; - margin: 0px; - width: 100%; - border-bottom: 1px solid #5373B4; -} - -.image -{ - text-align: center; -} - -.dotgraph -{ - text-align: center; -} - -.mscgraph -{ - text-align: center; -} - -.diagraph -{ - text-align: center; -} - -.caption -{ - font-weight: bold; -} - -div.zoom -{ - border: 1px solid #90A5CE; -} - -dl.citelist { - margin-bottom:50px; -} - -dl.citelist dt { - color:#334975; - float:left; - font-weight:bold; - margin-right:10px; - padding:5px; -} - -dl.citelist dd { - margin:2px 0; - padding:5px 0; -} - -div.toc { - padding: 14px 25px; - background-color: #F4F6FA; - border: 1px solid #D8DFEE; - border-radius: 7px 7px 7px 7px; - float: right; - height: auto; - margin: 0 8px 10px 10px; - width: 200px; -} - -div.toc li { - background: url("bdwn.png") no-repeat scroll 0 5px transparent; - font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; - margin-top: 5px; - padding-left: 10px; - padding-top: 2px; -} - -div.toc h3 { - font: bold 12px/1.2 Arial,FreeSans,sans-serif; - color: #4665A2; - border-bottom: 0 none; - margin: 0; -} - -div.toc ul { - list-style: none outside none; - border: medium none; - padding: 0px; -} - -div.toc li.level1 { - margin-left: 0px; -} - -div.toc li.level2 { - margin-left: 15px; -} - -div.toc li.level3 { - margin-left: 30px; -} - -div.toc li.level4 { - margin-left: 45px; -} - -.inherit_header { - font-weight: bold; - color: gray; - cursor: pointer; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.inherit_header td { - padding: 6px 0px 2px 5px; -} - -.inherit { - display: none; -} - -tr.heading h2 { - margin-top: 12px; - margin-bottom: 4px; -} - -/* tooltip related style info */ - -.ttc { - position: absolute; - display: none; -} - -#powerTip { - cursor: default; - white-space: nowrap; - background-color: white; - border: 1px solid gray; - border-radius: 4px 4px 4px 4px; - box-shadow: 1px 1px 7px gray; - display: none; - font-size: smaller; - max-width: 80%; - opacity: 0.9; - padding: 1ex 1em 1em; - position: absolute; - z-index: 2147483647; -} - -#powerTip div.ttdoc { - color: grey; - font-style: italic; -} - -#powerTip div.ttname a { - font-weight: bold; -} - -#powerTip div.ttname { - font-weight: bold; -} - -#powerTip div.ttdeci { - color: #006318; -} - -#powerTip div { - margin: 0px; - padding: 0px; - font: 12px/16px Roboto,sans-serif; -} - -#powerTip:before, #powerTip:after { - content: ""; - position: absolute; - margin: 0px; -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.s:after, #powerTip.s:before, -#powerTip.w:after, #powerTip.w:before, -#powerTip.e:after, #powerTip.e:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.nw:after, #powerTip.nw:before, -#powerTip.sw:after, #powerTip.sw:before { - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; -} - -#powerTip.n:after, #powerTip.s:after, -#powerTip.w:after, #powerTip.e:after, -#powerTip.nw:after, #powerTip.ne:after, -#powerTip.sw:after, #powerTip.se:after { - border-color: rgba(255, 255, 255, 0); -} - -#powerTip.n:before, #powerTip.s:before, -#powerTip.w:before, #powerTip.e:before, -#powerTip.nw:before, #powerTip.ne:before, -#powerTip.sw:before, #powerTip.se:before { - border-color: rgba(128, 128, 128, 0); -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.nw:after, #powerTip.nw:before { - top: 100%; -} - -#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { - border-top-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} -#powerTip.n:before { - border-top-color: #808080; - border-width: 11px; - margin: 0px -11px; -} -#powerTip.n:after, #powerTip.n:before { - left: 50%; -} - -#powerTip.nw:after, #powerTip.nw:before { - right: 14px; -} - -#powerTip.ne:after, #powerTip.ne:before { - left: 14px; -} - -#powerTip.s:after, #powerTip.s:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.sw:after, #powerTip.sw:before { - bottom: 100%; -} - -#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { - border-bottom-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} - -#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { - border-bottom-color: #808080; - border-width: 11px; - margin: 0px -11px; -} - -#powerTip.s:after, #powerTip.s:before { - left: 50%; -} - -#powerTip.sw:after, #powerTip.sw:before { - right: 14px; -} - -#powerTip.se:after, #powerTip.se:before { - left: 14px; -} - -#powerTip.e:after, #powerTip.e:before { - left: 100%; -} -#powerTip.e:after { - border-left-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.e:before { - border-left-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -#powerTip.w:after, #powerTip.w:before { - right: 100%; -} -#powerTip.w:after { - border-right-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.w:before { - border-right-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -@media print -{ - #top { display: none; } - #side-nav { display: none; } - #nav-path { display: none; } - body { overflow:visible; } - h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } - .summary { display: none; } - .memitem { page-break-inside: avoid; } - #doc-content - { - margin-left:0 !important; - height:auto !important; - width:auto !important; - overflow:inherit; - display:inline; - } -} - - -/* ****************************************************/ - -/* - -#navrow1 -{ - display: none; -} - -*/ - -/* cypress logo */ -img[src="logo.png"]{ - height:75px; - /*float: right;*/ -} - -/* \section format */ -h1 -{ - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: bold; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -/* \subsection format */ -h2 -{ - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.0em; - padding-top: 4px; - width: 100%; -} - -/* \ssububsection format */ -h3 -{ - color: #354C7B; - font-size: 100%; - font-weight: bold; - margin-top: 1.0em; - padding-top: 4px; - width: 100%; -} - -/* \snippet_begin */ -pre.snippet_code -{ - font: 100% Consolas, Courier New; - border: 1px solid black; - border-radius: 0.5em; - -webkit-border-radius: 0.5em; - -moz-border-radius: 0.5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - padding: 8px; - margin: 0px 0px 0px -12px; -} - -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTable tr { -} - -th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft, td.markdownTableBodyLeft { - text-align: left -} - -th.markdownTableHeadRight, td.markdownTableBodyRight { - text-align: right -} - -th.markdownTableHeadCenter, td.markdownTableBodyCenter { - text-align: center -} - -/* left-align the screenshots in the user guide generated from MD */ -.image { - text-align: left; -} diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/dynsections.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/dynsections.js deleted file mode 100644 index 3174bd7beb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/dynsections.js +++ /dev/null @@ -1,121 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -function toggleVisibility(linkObj) -{ - var base = $(linkObj).attr('id'); - var summary = $('#'+base+'-summary'); - var content = $('#'+base+'-content'); - var trigger = $('#'+base+'-trigger'); - var src=$(trigger).attr('src'); - if (content.is(':visible')===true) { - content.hide(); - summary.show(); - $(linkObj).addClass('closed').removeClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); - } else { - content.show(); - summary.hide(); - $(linkObj).removeClass('closed').addClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); - } - return false; -} - -function updateStripes() -{ - $('table.directory tr'). - removeClass('even').filter(':visible:even').addClass('even'); -} - -function toggleLevel(level) -{ - $('table.directory tr').each(function() { - var l = this.id.split('_').length-1; - var i = $('#img'+this.id.substring(3)); - var a = $('#arr'+this.id.substring(3)); - if (l - - - - - - - -CY8CKIT-062S2-43012 BSP - - - - - - - - - - - - - -
-
- - - - - - - -
-
CY8CKIT-062S2-43012 BSP
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
CY8CKIT-062S2-43012 BSP
-
-
-

-

-Overview

-

The CY8CKIT-062S2-43012 PSoCâ„¢ 6S2 Wi-Fi BT Pioneer Kit is a low-cost hardware platform that enables design and debug of PSoCâ„¢ 6 MCUs. It comes with a Murata 1LV Module (CYW43012 Wi-Fi + Bluetooth Combo Chip), industry-leading CAPSENSEâ„¢ for touch buttons and slider, on-board debugger/programmer with KitProg3, microSD card interface, 512-Mb Quad-SPI NOR flash, PDM-PCM microphone interface.

-

-

To use code from the BSP, simply include a reference to cybsp.h.

-

-Features

-

-Kit Features:

-
    -
  • Support of up to 2MB Flash and 1MB SRAM
  • -
  • Dedicated SDHC to interface with WICED wireless devices.
  • -
  • Delivers dual-cores, with a 150-MHz Arm Cortex-M4 as the primary application processor and a 100-MHz Arm Cortex-M0+ as the secondary processor for low-power operations.
  • -
  • Supports Full-Speed USB, capacitive-sensing with CAPSENSE, a PDM-PCM digital microphone interface, a Quad-SPI interface, 13 serial communication blocks, 7 programmable analog blocks, and 56 programmable digital blocks.
  • -
-

-Kit Contents:

-
    -
  • PSoCâ„¢ 6S2 Wi-Fi BT Pioneer Board
  • -
  • USB Type-A to Micro-B cable
  • -
  • Quick Start Guide
  • -
  • Four jumper wires (4 inches each)
  • -
  • Two jumper wires (5 inches each)
  • -
-

-BSP Configuration

-

The BSP has a few hooks that allow its behavior to be configured. Some of these items are enabled by default while others must be explicitly enabled. Items enabled by default are specified in the CY8CKIT-062S2-43012.mk file. The items that are enabled can be changed by creating a custom BSP or by editing the application makefile.

-

Components:

    -
  • Device specific category reference (e.g.: CAT1) - This component, enabled by default, pulls in any device specific code for this board.
  • -
  • BSP_DESIGN_MODUS - This component, enabled by default, causes the Configurator generated code for this specific BSP to be included. This should not be used at the same time as the CUSTOM_DESIGN_MODUS component.
  • -
  • CUSTOM_DESIGN_MODUS - This component, disabled by default, causes the Configurator generated code from the application to be included. This assumes that the application provides configurator generated code. This should not be used at the same time as the BSP_DESIGN_MODUS component.
  • -
-

Defines:

    -
  • CYBSP_WIFI_CAPABLE - This define, disabled by default, causes the BSP to initialize the interface to an onboard wireless chip if it has one.
  • -
  • CY_USING_HAL - This define, enabled by default, specifies that the HAL is intended to be used by the application. This will cause the BSP to include the applicable header file and to initialize the system level drivers.
  • -
  • CYBSP_CUSTOM_SYSCLK_PM_CALLBACK - This define, disabled by default, causes the BSP to skip registering its default SysClk Power Management callback, if any, and instead to invoke the application-defined function cybsp_register_custom_sysclk_pm_callback to register an application-specific callback.
  • -
-

-Clock Configuration

- - - - - - - - - -
Clock Source Output Frequency
FLL IMO 100.0 MHz
PLL IMO 48.0 MHz
CLK_HF0 CLK_PATH0 100 MHz
-

-Power Configuration

-
    -
  • System Active Power Mode: LP
  • -
  • System Idle Power Mode: Deep Sleep
  • -
  • VDDA Voltage: 3300 mV
  • -
  • VDDD Voltage: 3300 mV
  • -
-

See the BSP Setttings for additional board specific configuration settings.

-

-API Reference Manual

-

The CY8CKIT-062S2-43012 Board Support Package provides a set of APIs to configure, initialize and use the board resources.

-

See the BSP API Reference Manual for the complete list of the provided interfaces.

-

-More information

- -
-

© Cypress Semiconductor Corporation (an Infineon company) or an affiliate of Cypress Semiconductor Corporation, 2019-2021.

-
-
-
- - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/jquery.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/jquery.js deleted file mode 100644 index c9ed3d99cb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/jquery.js +++ /dev/null @@ -1,35 +0,0 @@ -/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
"),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
"),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element -},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** - * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler - * Licensed under MIT - * @author Ariel Flesler - * @version 2.1.2 - */ -;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 - * http://www.smartmenus.org/ - * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/logo.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/logo.png deleted file mode 100644 index be03a1ff92..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/logo.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/md_bsp_settings.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/md_bsp_settings.html deleted file mode 100644 index aa02d1d15a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/md_bsp_settings.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - -CY8CKIT-062S2-43012 BSP - - - - - - - - - - - - - -
-
- - - - - - - -
-
CY8CKIT-062S2-43012 BSP
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
Peripheral Default BSP Settings
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Resource Parameter Value Remarks
ADC VREF 1.2 V
Measurement type Single Ended
Input voltage range 0 to 2.4 V (0 to 2*VREF)
Output range 0x000 to 0x7FF
DAC Reference source VDDA
Input range 0x000 to 0xFFF
Output range 0 to VDDA
Output type Unbuffered output
I2C Role Master Configurable to slave mode through HAL function
Data rate 100 kbps Configurable through HAL function
Drive mode of SCL & SDA pins Open Drain (drives low) External pull-up resistors are required
LpTimer Uses WCO (32.768 kHz) as clock source & MCWDT as counter; 1 count = 1/32768 second or 32768 counts = 1 second
SPI Data rate 100 kpbs Configurable through HAL function
Slave select polarity Active low
UART Flow control No flow control Configurable through HAL function
Data format 8N1 Configurable through HAL function
Baud rate 115200 Configurable through HAL function
-
-

© Cypress Semiconductor Corporation, 2019-2021.

-
-
-
- - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/md_source_bsps_mt_bsp_user_guide.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/md_source_bsps_mt_bsp_user_guide.html deleted file mode 100644 index bba4bed9fb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/md_source_bsps_mt_bsp_user_guide.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - -CY8CKIT-062S2-43012 BSP - - - - - - - - - - - - - -
-
- - - - - - - -
-
CY8CKIT-062S2-43012 BSP
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
ModusToolboxâ„¢ Board Support Package (BSP) Overview
-
-
-

-Introduction

-

A Board Support Package (BSP) provides a standard interface to a board's features and capabilities. The API is consistent across PSoCâ„¢ kits. Other software (such as middleware or the user's application) can use the BSP to configure and control the hardware. BSPs have the following characteristics:

-
    -
  • BSPs initialize device resources, such as clocks and power supplies to set up the device to run firmware.
  • -
  • BSPs contain linker scripts and startup code so you can customize them for your board.
  • -
  • BSPs contain the hardware configuration (structures and macros) for both device peripherals and board peripherals.
  • -
  • BSPs provide abstraction to the board by providing common aliases or names to refer to the board peripherals, such as buttons and LEDs.
  • -
  • BSPs include the libraries for the default capabilities on the board. For example, the BSP for a kit with CAPSENSEâ„¢ capabilities includes the CAPSENSEâ„¢ library.
  • -
-

For a complete description of what the BSP provides and how it is used within ModusToolboxâ„¢, see the ModusToolboxâ„¢ User Guide

-

-Quick Start with BSPs

-

This section provides a high-level view for using BSPs. You should be familiar with creating an application using both the ModusToolboxâ„¢ IDE and command-line environments. To use a BSP for a kit you need to perform the following steps:

    -
  1. Get a BSP using one of the following methods:
      -
    • Create an application with the Project Creation tool included with the ModusToolboxâ„¢ software installer (< ModusToolboxâ„¢ install>/tools_2.x/project-creator). This tool can also be launched from the Eclipse IDE for ModusToolboxâ„¢. The tool fetches the BSP for the kit that you selected, and places it in the libs directory.
    • -
    • In an existing application, use the Library Manager tool to fetch the required BSP. This tool is located in < ModusToolboxâ„¢ install >/tools_2.x/library-manager. You can also launch it from within the ModusToolboxâ„¢ IDE.
    • -
    • In an existing application, create a .lib file specifying the BSP and version (commit, tag, or branch). Then run make getlibs to fetch the BSP and any associated libraries. The .lib file typically goes in the deps directory.
    • -
    • In an existing application, clone the BSP GitHub repository using the git clone command. For example: git clone [https://github.com/infineon/TARGET_CY8CPROTO-062-4343W/#latest-v1.X] A BSP includes other libraries. To fetch all the libraries, use the make getlibs command from a command shell in the top directory of the application.
    • -
    -
  2. -
  3. Add #include "cybsp.h" to your main.c file.
  4. -
  5. Add cybsp_init() at the start of main().
  6. -
  7. Refer to the API documentation available inside that BSP docs directory to learn more.
  8. -
-

-References

- -
-
-
- - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/menu.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/menu.js deleted file mode 100644 index 54e81cf15c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/menu.js +++ /dev/null @@ -1,127 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { - function makeTree(data,relPath) { - var result=''; - if ('children' in data) { - result+=''; - } - return result; - } - var searchBox; - if (searchEnabled) { - if (serverSide) { - searchBox='
'+ - '
'+ - '
'+ - ''+ - '
'+ - '
'+ - '
'+ - '
'; - } else { - searchBox='
'+ - ''+ - ''+ - ''+ - ''+ - ''+ - '' - '' - '
'; - } - } - - $('#main-nav').before('
'+ - ''+ - ''+ - '
'); - $('#main-nav').append(makeTree(menudata,relPath)); - $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); - if (searchBox) { - $('#main-menu').append('
  • '); - } - var $mainMenuState = $('#main-menu-state'); - var prevWidth = 0; - if ($mainMenuState.length) { - function initResizableIfExists() { - if (typeof initResizable==='function') initResizable(); - } - // animate mobile menu - $mainMenuState.change(function(e) { - var $menu = $('#main-menu'); - var options = { duration: 250, step: initResizableIfExists }; - if (this.checked) { - options['complete'] = function() { $menu.css('display', 'block') }; - $menu.hide().slideDown(options); - } else { - options['complete'] = function() { $menu.css('display', 'none') }; - $menu.show().slideUp(options); - } - }); - // set default menu visibility - function resetState() { - var $menu = $('#main-menu'); - var $mainMenuState = $('#main-menu-state'); - var newWidth = $(window).outerWidth(); - if (newWidth!=prevWidth) { - if ($(window).outerWidth()<768) { - $mainMenuState.prop('checked',false); $menu.hide(); - $('#searchBoxPos1').html(searchBox); - $('#searchBoxPos2').hide(); - } else { - $menu.show(); - $('#searchBoxPos1').empty(); - $('#searchBoxPos2').html(searchBox); - $('#searchBoxPos2').show(); - } - prevWidth = newWidth; - } - } - $(window).ready(function() { resetState(); initResizableIfExists(); }); - $(window).resize(resetState); - } - $('#main-menu').smartmenus(); -} -/* @license-end */ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/menudata.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/menudata.js deleted file mode 100644 index bcaefc49d8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/menudata.js +++ /dev/null @@ -1,28 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file -*/ -var menudata={children:[ -{text:"Home",url:"index.html"}, -{text:"BSP Overview",url:"md_source_bsps_mt_bsp_user_guide.html"}, -{text:"BSP Settings",url:"md_bsp_settings.html"}]} diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_f.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_f.png deleted file mode 100644 index 72a58a529e..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_f.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_g.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_g.png deleted file mode 100644 index 2093a237a9..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_g.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_h.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_h.png deleted file mode 100644 index 33389b101d..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/nav_h.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/navtree.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/navtree.css deleted file mode 100644 index d8a311a2ea..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/navtree.css +++ /dev/null @@ -1,147 +0,0 @@ -#nav-tree .children_ul { - margin:0; - padding:4px; -} - -#nav-tree ul { - list-style:none outside none; - margin:0px; - padding:0px; -} - -#nav-tree li { - white-space:nowrap; - margin:0px; - padding:0px; -} - -#nav-tree .plus { - margin:0px; -} - -#nav-tree .selected { - background-image: url('tab_a.png'); - background-repeat:repeat-x; - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); -} - -#nav-tree img { - margin:0px; - padding:0px; - border:0px; - vertical-align: middle; -} - -#nav-tree a { - text-decoration:none; - padding:0px; - margin:0px; - outline:none; -} - -#nav-tree .label { - margin:0px; - padding:0px; - font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; -} - -#nav-tree .label a { - padding:2px; -} - -#nav-tree .selected a { - text-decoration:none; - color:#fff; -} - -#nav-tree .children_ul { - margin:0px; - padding:0px; -} - -#nav-tree .item { - margin:0px; - padding:0px; -} - -#nav-tree { - padding: 0px 0px; - background-color: #FAFAFF; - font-size:14px; - overflow:auto; -} - -#doc-content { - overflow:auto; - display:block; - padding:0px; - margin:0px; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#side-nav { - padding:0 6px 0 0; - margin: 0px; - display:block; - position: absolute; - left: 0px; - width: 250px; - overflow : hidden; -} - -.ui-resizable .ui-resizable-handle { - display:block; -} - -.ui-resizable-e { - background-image:url("splitbar.png"); - background-size:100%; - background-repeat:repeat-y; - background-attachment: scroll; - cursor:ew-resize; - height:100%; - right:0; - top:0; - width:6px; -} - -.ui-resizable-handle { - display:none; - font-size:0.1px; - position:absolute; - z-index:1; -} - -#nav-tree-contents { - margin: 6px 0px 0px 0px; -} - -#nav-tree { - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#nav-sync { - position:absolute; - top:5px; - right:24px; - z-index:0; -} - -#nav-sync img { - opacity:0.3; -} - -#nav-sync img:hover { - opacity:0.9; -} - -@media print -{ - #nav-tree { display: none; } - div.ui-resizable-handle { display: none; position: relative; } -} - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/navtree.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/navtree.js deleted file mode 100644 index 27983687a9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/navtree.js +++ /dev/null @@ -1,549 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -var navTreeSubIndices = new Array(); -var arrowDown = '▼'; -var arrowRight = '►'; - -function getData(varName) -{ - var i = varName.lastIndexOf('/'); - var n = i>=0 ? varName.substring(i+1) : varName; - return eval(n.replace(/\-/g,'_')); -} - -function stripPath(uri) -{ - return uri.substring(uri.lastIndexOf('/')+1); -} - -function stripPath2(uri) -{ - var i = uri.lastIndexOf('/'); - var s = uri.substring(i+1); - var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); - return m ? uri.substring(i-6) : s; -} - -function hashValue() -{ - return $(location).attr('hash').substring(1).replace(/[^\w\-]/g,''); -} - -function hashUrl() -{ - return '#'+hashValue(); -} - -function pathName() -{ - return $(location).attr('pathname').replace(/[^-A-Za-z0-9+&@#/%?=~_|!:,.;\(\)]/g, ''); -} - -function localStorageSupported() -{ - try { - return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; - } - catch(e) { - return false; - } -} - -function storeLink(link) -{ - if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { - window.localStorage.setItem('navpath',link); - } -} - -function deleteLink() -{ - if (localStorageSupported()) { - window.localStorage.setItem('navpath',''); - } -} - -function cachedLink() -{ - if (localStorageSupported()) { - return window.localStorage.getItem('navpath'); - } else { - return ''; - } -} - -function getScript(scriptName,func,show) -{ - var head = document.getElementsByTagName("head")[0]; - var script = document.createElement('script'); - script.id = scriptName; - script.type = 'text/javascript'; - script.onload = func; - script.src = scriptName+'.js'; - head.appendChild(script); -} - -function createIndent(o,domNode,node,level) -{ - var level=-1; - var n = node; - while (n.parentNode) { level++; n=n.parentNode; } - if (node.childrenData) { - var imgNode = document.createElement("span"); - imgNode.className = 'arrow'; - imgNode.style.paddingLeft=(16*level).toString()+'px'; - imgNode.innerHTML=arrowRight; - node.plus_img = imgNode; - node.expandToggle = document.createElement("a"); - node.expandToggle.href = "javascript:void(0)"; - node.expandToggle.onclick = function() { - if (node.expanded) { - $(node.getChildrenUL()).slideUp("fast"); - node.plus_img.innerHTML=arrowRight; - node.expanded = false; - } else { - expandNode(o, node, false, false); - } - } - node.expandToggle.appendChild(imgNode); - domNode.appendChild(node.expandToggle); - } else { - var span = document.createElement("span"); - span.className = 'arrow'; - span.style.width = 16*(level+1)+'px'; - span.innerHTML = ' '; - domNode.appendChild(span); - } -} - -var animationInProgress = false; - -function gotoAnchor(anchor,aname,updateLocation) -{ - var pos, docContent = $('#doc-content'); - var ancParent = $(anchor.parent()); - if (ancParent.hasClass('memItemLeft') || - ancParent.hasClass('memtitle') || - ancParent.hasClass('fieldname') || - ancParent.hasClass('fieldtype') || - ancParent.is(':header')) - { - pos = ancParent.position().top; - } else if (anchor.position()) { - pos = anchor.position().top; - } - if (pos) { - var dist = Math.abs(Math.min( - pos-docContent.offset().top, - docContent[0].scrollHeight- - docContent.height()-docContent.scrollTop())); - animationInProgress=true; - docContent.animate({ - scrollTop: pos + docContent.scrollTop() - docContent.offset().top - },Math.max(50,Math.min(500,dist)),function(){ - if (updateLocation) window.location.href=aname; - animationInProgress=false; - }); - } -} - -function newNode(o, po, text, link, childrenData, lastNode) -{ - var node = new Object(); - node.children = Array(); - node.childrenData = childrenData; - node.depth = po.depth + 1; - node.relpath = po.relpath; - node.isLast = lastNode; - - node.li = document.createElement("li"); - po.getChildrenUL().appendChild(node.li); - node.parentNode = po; - - node.itemDiv = document.createElement("div"); - node.itemDiv.className = "item"; - - node.labelSpan = document.createElement("span"); - node.labelSpan.className = "label"; - - createIndent(o,node.itemDiv,node,0); - node.itemDiv.appendChild(node.labelSpan); - node.li.appendChild(node.itemDiv); - - var a = document.createElement("a"); - node.labelSpan.appendChild(a); - node.label = document.createTextNode(text); - node.expanded = false; - a.appendChild(node.label); - if (link) { - var url; - if (link.substring(0,1)=='^') { - url = link.substring(1); - link = url; - } else { - url = node.relpath+link; - } - a.className = stripPath(link.replace('#',':')); - if (link.indexOf('#')!=-1) { - var aname = '#'+link.split('#')[1]; - var srcPage = stripPath(pathName()); - var targetPage = stripPath(link.split('#')[0]); - a.href = srcPage!=targetPage ? url : "javascript:void(0)"; - a.onclick = function(){ - storeLink(link); - if (!$(a).parent().parent().hasClass('selected')) - { - $('.item').removeClass('selected'); - $('.item').removeAttr('id'); - $(a).parent().parent().addClass('selected'); - $(a).parent().parent().attr('id','selected'); - } - var anchor = $(aname); - gotoAnchor(anchor,aname,true); - }; - } else { - a.href = url; - a.onclick = function() { storeLink(link); } - } - } else { - if (childrenData != null) - { - a.className = "nolink"; - a.href = "javascript:void(0)"; - a.onclick = node.expandToggle.onclick; - } - } - - node.childrenUL = null; - node.getChildrenUL = function() { - if (!node.childrenUL) { - node.childrenUL = document.createElement("ul"); - node.childrenUL.className = "children_ul"; - node.childrenUL.style.display = "none"; - node.li.appendChild(node.childrenUL); - } - return node.childrenUL; - }; - - return node; -} - -function showRoot() -{ - var headerHeight = $("#top").height(); - var footerHeight = $("#nav-path").height(); - var windowHeight = $(window).height() - headerHeight - footerHeight; - (function (){ // retry until we can scroll to the selected item - try { - var navtree=$('#nav-tree'); - navtree.scrollTo('#selected',100,{offset:-windowHeight/2}); - } catch (err) { - setTimeout(arguments.callee, 0); - } - })(); -} - -function expandNode(o, node, imm, showRoot) -{ - if (node.childrenData && !node.expanded) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - expandNode(o, node, imm, showRoot); - }, showRoot); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } - $(node.getChildrenUL()).slideDown("fast"); - node.plus_img.innerHTML = arrowDown; - node.expanded = true; - } - } -} - -function glowEffect(n,duration) -{ - n.addClass('glow').delay(duration).queue(function(next){ - $(this).removeClass('glow');next(); - }); -} - -function highlightAnchor() -{ - var aname = hashUrl(); - var anchor = $(aname); - if (anchor.parent().attr('class')=='memItemLeft'){ - var rows = $('.memberdecls tr[class$="'+hashValue()+'"]'); - glowEffect(rows.children(),300); // member without details - } else if (anchor.parent().attr('class')=='fieldname'){ - glowEffect(anchor.parent().parent(),1000); // enum value - } else if (anchor.parent().attr('class')=='fieldtype'){ - glowEffect(anchor.parent().parent(),1000); // struct field - } else if (anchor.parent().is(":header")) { - glowEffect(anchor.parent(),1000); // section header - } else { - glowEffect(anchor.next(),1000); // normal member - } -} - -function selectAndHighlight(hash,n) -{ - var a; - if (hash) { - var link=stripPath(pathName())+':'+hash.substring(1); - a=$('.item a[class$="'+link+'"]'); - } - if (a && a.length) { - a.parent().parent().addClass('selected'); - a.parent().parent().attr('id','selected'); - highlightAnchor(); - } else if (n) { - $(n.itemDiv).addClass('selected'); - $(n.itemDiv).attr('id','selected'); - } - var topOffset=5; - if (typeof page_layout!=='undefined' && page_layout==1) { - topOffset+=$('#top').outerHeight(); - } - if ($('#nav-tree-contents .item:first').hasClass('selected')) { - topOffset+=25; - } - $('#nav-sync').css('top',topOffset+'px'); - showRoot(); -} - -function showNode(o, node, index, hash) -{ - if (node && node.childrenData) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - showNode(o,node,index,hash); - },true); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } - $(node.getChildrenUL()).css({'display':'block'}); - node.plus_img.innerHTML = arrowDown; - node.expanded = true; - var n = node.children[o.breadcrumbs[index]]; - if (index+11) hash = '#'+parts[1].replace(/[^\w\-]/g,''); - else hash=''; - } - if (hash.match(/^#l\d+$/)) { - var anchor=$('a[name='+hash.substring(1)+']'); - glowEffect(anchor.parent(),1000); // line number - hash=''; // strip line number anchors - } - var url=root+hash; - var i=-1; - while (NAVTREEINDEX[i+1]<=url) i++; - if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath) - } else { - getScript(relpath+'navtreeindex'+i,function(){ - navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath); - } - },true); - } -} - -function showSyncOff(n,relpath) -{ - n.html(''); -} - -function showSyncOn(n,relpath) -{ - n.html(''); -} - -function toggleSyncButton(relpath) -{ - var navSync = $('#nav-sync'); - if (navSync.hasClass('sync')) { - navSync.removeClass('sync'); - showSyncOff(navSync,relpath); - storeLink(stripPath2(pathName())+hashUrl()); - } else { - navSync.addClass('sync'); - showSyncOn(navSync,relpath); - deleteLink(); - } -} - -var loadTriggered = false; -var readyTriggered = false; -var loadObject,loadToRoot,loadUrl,loadRelPath; - -$(window).on('load',function(){ - if (readyTriggered) { // ready first - navTo(loadObject,loadToRoot,loadUrl,loadRelPath); - showRoot(); - } - loadTriggered=true; -}); - -function initNavTree(toroot,relpath) -{ - var o = new Object(); - o.toroot = toroot; - o.node = new Object(); - o.node.li = document.getElementById("nav-tree-contents"); - o.node.childrenData = NAVTREE; - o.node.children = new Array(); - o.node.childrenUL = document.createElement("ul"); - o.node.getChildrenUL = function() { return o.node.childrenUL; }; - o.node.li.appendChild(o.node.childrenUL); - o.node.depth = 0; - o.node.relpath = relpath; - o.node.expanded = false; - o.node.isLast = true; - o.node.plus_img = document.createElement("span"); - o.node.plus_img.className = 'arrow'; - o.node.plus_img.innerHTML = arrowRight; - - if (localStorageSupported()) { - var navSync = $('#nav-sync'); - if (cachedLink()) { - showSyncOff(navSync,relpath); - navSync.removeClass('sync'); - } else { - showSyncOn(navSync,relpath); - } - navSync.click(function(){ toggleSyncButton(relpath); }); - } - - if (loadTriggered) { // load before ready - navTo(o,toroot,hashUrl(),relpath); - showRoot(); - } else { // ready before load - loadObject = o; - loadToRoot = toroot; - loadUrl = hashUrl(); - loadRelPath = relpath; - readyTriggered=true; - } - - $(window).bind('hashchange', function(){ - if (window.location.hash && window.location.hash.length>1){ - var a; - if ($(location).attr('hash')){ - var clslink=stripPath(pathName())+':'+hashValue(); - a=$('.item a[class$="'+clslink.replace(/=desktop_vp) { - if (!collapsed) { - collapseExpand(); - } - } else if (width>desktop_vp && collapsedWidth0) { - restoreWidth(0); - collapsed=true; - } - else { - var width = readCookie('width'); - if (width>200 && width<$(window).width()) { restoreWidth(width); } else { restoreWidth(200); } - collapsed=false; - } - } - - header = $("#top"); - sidenav = $("#side-nav"); - content = $("#doc-content"); - navtree = $("#nav-tree"); - footer = $("#nav-path"); - $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); - $(sidenav).resizable({ minWidth: 0 }); - $(window).resize(function() { resizeHeight(); }); - var device = navigator.userAgent.toLowerCase(); - var touch_device = device.match(/(iphone|ipod|ipad|android)/); - if (touch_device) { /* wider split bar for touch only devices */ - $(sidenav).css({ paddingRight:'20px' }); - $('.ui-resizable-e').css({ width:'20px' }); - $('#nav-sync').css({ right:'34px' }); - barWidth=20; - } - var width = readCookie('width'); - if (width) { restoreWidth(width); } else { resizeWidth(); } - resizeHeight(); - var url = location.href; - var i=url.indexOf("#"); - if (i>=0) window.location.hash=url.substr(i); - var _preventDefault = function(evt) { evt.preventDefault(); }; - $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); - $(".ui-resizable-handle").dblclick(collapseExpand); - $(window).on('load',resizeHeight); -} -/* @license-end */ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_0.html deleted file mode 100644 index 65f85b5b74..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_0.js deleted file mode 100644 index 83c72312b5..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['cy8ckit_2d062s2_2d43012_20bsp_0',['CY8CKIT-062S2-43012 BSP',['../index.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_1.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_1.html deleted file mode 100644 index af53dabdc3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_1.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_1.js deleted file mode 100644 index 5ca44672d9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['modustoolboxâ„¢_20board_20support_20package_20_28bsp_29_20overview_0',['ModusToolboxâ„¢ Board Support Package (BSP) Overview',['../md_source_bsps_mt_bsp_user_guide.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_2.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_2.html deleted file mode 100644 index f8fe8ecbe6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_2.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_2.js deleted file mode 100644 index 526d028205..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/all_2.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['peripheral_20default_20bsp_20settings_0',['Peripheral Default BSP Settings',['../md_source_bsps_cat1a_CY8CKIT_062S2_43012_bsp_settings.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/close.svg b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/close.svg deleted file mode 100644 index a933eea1a2..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/close.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/mag_sel.svg b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/mag_sel.svg deleted file mode 100644 index 03626f64a0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/mag_sel.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/nomatches.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/nomatches.html deleted file mode 100644 index 2b9360b6bd..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/nomatches.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -
    -
    No Matches
    -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_0.html deleted file mode 100644 index 34ca499f4c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_0.js deleted file mode 100644 index 83c72312b5..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['cy8ckit_2d062s2_2d43012_20bsp_0',['CY8CKIT-062S2-43012 BSP',['../index.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_1.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_1.html deleted file mode 100644 index 37ed0d649e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_1.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_1.js deleted file mode 100644 index 5ca44672d9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['modustoolboxâ„¢_20board_20support_20package_20_28bsp_29_20overview_0',['ModusToolboxâ„¢ Board Support Package (BSP) Overview',['../md_source_bsps_mt_bsp_user_guide.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_2.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_2.html deleted file mode 100644 index 878d7ec56b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_2.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_2.js deleted file mode 100644 index 526d028205..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/pages_2.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['peripheral_20default_20bsp_20settings_0',['Peripheral Default BSP Settings',['../md_source_bsps_cat1a_CY8CKIT_062S2_43012_bsp_settings.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/search.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/search.css deleted file mode 100644 index 648a792f5e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/search.css +++ /dev/null @@ -1,263 +0,0 @@ -/*---------------- Search Box */ - -#MSearchBox { - white-space : nowrap; - background: white; - border-radius: 0.65em; - box-shadow: inset 0.5px 0.5px 3px 0px #555; - z-index: 102; -} - -#MSearchBox .left { - display: inline-block; - vertical-align: middle; - height: 1.4em; -} - -#MSearchSelect { - display: inline-block; - vertical-align: middle; - height: 19px; - padding: 0 0 0 0.3em; - margin: 0; -} - -#MSearchField { - display: inline-block; - vertical-align: middle; - width: 7.5em; - height: 19px; - margin: 0 0.15em; - padding: 0; - line-height: 1em; - border:none; - color: #909090; - outline: none; - font-family: Arial, Verdana, sans-serif; - -webkit-border-radius: 0px; - border-radius: 0px; - background: none; -} - -@media(hover: none) { - /* to avoid zooming on iOS */ - #MSearchField { - font-size: 16px; - } -} - -#MSearchBox .right { - display: inline-block; - vertical-align: middle; - width: 1.4em; - height: 1.4em; -} - -#MSearchClose { - display: none; - font-size: inherit; - background : none; - border: none; - margin: 0; - padding: 0; - outline: none; - -} - -#MSearchCloseImg { - height: 1.4em; - padding: 0.3em; - margin: 0; -} - -.MSearchBoxActive #MSearchField { - color: #000000; -} - -#main-menu > li:last-child { - /* This
  • object is the parent of the search bar */ - display: flex; - justify-content: center; - align-items: center; - height: 36px; - margin-right: 1em; -} - -/*---------------- Search filter selection */ - -#MSearchSelectWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #90A5CE; - background-color: #F9FAFC; - z-index: 10001; - padding-top: 4px; - padding-bottom: 4px; - -moz-border-radius: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -.SelectItem { - font: 8pt Arial, Verdana, sans-serif; - padding-left: 2px; - padding-right: 12px; - border: 0px; -} - -span.SelectionMark { - margin-right: 4px; - font-family: monospace; - outline-style: none; - text-decoration: none; -} - -a.SelectItem { - display: block; - outline-style: none; - color: #000000; - text-decoration: none; - padding-left: 6px; - padding-right: 12px; -} - -a.SelectItem:focus, -a.SelectItem:active { - color: #000000; - outline-style: none; - text-decoration: none; -} - -a.SelectItem:hover { - color: #FFFFFF; - background-color: #3D578C; - outline-style: none; - text-decoration: none; - cursor: pointer; - display: block; -} - -/*---------------- Search results window */ - -iframe#MSearchResults { - /*width: 60ex;*/ - height: 15em; -} - -#MSearchResultsWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #000; - background-color: #EEF1F7; - z-index:10000; -} - -/* ----------------------------------- */ - - -#SRIndex { - clear:both; - padding-bottom: 15px; -} - -.SREntry { - font-size: 10pt; - padding-left: 1ex; -} - -.SRPage .SREntry { - font-size: 8pt; - padding: 1px 5px; -} - -body.SRPage { - margin: 5px 2px; -} - -.SRChildren { - padding-left: 3ex; padding-bottom: .5em -} - -.SRPage .SRChildren { - display: none; -} - -.SRSymbol { - font-weight: bold; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRScope { - display: block; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRSymbol:focus, a.SRSymbol:active, -a.SRScope:focus, a.SRScope:active { - text-decoration: underline; -} - -span.SRScope { - padding-left: 4px; - font-family: Arial, Verdana, sans-serif; -} - -.SRPage .SRStatus { - padding: 2px 5px; - font-size: 8pt; - font-style: italic; - font-family: Arial, Verdana, sans-serif; -} - -.SRResult { - display: none; -} - -div.searchresults { - margin-left: 10px; - margin-right: 10px; -} - -/*---------------- External search page results */ - -.searchresult { - background-color: #F0F3F8; -} - -.pages b { - color: white; - padding: 5px 5px 3px 5px; - background-image: url("../tab_a.png"); - background-repeat: repeat-x; - text-shadow: 0 1px 1px #000000; -} - -.pages { - line-height: 17px; - margin-left: 4px; - text-decoration: none; -} - -.hl { - font-weight: bold; -} - -#searchresults { - margin-bottom: 20px; -} - -.searchpages { - margin-top: 10px; -} - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/search.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/search.js deleted file mode 100644 index ac8055d132..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/TARGET_CY8CKIT-062S2-43012/docs/html/search/search.js +++ /dev/null @@ -1,794 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -function convertToId(search) -{ - var result = ''; - for (i=0;i do a search - { - this.Search(); - } - } - - this.OnSearchSelectKey = function(evt) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==40 && this.searchIndex0) // Up - { - this.searchIndex--; - this.OnSelectItem(this.searchIndex); - } - else if (e.keyCode==13 || e.keyCode==27) - { - this.OnSelectItem(this.searchIndex); - this.CloseSelectionWindow(); - this.DOMSearchField().focus(); - } - return false; - } - - // --------- Actions - - // Closes the results window. - this.CloseResultsWindow = function() - { - this.DOMPopupSearchResultsWindow().style.display = 'none'; - this.DOMSearchClose().style.display = 'none'; - this.Activate(false); - } - - this.CloseSelectionWindow = function() - { - this.DOMSearchSelectWindow().style.display = 'none'; - } - - // Performs a search. - this.Search = function() - { - this.keyTimeout = 0; - - // strip leading whitespace - var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); - - var code = searchValue.toLowerCase().charCodeAt(0); - var idxChar = searchValue.substr(0, 1).toLowerCase(); - if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair - { - idxChar = searchValue.substr(0, 2); - } - - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; - - var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); - if (idx!=-1) - { - var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; - } - else // nothing available for this search term - { - resultsPage = this.resultsPath + '/nomatches' + this.extension; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; - } - - window.frames.MSearchResults.location = resultsPageWithSearch; - var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); - - if (domPopupSearchResultsWindow.style.display!='block') - { - var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline-block'; - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - var maxWidth = document.body.clientWidth; - var width = 400; - if (left<10) left=10; - if (width+left+8>maxWidth) width=maxWidth-left-8; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - domPopupSearchResultsWindow.style.width = width + 'px'; - } - - this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; - } - - // -------- Activation Functions - - // Activates or deactivates the search panel, resetting things to - // their default values if necessary. - this.Activate = function(isActive) - { - if (isActive || // open it - this.DOMPopupSearchResultsWindow().style.display == 'block' - ) - { - this.DOMSearchBox().className = 'MSearchBoxActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == this.searchLabel) // clear "Search" term upon entry - { - searchField.value = ''; - this.searchActive = true; - } - } - else if (!isActive) // directly remove the panel - { - this.DOMSearchBox().className = 'MSearchBoxInactive'; - this.DOMSearchField().value = this.searchLabel; - this.searchActive = false; - this.lastSearchValue = '' - this.lastResultsPage = ''; - } - } -} - -// ----------------------------------------------------------------------- - -// The class that handles everything on the search results page. -function SearchResults(name) -{ - // The number of matches from the last run of . - this.lastMatchCount = 0; - this.lastKey = 0; - this.repeatOn = false; - - // Toggles the visibility of the passed element ID. - this.FindChildElement = function(id) - { - var parentElement = document.getElementById(id); - var element = parentElement.firstChild; - - while (element && element!=parentElement) - { - if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') - { - return element; - } - - if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) - { - element = element.firstChild; - } - else if (element.nextSibling) - { - element = element.nextSibling; - } - else - { - do - { - element = element.parentNode; - } - while (element && element!=parentElement && !element.nextSibling); - - if (element && element!=parentElement) - { - element = element.nextSibling; - } - } - } - } - - this.Toggle = function(id) - { - var element = this.FindChildElement(id); - if (element) - { - if (element.style.display == 'block') - { - element.style.display = 'none'; - } - else - { - element.style.display = 'block'; - } - } - } - - // Searches for the passed string. If there is no parameter, - // it takes it from the URL query. - // - // Always returns true, since other documents may try to call it - // and that may or may not be possible. - this.Search = function(search) - { - if (!search) // get search word from URL - { - search = window.location.search; - search = search.substring(1); // Remove the leading '?' - search = unescape(search); - } - - search = search.replace(/^ +/, ""); // strip leading spaces - search = search.replace(/ +$/, ""); // strip trailing spaces - search = search.toLowerCase(); - search = convertToId(search); - - var resultRows = document.getElementsByTagName("div"); - var matches = 0; - - var i = 0; - while (i < resultRows.length) - { - var row = resultRows.item(i); - if (row.className == "SRResult") - { - var rowMatchName = row.id.toLowerCase(); - rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' - - if (search.length<=rowMatchName.length && - rowMatchName.substr(0, search.length)==search) - { - row.style.display = 'block'; - matches++; - } - else - { - row.style.display = 'none'; - } - } - i++; - } - document.getElementById("Searching").style.display='none'; - if (matches == 0) // no results - { - document.getElementById("NoMatches").style.display='block'; - } - else // at least one result - { - document.getElementById("NoMatches").style.display='none'; - } - this.lastMatchCount = matches; - return true; - } - - // return the first item with index index or higher that is visible - this.NavNext = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index++; - } - return focusItem; - } - - this.NavPrev = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index--; - } - return focusItem; - } - - this.ProcessKeys = function(e) - { - if (e.type == "keydown") - { - this.repeatOn = false; - this.lastKey = e.keyCode; - } - else if (e.type == "keypress") - { - if (!this.repeatOn) - { - if (this.lastKey) this.repeatOn = true; - return false; // ignore first keypress after keydown - } - } - else if (e.type == "keyup") - { - this.lastKey = 0; - this.repeatOn = false; - } - return this.lastKey!=0; - } - - this.Nav = function(evt,itemIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - var newIndex = itemIndex-1; - var focusItem = this.NavPrev(newIndex); - if (focusItem) - { - var child = this.FindChildElement(focusItem.parentNode.parentNode.id); - if (child && child.style.display == 'block') // children visible - { - var n=0; - var tmpElem; - while (1) // search for last child - { - tmpElem = document.getElementById('Item'+newIndex+'_c'+n); - if (tmpElem) - { - focusItem = tmpElem; - } - else // found it! - { - break; - } - n++; - } - } - } - if (focusItem) - { - focusItem.focus(); - } - else // return focus to search field - { - parent.document.getElementById("MSearchField").focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = itemIndex+1; - var focusItem; - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem && elem.style.display == 'block') // children visible - { - focusItem = document.getElementById('Item'+itemIndex+'_c0'); - } - if (!focusItem) focusItem = this.NavNext(newIndex); - if (focusItem) focusItem.focus(); - } - else if (this.lastKey==39) // Right - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'block'; - } - else if (this.lastKey==37) // Left - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'none'; - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } - - this.NavChild = function(evt,itemIndex,childIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - if (childIndex>0) - { - var newIndex = childIndex-1; - document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); - } - else // already at first child, jump to parent - { - document.getElementById('Item'+itemIndex).focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = childIndex+1; - var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); - if (!elem) // last child, jump to parent next parent - { - elem = this.NavNext(itemIndex+1); - } - if (elem) - { - elem.focus(); - } - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } -} - -function setKeyActions(elem,action) -{ - elem.setAttribute('onkeydown',action); - elem.setAttribute('onkeypress',action); - elem.setAttribute('onkeyup',action); -} - -function setClassAttr(elem,attr) -{ - elem.setAttribute('class',attr); - elem.setAttribute('className',attr); -} - -function createResults() -{ - var results = document.getElementById("SRResults"); - for (var e=0; eli>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:#666;-webkit-transition:all .25s;transition:all .25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px,1px,1px,1px)}#main-menu-state:not(:checked) ~ #main-menu{display:none}#main-menu-state:checked ~ #main-menu{display:block}@media(min-width:768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked) ~ #main-menu{display:block}}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px !important;-webkit-border-radius:5px;border-radius:5px !important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual.html deleted file mode 100644 index b4bd93fd92..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Redirect to CAPSENSEâ„¢ API Reference Manual main page after 0 seconds - - - - -

    - If the automatic redirection is failing, click the following link to open CAPSENSEâ„¢ API Reference Manual. -

    - - \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/IFXCYP_one-line.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/IFXCYP_one-line.png deleted file mode 100644 index c6d2b8e81c..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/IFXCYP_one-line.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/annotated.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/annotated.html deleted file mode 100644 index e66020de66..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/annotated.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Structures - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    Data Structures
    -
    -
    -
    Here are the data structures with brief descriptions:
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
     Ccy_stc_active_scan_sns_tDeclares active sensor details
     Ccy_stc_capsense_adaptive_filter_config_tDeclares Adaptive Filter configuration parameters
     Ccy_stc_capsense_advanced_centroid_config_tDeclares Advanced Centroid configuration parameters
     Ccy_stc_capsense_advanced_touchpad_config_tConfiguration structure of advanced touchpad
     Ccy_stc_capsense_alp_fltr_channel_tDeclares ALP filter data structure
     Ccy_stc_capsense_alp_fltr_config_tDeclares ALP filter configuration structure
     Ccy_stc_capsense_auto_tune_config_tDeclares HW smart sensing algorithm data structure for CSD widgets for fourth-generation CAPSENSE™
     Ccy_stc_capsense_ballistic_config_tDeclares Ballistics Multiplier Configuration data structure
     Ccy_stc_capsense_ballistic_context_tDeclares Ballistics Multiplier Configuration data structure
     Ccy_stc_capsense_ballistic_delta_tDeclares Ballistic Displacement structure
     Ccy_stc_capsense_bist_context_tDeclares BIST Context Data Structure
     Ccy_stc_capsense_bist_custom_parameters_tDeclares the BIST structure with custom scan parameters
     Ccy_stc_capsense_common_config_tCommon configuration structure
     Ccy_stc_capsense_common_context_tDeclares top-level Context Data Structure
     Ccy_stc_capsense_context_tDeclares top-level CAPSENSE™ context data structure
     Ccy_stc_capsense_csx_touch_buffer_tInternal CSX Touchpad buffer structure for CSX for Touchpads' processing
     Ccy_stc_capsense_csx_touch_history_tCSX Touchpad touch tracking history
     Ccy_stc_capsense_electrode_config_tElectrode objects configuration structure
     Ccy_stc_capsense_gesture_config_tGesture configuration structure
     Ccy_stc_capsense_gesture_context_tGesture global context structure
     Ccy_stc_capsense_gesture_position_tGesture position structure
     Ccy_stc_capsense_hw_smartsense_config_tDeclares HW smart sensing algorithm data structure for CSD widgets for fifth-generation CAPSENSE™
     Ccy_stc_capsense_idac_gain_table_tDeclares the IDAC gain table
     Ccy_stc_capsense_internal_context_tDeclares internal Context Data Structure
     Ccy_stc_capsense_mptx_table_tMulti-phase TX table for de-convolution structure
     Ccy_stc_capsense_ofcd_context_tGesture One Finger Click and Drag context structure
     Ccy_stc_capsense_ofdc_context_tGesture One Finger Double Click context structure
     Ccy_stc_capsense_ofes_context_tGesture One Finger Edge Swipe context structure
     Ccy_stc_capsense_offl_context_tGesture One Finger Flick context structure
     Ccy_stc_capsense_ofrt_context_tGesture One Finger Rotate context structure
     Ccy_stc_capsense_ofsc_context_tGesture One Finger Single Click context structure
     Ccy_stc_capsense_ofsl_context_tGesture One Finger Scroll context structure
     Ccy_stc_capsense_pin_config_tLegacy mode pin configuration structure
     Ccy_stc_capsense_position_tDeclares position structure that keep information of a single touch
     Ccy_stc_capsense_scan_slot_tDeclares the scan order of widget and sensor
     Ccy_stc_capsense_sensor_context_tSensor context structure
     Ccy_stc_capsense_smartsense_csd_noise_envelope_tDeclares Noise envelope data structure for CSD widgets when smart sensing algorithm is enabled
     Ccy_stc_capsense_smartsense_update_thresholds_tDeclares Update Thresholds structure
     Ccy_stc_capsense_tfsc_context_tGesture Two Finger Single Click context structure
     Ccy_stc_capsense_tfsl_context_tGesture Two Finger Scroll context structure
     Ccy_stc_capsense_tfzm_context_tGesture Two Finger Zoom context structure
     Ccy_stc_capsense_touch_tDeclares touch structure used to store positions of Touchpad, Matrix buttons and Slider widgets
     Ccy_stc_capsense_widget_config_tWidget configuration structure
     Ccy_stc_capsense_widget_context_tWidget context structure
     Ccy_stc_capsense_widget_crc_data_tDeclares the structure that is intended to store the cy_stc_capsense_widget_context_t data structure fields, the CRC checking should be applied for
     Ccy_stc_msc_channel_config_tDeclares MSC channel (HW block) configuration
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/bc_s.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/bc_s.png deleted file mode 100644 index 224b29aa98..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/bc_s.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/bdwn.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/bdwn.png deleted file mode 100644 index 940a0b9504..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/bdwn.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/capsense_ds.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/capsense_ds.png deleted file mode 100644 index a3313fb149..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/capsense_ds.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/capsense_solution.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/capsense_solution.png deleted file mode 100644 index a390de476a..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/capsense_solution.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/check_power.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/check_power.png deleted file mode 100644 index 774345b606..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/check_power.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/classes.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/classes.html deleted file mode 100644 index 76f26ee8e1..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/classes.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Structure Index - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    Data Structure Index
    -
    -
    - - - - - - - - - - - - - -
      c  
    -
    cy_stc_capsense_ballistic_context_t   cy_stc_capsense_gesture_config_t   cy_stc_capsense_offl_context_t   cy_stc_capsense_tfsc_context_t   
    cy_stc_capsense_ballistic_delta_t   cy_stc_capsense_gesture_context_t   cy_stc_capsense_ofrt_context_t   cy_stc_capsense_tfsl_context_t   
    cy_stc_active_scan_sns_t   cy_stc_capsense_bist_context_t   cy_stc_capsense_gesture_position_t   cy_stc_capsense_ofsc_context_t   cy_stc_capsense_tfzm_context_t   
    cy_stc_capsense_adaptive_filter_config_t   cy_stc_capsense_bist_custom_parameters_t   cy_stc_capsense_hw_smartsense_config_t   cy_stc_capsense_ofsl_context_t   cy_stc_capsense_touch_t   
    cy_stc_capsense_advanced_centroid_config_t   cy_stc_capsense_common_config_t   cy_stc_capsense_idac_gain_table_t   cy_stc_capsense_pin_config_t   cy_stc_capsense_widget_config_t   
    cy_stc_capsense_advanced_touchpad_config_t   cy_stc_capsense_common_context_t   cy_stc_capsense_internal_context_t   cy_stc_capsense_position_t   cy_stc_capsense_widget_context_t   
    cy_stc_capsense_alp_fltr_channel_t   cy_stc_capsense_context_t   cy_stc_capsense_mptx_table_t   cy_stc_capsense_scan_slot_t   cy_stc_capsense_widget_crc_data_t   
    cy_stc_capsense_alp_fltr_config_t   cy_stc_capsense_csx_touch_buffer_t   cy_stc_capsense_ofcd_context_t   cy_stc_capsense_sensor_context_t   cy_stc_msc_channel_config_t   
    cy_stc_capsense_auto_tune_config_t   cy_stc_capsense_csx_touch_history_t   cy_stc_capsense_ofdc_context_t   cy_stc_capsense_smartsense_csd_noise_envelope_t   
    cy_stc_capsense_ballistic_config_t   cy_stc_capsense_electrode_config_t   cy_stc_capsense_ofes_context_t   cy_stc_capsense_smartsense_update_thresholds_t   
    - -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/closed.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/closed.png deleted file mode 100644 index 98cc2c909d..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/closed.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doc.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doc.png deleted file mode 100644 index 17edabff95..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doc.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doxygen.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doxygen.png deleted file mode 100644 index 3ff17d807f..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doxygen.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doxygen_style.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doxygen_style.css deleted file mode 100644 index 8f8874dad9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/doxygen_style.css +++ /dev/null @@ -1,1544 +0,0 @@ -/* The standard CSS for doxygen 1.8.11 */ - -body, table, div, p, dl { - font: 400 14px/22px Roboto,sans-serif; -} - -/* @group Heading Levels */ - -h1.groupheader { - font-size: 150%; -} - -.title { - font: 400 14px/28px Roboto,sans-serif; - font-size: 150%; - font-weight: bold; - margin: 10px 2px; -} - -h2.groupheader { - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -h3.groupheader { - font-size: 100%; -} - -h1, h2, h3, h4, h5, h6 { - -webkit-transition: text-shadow 0.5s linear; - -moz-transition: text-shadow 0.5s linear; - -ms-transition: text-shadow 0.5s linear; - -o-transition: text-shadow 0.5s linear; - transition: text-shadow 0.5s linear; - margin-right: 15px; -} - -h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { - text-shadow: 0 0 15px cyan; -} - -dt { - font-weight: bold; -} - -div.multicol { - -moz-column-gap: 1em; - -webkit-column-gap: 1em; - -moz-column-count: 3; - -webkit-column-count: 3; -} - -p.startli, p.startdd { - margin-top: 2px; -} - -p.starttd { - margin-top: 0px; -} - -p.endli { - margin-bottom: 0px; -} - -p.enddd { - margin-bottom: 4px; -} - -p.endtd { - margin-bottom: 2px; -} - -/* @end */ - -caption { - font-weight: bold; -} - -span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; -} - -div.qindex, div.navpath { - width: 100%; - line-height: 140%; -} - -div.navtab { - margin-right: 15px; -} - -/* @group Link Styling */ - -a { - color: #3D578C; - font-weight: normal; - text-decoration: none; -} - -.contents a:visited { - color: #4665A2; -} - -a:hover { - text-decoration: underline; -} - -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #ffffff; - border: 1px double #869DCA; -} - -.contents a.qindexHL:visited { - color: #ffffff; -} - -a.el { - font-weight: bold; -} - -a.elRef { -} - -a.code, a.code:visited, a.line, a.line:visited { - color: #4665A2; -} - -a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { - color: #4665A2; -} - -/* @end */ - -dl.el { - margin-left: -1cm; -} - -pre.fragment { - border: 1px solid #C4CFE5; - background-color: #FBFCFD; - padding: 4px 6px; - margin: 4px 8px 4px 2px; - overflow: auto; - word-wrap: break-word; - font-size: 9pt; - line-height: 125%; - font-family: monospace, fixed; - font-size: 105%; -} - -div.fragment { - padding: 4px 6px; - margin: 4px 8px 4px 2px; - background-color: #FBFCFD; - border: 1px solid #C4CFE5; -} - -div.line { - font-family: monospace, fixed; - font-size: 13px; - min-height: 13px; - line-height: 1.0; - text-wrap: unrestricted; - white-space: -moz-pre-wrap; /* Moz */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - white-space: pre-wrap; /* CSS3 */ - word-wrap: break-word; /* IE 5.5+ */ - text-indent: -53px; - padding-left: 53px; - padding-bottom: 0px; - margin: 0px; - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -div.line:after { - content:"\000A"; - white-space: pre; -} - -div.line.glow { - background-color: cyan; - box-shadow: 0 0 10px cyan; -} - - -span.lineno { - padding-right: 4px; - text-align: right; - border-right: 2px solid #0F0; - background-color: #E8E8E8; - white-space: pre; -} -span.lineno a { - background-color: #D8D8D8; -} - -span.lineno a:hover { - background-color: #C8C8C8; -} - -div.ah, span.ah { - background-color: black; - font-weight: bold; - color: #ffffff; - margin-bottom: 3px; - margin-top: 3px; - padding: 0.2em; - border: solid thin #333; - border-radius: 0.5em; - -webkit-border-radius: .5em; - -moz-border-radius: .5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); - background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); -} - -div.classindex ul { - list-style: none; - padding-left: 0; -} - -div.classindex span.ai { - display: inline-block; -} - -div.groupHeader { - margin-left: 16px; - margin-top: 12px; - font-weight: bold; -} - -div.groupText { - margin-left: 16px; - font-style: italic; -} - -body { - background-color: white; - color: black; - margin: 0; -} - -div.contents { - margin-top: 10px; - margin-left: 12px; - margin-right: 8px; -} - -td.indexkey { - background-color: #EBEFF6; - font-weight: bold; - border: 1px solid #C4CFE5; - margin: 2px 0px 2px 0; - padding: 2px 10px; - white-space: nowrap; - vertical-align: top; -} - -td.indexvalue { - background-color: #EBEFF6; - border: 1px solid #C4CFE5; - padding: 2px 10px; - margin: 2px 0px; -} - -tr.memlist { - background-color: #EEF1F7; -} - -p.formulaDsp { - text-align: center; -} - -img.formulaDsp { - -} - -img.formulaInl { - vertical-align: middle; -} - -div.center { - text-align: center; - margin-top: 0px; - margin-bottom: 0px; - padding: 0px; -} - -div.center img { - border: 0px; -} - -address.footer { - text-align: right; - padding-right: 12px; -} - -img.footer { - border: 0px; - vertical-align: middle; -} - -/* @group Code Colorization */ - -span.keyword { - color: #008000 -} - -span.keywordtype { - color: #604020 -} - -span.keywordflow { - color: #e08000 -} - -span.comment { - color: #800000 -} - -span.preprocessor { - color: #806020 -} - -span.stringliteral { - color: #002080 -} - -span.charliteral { - color: #008080 -} - -span.vhdldigit { - color: #ff00ff -} - -span.vhdlchar { - color: #000000 -} - -span.vhdlkeyword { - color: #700070 -} - -span.vhdllogic { - color: #ff0000 -} - -blockquote { - background-color: #F7F8FB; - border-left: 2px solid #9CAFD4; - margin: 0 24px 0 4px; - padding: 0 12px 0 16px; -} - -/* @end */ - -/* -.search { - color: #003399; - font-weight: bold; -} - -form.search { - margin-bottom: 0px; - margin-top: 0px; -} - -input.search { - font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #e8eef2; -} -*/ - -td.tiny { - font-size: 75%; -} - -.dirtab { - padding: 4px; - border-collapse: collapse; - border: 1px solid #A3B4D7; -} - -th.dirtab { - background: #EBEFF6; - font-weight: bold; -} - -hr { - height: 0px; - border: none; - border-top: 1px solid #4A6AAA; -} - -hr.footer { - height: 1px; -} - -/* @group Member Descriptions */ - -table.memberdecls { - border-spacing: 0px; - padding: 0px; -} - -.memberdecls td, .fieldtable tr { - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -.memberdecls td.glow, .fieldtable tr.glow { - background-color: cyan; - box-shadow: 0 0 15px cyan; -} - -.mdescLeft, .mdescRight, -.memItemLeft, .memItemRight, -.memTemplItemLeft, .memTemplItemRight, .memTemplParams { - background-color: #F9FAFC; - border: none; - margin: 4px; - padding: 1px 0 0 8px; -} - -.mdescLeft, .mdescRight { - padding: 0px 8px 4px 8px; - color: #555; -} - -.memSeparator { - border-bottom: 1px solid #DEE4F0; - line-height: 1px; - margin: 0px; - padding: 0px; -} - -.memItemLeft, .memTemplItemLeft { - white-space: nowrap; -} - -.memItemRight { - width: 100%; -} - -.memTemplParams { - color: #4665A2; - white-space: nowrap; - font-size: 80%; -} - -/* @end */ - -/* @group Member Details */ - -/* Styles for detailed member documentation */ - -.memtemplate { - font-size: 80%; - color: #4665A2; - font-weight: normal; - margin-left: 9px; -} - -.memnav { - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} - -.mempage { - width: 100%; -} - -.memitem { - padding: 0; - margin-bottom: 10px; - margin-right: 5px; - -webkit-transition: box-shadow 0.5s linear; - -moz-transition: box-shadow 0.5s linear; - -ms-transition: box-shadow 0.5s linear; - -o-transition: box-shadow 0.5s linear; - transition: box-shadow 0.5s linear; - display: table !important; - width: 100%; -} - -.memitem.glow { - box-shadow: 0 0 15px cyan; -} - -.memname { - font-weight: bold; - margin-left: 6px; -} - -.memname td { - vertical-align: bottom; -} - -.memproto, dl.reflist dt { - border-top: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 0px 6px 0px; - color: #253555; - font-weight: bold; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - /* opera specific markup */ - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - border-top-right-radius: 4px; - border-top-left-radius: 4px; - /* firefox specific markup */ - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - -moz-border-radius-topright: 4px; - -moz-border-radius-topleft: 4px; - /* webkit specific markup */ - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - -webkit-border-top-right-radius: 4px; - -webkit-border-top-left-radius: 4px; - -} - -.memdoc, dl.reflist dd { - border-bottom: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 10px 2px 10px; - background-color: #FBFCFD; - border-top-width: 0; - background-image:url('nav_g.png'); - background-repeat:repeat-x; - background-color: #FFFFFF; - /* opera specific markup */ - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - /* firefox specific markup */ - -moz-border-radius-bottomleft: 4px; - -moz-border-radius-bottomright: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - /* webkit specific markup */ - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -dl.reflist dt { - padding: 5px; -} - -dl.reflist dd { - margin: 0px 0px 10px 0px; - padding: 5px; -} - -.paramkey { - text-align: right; -} - -.paramtype { - white-space: nowrap; -} - -.paramname { - color: #602020; - white-space: nowrap; -} -.paramname em { - font-style: normal; -} -.paramname code { - line-height: 14px; -} - -.params, .retval, .exception, .tparams { - margin-left: 0px; - padding-left: 0px; -} - -.params .paramname, .retval .paramname { - font-weight: bold; - vertical-align: top; -} - -.params .paramtype { - font-style: italic; - vertical-align: top; -} - -.params .paramdir { - font-family: "courier new",courier,monospace; - vertical-align: top; -} - -table.mlabels { - border-spacing: 0px; -} - -td.mlabels-left { - width: 100%; - padding: 0px; -} - -td.mlabels-right { - vertical-align: bottom; - padding: 0px; - white-space: nowrap; -} - -span.mlabels { - margin-left: 8px; -} - -span.mlabel { - background-color: #728DC1; - border-top:1px solid #5373B4; - border-left:1px solid #5373B4; - border-right:1px solid #C4CFE5; - border-bottom:1px solid #C4CFE5; - text-shadow: none; - color: white; - margin-right: 4px; - padding: 2px 3px; - border-radius: 3px; - font-size: 7pt; - white-space: nowrap; - vertical-align: middle; -} - - - -/* @end */ - -/* these are for tree view inside a (index) page */ - -div.directory { - margin: 10px 0px; - border-top: 1px solid #9CAFD4; - border-bottom: 1px solid #9CAFD4; - width: 100%; -} - -.directory table { - border-collapse:collapse; -} - -.directory td { - margin: 0px; - padding: 0px; - vertical-align: top; -} - -.directory td.entry { - white-space: nowrap; - padding-right: 6px; - padding-top: 3px; -} - -.directory td.entry a { - outline:none; -} - -.directory td.entry a img { - border: none; -} - -.directory td.desc { - width: 100%; - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - border-left: 1px solid rgba(0,0,0,0.05); -} - -.directory tr.even { - padding-left: 6px; - background-color: #F7F8FB; -} - -.directory img { - vertical-align: -30%; -} - -.directory .levels { - white-space: nowrap; - width: 100%; - text-align: right; - font-size: 9pt; -} - -.directory .levels span { - cursor: pointer; - padding-left: 2px; - padding-right: 2px; - color: #3D578C; -} - -.arrow { - color: #9CAFD4; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: pointer; - font-size: 80%; - display: inline-block; - width: 16px; - height: 22px; -} - -.icon { - font-family: Arial, Helvetica; - font-weight: bold; - font-size: 12px; - height: 14px; - width: 16px; - display: inline-block; - background-color: #728DC1; - color: white; - text-align: center; - border-radius: 4px; - margin-left: 2px; - margin-right: 2px; -} - -.icona { - width: 24px; - height: 22px; - display: inline-block; -} - -.iconfopen { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderopen.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.iconfclosed { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderclosed.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.icondoc { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('doc.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -table.directory { - font: 400 14px Roboto,sans-serif; -} - -/* @end */ - -div.dynheader { - margin-top: 8px; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -address { - font-style: normal; - color: #2A3D61; -} - -table.doxtable caption { - caption-side: top; -} - -table.doxtable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.doxtable td, table.doxtable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.doxtable th { - background-color: #A8A8A8; - color: #000; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -table.fieldtable { - /*width: 100%;*/ - margin-bottom: 10px; - border: 1px solid #A8B8D9; - border-spacing: 0px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); - box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); -} - -.fieldtable td, .fieldtable th { - padding: 3px 7px 2px; -} - -.fieldtable td.fieldtype, .fieldtable td.fieldname { - white-space: nowrap; - border-right: 1px solid #A8B8D9; - border-bottom: 1px solid #A8B8D9; - vertical-align: top; -} - -.fieldtable td.fieldname { - padding-top: 3px; -} - -.fieldtable td.fielddoc { - border-bottom: 1px solid #A8B8D9; - /*width: 100%;*/ -} - -.fieldtable td.fielddoc p:first-child { - margin-top: 0px; -} - -.fieldtable td.fielddoc p:last-child { - margin-bottom: 2px; -} - -.fieldtable tr:last-child td { - border-bottom: none; -} - -.fieldtable th { - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - font-size: 90%; - color: #253555; - padding-bottom: 4px; - padding-top: 5px; - text-align:left; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom: 1px solid #A8B8D9; -} - - -.tabsearch { - top: 0px; - left: 10px; - height: 36px; - background-image: url('tab_b.png'); - z-index: 101; - overflow: hidden; - font-size: 13px; -} - -.navpath ul -{ - font-size: 11px; - background-image:url('tab_b.png'); - background-repeat:repeat-x; - background-position: 0 -5px; - height:30px; - line-height:30px; - color:#8AA0CC; - border:solid 1px #C2CDE4; - overflow:hidden; - margin:0px; - padding:0px; -} - -.navpath li -{ - list-style-type:none; - float:left; - padding-left:10px; - padding-right:15px; - background-image:url('bc_s.png'); - background-repeat:no-repeat; - background-position:right; - color:#364D7C; -} - -.navpath li.navelem a -{ - height:32px; - display:block; - text-decoration: none; - outline: none; - color: #283A5D; - font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - text-decoration: none; -} - -.navpath li.navelem a:hover -{ - color:#6884BD; -} - -.navpath li.footer -{ - list-style-type:none; - float:right; - padding-left:10px; - padding-right:15px; - background-image:none; - background-repeat:no-repeat; - background-position:right; - color:#364D7C; - font-size: 8pt; -} - - -div.summary -{ - float: right; - font-size: 8pt; - padding-right: 5px; - width: 50%; - text-align: right; -} - -div.summary a -{ - white-space: nowrap; -} - -table.classindex -{ - margin: 10px; - white-space: nowrap; - margin-left: 3%; - margin-right: 3%; - width: 94%; - border: 0; - border-spacing: 0; - padding: 0; -} - -div.ingroups -{ - font-size: 8pt; - width: 50%; - text-align: left; -} - -div.ingroups a -{ - white-space: nowrap; -} - -div.header -{ - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - margin: 0px; - border-bottom: 1px solid #C4CFE5; -} - -div.headertitle -{ - padding: 5px 5px 5px 10px; -} - -dl -{ - padding: 0 0 0 10px; -} - -/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ -dl.section -{ - margin-left: 0px; - padding-left: 0px; -} - -dl.note -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #D0C000; -} - -dl.warning, dl.attention -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #FF0000; -} - -dl.pre, dl.post, dl.invariant -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00D000; -} - -dl.deprecated -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #505050; -} - -dl.todo -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00C0E0; -} - -dl.test -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #3030E0; -} - -dl.bug -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #C08050; -} - -dl.section dd { - margin-bottom: 6px; -} - - -#projectlogo -{ - text-align: center; - vertical-align: bottom; - border-collapse: separate; -} - -#projectlogo img -{ - border: 0px none; -} - -#projectalign -{ - vertical-align: middle; -} - -#projectname -{ - font: 250% sans-serif, Tahoma, Ariel; - margin: 0px; - padding: 2px 0px 2px 25px; -} - -#projectbrief -{ - font: 120% Tahoma, Arial,sans-serif; - color: grey; - margin: 0 0 0 26px; - padding: 0; - - height: 0px; -} - -#projectnumber -{ - font: 40% sans-serif, Tahoma, Ariel; - color: #606060; -} - -#titlearea -{ - padding: 0px; - margin: 0px; - width: 100%; - border-bottom: 1px solid #5373B4; -} - -.image -{ - text-align: center; -} - -.dotgraph -{ - text-align: center; -} - -.mscgraph -{ - text-align: center; -} - -.diagraph -{ - text-align: center; -} - -.caption -{ - font-weight: bold; -} - -div.zoom -{ - border: 1px solid #90A5CE; -} - -dl.citelist { - margin-bottom:50px; -} - -dl.citelist dt { - color:#334975; - float:left; - font-weight:bold; - margin-right:10px; - padding:5px; -} - -dl.citelist dd { - margin:2px 0; - padding:5px 0; -} - -div.toc { - padding: 14px 25px; - background-color: #F4F6FA; - border: 1px solid #D8DFEE; - border-radius: 7px 7px 7px 7px; - float: right; - height: auto; - margin: 0 8px 10px 10px; - width: 200px; -} - -div.toc li { - background: url("bdwn.png") no-repeat scroll 0 5px transparent; - font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; - margin-top: 5px; - padding-left: 10px; - padding-top: 2px; -} - -div.toc h3 { - font: bold 12px/1.2 Arial,FreeSans,sans-serif; - color: #4665A2; - border-bottom: 0 none; - margin: 0; -} - -div.toc ul { - list-style: none outside none; - border: medium none; - padding: 0px; -} - -div.toc li.level1 { - margin-left: 0px; -} - -div.toc li.level2 { - margin-left: 15px; -} - -div.toc li.level3 { - margin-left: 30px; -} - -div.toc li.level4 { - margin-left: 45px; -} - -.inherit_header { - font-weight: bold; - color: gray; - cursor: pointer; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.inherit_header td { - padding: 6px 0px 2px 5px; -} - -.inherit { - display: none; -} - -tr.heading h2 { - margin-top: 12px; - margin-bottom: 4px; -} - -/* tooltip related style info */ - -.ttc { - position: absolute; - display: none; -} - -#powerTip { - cursor: default; - white-space: nowrap; - background-color: white; - border: 1px solid gray; - border-radius: 4px 4px 4px 4px; - box-shadow: 1px 1px 7px gray; - display: none; - font-size: smaller; - max-width: 80%; - opacity: 0.9; - padding: 1ex 1em 1em; - position: absolute; - z-index: 2147483647; -} - -#powerTip div.ttdoc { - color: grey; - font-style: italic; -} - -#powerTip div.ttname a { - font-weight: bold; -} - -#powerTip div.ttname { - font-weight: bold; -} - -#powerTip div.ttdeci { - color: #006318; -} - -#powerTip div { - margin: 0px; - padding: 0px; - font: 12px/16px Roboto,sans-serif; -} - -#powerTip:before, #powerTip:after { - content: ""; - position: absolute; - margin: 0px; -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.s:after, #powerTip.s:before, -#powerTip.w:after, #powerTip.w:before, -#powerTip.e:after, #powerTip.e:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.nw:after, #powerTip.nw:before, -#powerTip.sw:after, #powerTip.sw:before { - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; -} - -#powerTip.n:after, #powerTip.s:after, -#powerTip.w:after, #powerTip.e:after, -#powerTip.nw:after, #powerTip.ne:after, -#powerTip.sw:after, #powerTip.se:after { - border-color: rgba(255, 255, 255, 0); -} - -#powerTip.n:before, #powerTip.s:before, -#powerTip.w:before, #powerTip.e:before, -#powerTip.nw:before, #powerTip.ne:before, -#powerTip.sw:before, #powerTip.se:before { - border-color: rgba(128, 128, 128, 0); -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.nw:after, #powerTip.nw:before { - top: 100%; -} - -#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { - border-top-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} -#powerTip.n:before { - border-top-color: #808080; - border-width: 11px; - margin: 0px -11px; -} -#powerTip.n:after, #powerTip.n:before { - left: 50%; -} - -#powerTip.nw:after, #powerTip.nw:before { - right: 14px; -} - -#powerTip.ne:after, #powerTip.ne:before { - left: 14px; -} - -#powerTip.s:after, #powerTip.s:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.sw:after, #powerTip.sw:before { - bottom: 100%; -} - -#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { - border-bottom-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} - -#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { - border-bottom-color: #808080; - border-width: 11px; - margin: 0px -11px; -} - -#powerTip.s:after, #powerTip.s:before { - left: 50%; -} - -#powerTip.sw:after, #powerTip.sw:before { - right: 14px; -} - -#powerTip.se:after, #powerTip.se:before { - left: 14px; -} - -#powerTip.e:after, #powerTip.e:before { - left: 100%; -} -#powerTip.e:after { - border-left-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.e:before { - border-left-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -#powerTip.w:after, #powerTip.w:before { - right: 100%; -} -#powerTip.w:after { - border-right-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.w:before { - border-right-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -@media print -{ - #top { display: none; } - #side-nav { display: none; } - #nav-path { display: none; } - body { overflow:visible; } - h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } - .summary { display: none; } - .memitem { page-break-inside: avoid; } - #doc-content - { - margin-left:0 !important; - height:auto !important; - width:auto !important; - overflow:inherit; - display:inline; - } -} - - -/* ****************************************************/ - -/* - -#navrow1 -{ - display: none; -} - -*/ - -/* Infineon+Cypress logo */ -img[src="IFXCYP_one-line.png"]{ - height:75px; - /*float: right;*/ -} - -/* \section format */ -h1 -{ - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: bold; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -/* \subsection format */ -h2 -{ - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.0em; - padding-top: 4px; - width: 100%; -} - -/* \ssububsection format */ -h3 -{ - color: #354C7B; - font-size: 100%; - font-weight: bold; - margin-top: 1.0em; - padding-top: 4px; - width: 100%; -} - -/* \snippet_begin */ -pre.snippet_code -{ - font: 100% Consolas, Courier New; - border: 1px solid black; - border-radius: 0.5em; - -webkit-border-radius: 0.5em; - -moz-border-radius: 0.5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - padding: 8px; - margin: 0px 0px 0px -12px; -} diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/dynsections.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/dynsections.js deleted file mode 100644 index 85e1836909..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/dynsections.js +++ /dev/null @@ -1,97 +0,0 @@ -function toggleVisibility(linkObj) -{ - var base = $(linkObj).attr('id'); - var summary = $('#'+base+'-summary'); - var content = $('#'+base+'-content'); - var trigger = $('#'+base+'-trigger'); - var src=$(trigger).attr('src'); - if (content.is(':visible')===true) { - content.hide(); - summary.show(); - $(linkObj).addClass('closed').removeClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); - } else { - content.show(); - summary.hide(); - $(linkObj).removeClass('closed').addClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); - } - return false; -} - -function updateStripes() -{ - $('table.directory tr'). - removeClass('even').filter(':visible:even').addClass('even'); -} - -function toggleLevel(level) -{ - $('table.directory tr').each(function() { - var l = this.id.split('_').length-1; - var i = $('#img'+this.id.substring(3)); - var a = $('#arr'+this.id.substring(3)); - if (l - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - a -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_b.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_b.html deleted file mode 100644 index 2b3b4bfc94..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_b.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - b -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_c.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_c.html deleted file mode 100644 index ee9ac39a81..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_c.html +++ /dev/null @@ -1,510 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - c -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_d.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_d.html deleted file mode 100644 index b881cc93d0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_d.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - d -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_e.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_e.html deleted file mode 100644 index e9ae2dfa48..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_e.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - e -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_f.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_f.html deleted file mode 100644 index b5c411c5b5..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_f.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - f -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_g.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_g.html deleted file mode 100644 index 7b01574dfb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_g.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - g -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_h.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_h.html deleted file mode 100644 index 0389d7d88b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_h.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - h -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_i.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_i.html deleted file mode 100644 index 2f51adb5ab..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_i.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - i -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_k.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_k.html deleted file mode 100644 index d98c331031..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_k.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - k -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_l.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_l.html deleted file mode 100644 index 32e9df8bd2..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_l.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - l -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_m.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_m.html deleted file mode 100644 index f668a00141..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_m.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - m -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_n.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_n.html deleted file mode 100644 index 3577ea0a8f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_n.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - n -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_o.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_o.html deleted file mode 100644 index 8556959963..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_o.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - o -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_p.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_p.html deleted file mode 100644 index 1997dfc3e8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_p.html +++ /dev/null @@ -1,398 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - p -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_r.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_r.html deleted file mode 100644 index d48ee38b72..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_r.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - r -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_s.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_s.html deleted file mode 100644 index f353d9b623..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_s.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - s -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_t.html deleted file mode 100644 index 4b292be93a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_t.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - t -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_v.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_v.html deleted file mode 100644 index bd7c6637bc..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_v.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - v -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars.html deleted file mode 100644 index 7f4b161239..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - a -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_b.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_b.html deleted file mode 100644 index c586632e94..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_b.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - - -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_c.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_c.html deleted file mode 100644 index b3494c4376..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_c.html +++ /dev/null @@ -1,510 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - c -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_d.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_d.html deleted file mode 100644 index 3f85a910f9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_d.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - - -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_e.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_e.html deleted file mode 100644 index dec65a8a7d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_e.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - e -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_f.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_f.html deleted file mode 100644 index f82d208616..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_f.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_g.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_g.html deleted file mode 100644 index 8adb67da00..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_g.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - g -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_h.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_h.html deleted file mode 100644 index e67da0f8c6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_h.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_i.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_i.html deleted file mode 100644 index b1caeeb26e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_i.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_k.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_k.html deleted file mode 100644 index 858cadf07a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_k.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - - -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_l.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_l.html deleted file mode 100644 index 35ed9a0ebf..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_l.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_m.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_m.html deleted file mode 100644 index dffff83fd9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_m.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_n.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_n.html deleted file mode 100644 index 99519eaf3c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_n.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - n -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_o.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_o.html deleted file mode 100644 index d3b93571ae..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_o.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - - -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_p.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_p.html deleted file mode 100644 index 17ed29ef0f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_p.html +++ /dev/null @@ -1,398 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - p -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_r.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_r.html deleted file mode 100644 index 3b0199e1b6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_r.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - r -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_s.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_s.html deleted file mode 100644 index d2b6aea1f3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_s.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - s -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_t.html deleted file mode 100644 index ca11253bd1..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_t.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_v.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_v.html deleted file mode 100644 index fbc7675376..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_v.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_w.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_w.html deleted file mode 100644 index 37b445eb6d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_w.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - w -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_x.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_x.html deleted file mode 100644 index b1532aabb3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_x.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_y.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_y.html deleted file mode 100644 index a7d3dbf0fd..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_y.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_z.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_z.html deleted file mode 100644 index 26304c0eb9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_vars_z.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - Variables - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -  - -

    - z -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_w.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_w.html deleted file mode 100644 index da8a4db254..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_w.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - w -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_x.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_x.html deleted file mode 100644 index 3e9e4c1811..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_x.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - x -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_y.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_y.html deleted file mode 100644 index 15e68b7f3d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_y.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - y -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_z.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_z.html deleted file mode 100644 index 63c29b1532..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/functions_z.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Fields - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
    - -

    - z -

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__callbacks.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__callbacks.html deleted file mode 100644 index 8c97b002f0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__callbacks.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Callbacks - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    Callbacks
    -
    -
    -

    Callbacks allow the user to execute Custom code called from the CAPSENSE™ middleware when an event occurs.

    -

    CAPSENSE™ supports several callbacks.

    - - - - - - - - - - - - - -
    # Callback Name Associated Register Callback Function Prototype Description
    1 Start Sample ptrSSCallback cy_capsense_callback_t This is called before each sensor scan triggering. Such a callback can be used to implement user-specific use cases like changing scan parameters depending on whether a sensor is going to be scanned. For the fifth-generation CAPSENSE™ in CS-DMA mode this callback is called only once in Cy_CapSense_ScanSlots() function with NULL passed as a parameter. In INT driven mode it is called in Cy_CapSense_ScanSlots() and in Cy_CapSense_ScanISR() function before HW starting the scan.
    2 End Of Scan ptrEOSCallback cy_capsense_callback_t This is called after sensor scan completion and there is no other sensor in the queue to be scanned. For the fifth-generation CAPSENSE™ in CS-DMA mode this callback is called with NULL passed as a parameter.
    3 Tuner Send Callback ptrTunerSendCallback cy_capsense_tuner_send_callback_t This is called by the Cy_CapSense_RunTuner() function to establish synchronous communication with the Tuner tool.
    4 Tuner Receive Callback ptrTunerReceiveCallback cy_capsense_tuner_receive_callback_t This is called by the Cy_CapSense_RunTuner() function to establish synchronous communication with the Tuner tool.
    5 CAPSENSE™ Data Structure Initialization Callback ptrEODsInitCallback cy_capsense_ds_init_callback_t This is called by the Cy_CapSense_Enable() function after CAPSENSE™ Data Structure initialization complete and before launching the first initialization scan. Using this callback is not recommended. It is used only to implement only user's specific use cases (while changing the CAPSENSE™ default configuration). The callback is available for Fifth Generation CAPSENSE™ devices.
    -
    Note
    Callbacks 1 and 2 are called by the Cy_CapSense_InterruptHandler() function and lengthen this function execution. Usually, Cy_CapSense_InterruptHandler() is called inside the ISR. Then these callbacks also lengthen the ISR execution.
    -

    All callbacks can be registered by direct assignment of the function pointers to the corresponding CAPSENSE™ Data Structure field after call of the Cy_CapSense_Init() function as follows:

      -
    • context->ptrInternalContext-><Associated Register> = &CallbackFunction;
    • -
    -

    Callbacks 1 and 2 can be registered / unregistered using the Cy_CapSense_RegisterCallback() and Cy_CapSense_UnRegisterCallback() functions.

    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__data__structure.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__data__structure.html deleted file mode 100644 index 633693d419..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__data__structure.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Data Structure - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Data Structure
    -
    -
    -

    General Description

    -

    The CAPSENSE™ Data Structure organizes configuration parameters, input, and output data shared among different FW modules within the CAPSENSE™.

    -

    The key responsibilities of the Data Structure are as follows:

      -
    • The Data Structure is the only data container in the CAPSENSE™ middleware.
    • -
    • It serves as storage for the configuration and the output data.
    • -
    • All CAPSENSE™ modules use the data structure for the communication and data exchange.
    • -
    -

    The CAPSENSE™ Data Structure is a composite of several smaller structures (for global / common data, widget data, sensor data, and pin data). Furthermore, the data is split between RAM and Flash to achieve a reasonable balance between resources consumption and configuration / tuning flexibility at runtime and compile time. A graphical representation of the CAPSENSE™ Data Structure is shown below.

    -

    Note that figure below shows a sample representation and documents the high-level design of the data structure, it does not include all the parameters and elements in each object.

    -
    -capsense_ds.png -
    -CAPSENSE™ Data Structure
    -

    CAPSENSE™ Data Structure does not perform error checking on the data written to CAPSENSE™ Data Structure. It is the responsibility of application program to ensure register map rule are not violated while modifying the value of data field in CAPSENSE™ Data Structure.

    - - - - - - - - -

    -API Reference

     Structures
     The CAPSENSE™ structures.
     
     Gesture Structures
     The Gesture-related structures.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__data__structure.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__data__structure.js deleted file mode 100644 index bc05c75e1d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__data__structure.js +++ /dev/null @@ -1,5 +0,0 @@ -var group__group__capsense__data__structure = -[ - [ "Structures", "group__group__capsense__structures.html", "group__group__capsense__structures" ], - [ "Gesture Structures", "group__group__capsense__gesture__structures.html", "group__group__capsense__gesture__structures" ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__enums.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__enums.html deleted file mode 100644 index d6331ad7d1..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__enums.html +++ /dev/null @@ -1,619 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Enumerated Types - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Enumerated Types
    -
    -
    -

    General Description

    -

    Documents the CAPSENSE™ middleware related enumerated types.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Enumerations

    enum  cy_en_capsense_bist_external_cap_id_t {
    -  CY_CAPSENSE_BIST_CMOD_ID_E = 0x00u, -
    -  CY_CAPSENSE_BIST_CINTA_ID_E = 0x01u, -
    -  CY_CAPSENSE_BIST_CINTB_ID_E = 0x02u, -
    -  CY_CAPSENSE_BIST_CSH_ID_E = 0x03u -
    - }
     Defines IDs of the external capacitors. More...
     
    enum  cy_en_capsense_tuner_state_t {
    -  CY_CAPSENSE_TU_FSM_RUNNING = 0x00u, -
    -  CY_CAPSENSE_TU_FSM_SUSPENDED = 0x01u, -
    -  CY_CAPSENSE_TU_FSM_ONE_SCAN = 0x03u -
    - }
     Defines MW Tuner module states. More...
     
    enum  cy_en_capsense_tuner_cmd_t {
    -  CY_CAPSENSE_TU_CMD_NONE_E = 0u, -
    -  CY_CAPSENSE_TU_CMD_SUSPEND_E = 1u, -
    -  CY_CAPSENSE_TU_CMD_RESUME_E = 2u, -
    -  CY_CAPSENSE_TU_CMD_RESTART_E = 3u, -
    -  CY_CAPSENSE_TU_CMD_RUN_SNR_TEST_E = 4u, -
    -  CY_CAPSENSE_TU_CMD_PING_E = 5u, -
    -  CY_CAPSENSE_TU_CMD_ONE_SCAN_E = 6u, -
    -  CY_CAPSENSE_TU_CMD_WRITE_E = 7u -
    - }
     Defines the Tuner command codes. More...
     
    enum  cy_en_capsense_widget_type_t {
    -  CY_CAPSENSE_WD_BUTTON_E = 0x01u, -
    -  CY_CAPSENSE_WD_LINEAR_SLIDER_E = 0x02u, -
    -  CY_CAPSENSE_WD_RADIAL_SLIDER_E = 0x03u, -
    -  CY_CAPSENSE_WD_MATRIX_BUTTON_E = 0x04u, -
    -  CY_CAPSENSE_WD_TOUCHPAD_E = 0x05u, -
    -  CY_CAPSENSE_WD_PROXIMITY_E = 0x06u -
    - }
     Defines widget types. More...
     
    enum  cy_en_capsense_return_status_t {
    -  CY_CAPSENSE_SUCCESS_E = 0x00u, -
    -  CY_CAPSENSE_BAD_PARAM_E = 0x01u, -
    -  CY_CAPSENSE_HW_LOCKED_E = 0x02u, -
    -  CY_CAPSENSE_HW_BUSY_E = 0x03u, -
    -  CY_CAPSENSE_TIMEOUT_E = 0x04u -
    - }
     Defines CAPSENSE™ return statuses types. More...
     
    enum  cy_en_capsense_eltd_t {
    -  CY_CAPSENSE_ELTD_TYPE_SELF_E = 0x01u, -
    -  CY_CAPSENSE_ELTD_TYPE_MUT_TX_E = 0x02u, -
    -  CY_CAPSENSE_ELTD_TYPE_MUT_RX_E = 0x03u -
    - }
     Defines types of electrode. More...
     
    enum  cy_en_capsense_cap_connection_t {
    -  CY_CAPSENSE_CMODPAD_E = 0x01u, -
    -  CY_CAPSENSE_CTANKPAD_E = 0x02u, -
    -  CY_CAPSENSE_CSHIELDPAD_E = 0x03u, -
    -  CY_CAPSENSE_VREFEXTPAD_E = 0x04u -
    - }
     Defines connections of sensing capacitors. More...
     
    enum  cy_en_capsense_callback_event_t {
    -  CY_CAPSENSE_START_SAMPLE_E = 0x01u, -
    -  CY_CAPSENSE_END_OF_SCAN_E = 0x02u -
    - }
     Defines CAPSENSE™ middleware execution events when the CAPSENSE™ callback can be executed. More...
     
    enum  cy_en_capsense_bist_hw_config_t {
    -  CY_CAPSENSE_BIST_HW_UNDEFINED_E = 0x00u, -
    -  CY_CAPSENSE_BIST_HW_SHORT_E = 0x01u, -
    -  CY_CAPSENSE_BIST_HW_ELTD_CAP_E = 0x02u, -
    -  CY_CAPSENSE_BIST_HW_EXTERNAL_CAP_E = 0x03u, -
    -  CY_CAPSENSE_BIST_HW_VDDA_E = 0x04u, -
    -  CY_CAPSENSE_BIST_HW_ELTD_CAP_SH_E = 0x05u -
    - }
     Defines HW configurations types for BIST operations. More...
     
    enum  cy_en_capsense_bist_io_state_t {
    -  CY_CAPSENSE_BIST_IO_UNDEFINED_E = 0x00u, -
    -  CY_CAPSENSE_BIST_IO_STRONG_E = 0x01u, -
    -  CY_CAPSENSE_BIST_IO_HIGHZA_E = 0x02u, -
    -  CY_CAPSENSE_BIST_IO_SENSE_E = 0x03u, -
    -  CY_CAPSENSE_BIST_IO_SHIELD_E = 0x04u, -
    -  CY_CAPSENSE_BIST_IO_STRONG_HIGH_E = 0x05u -
    - }
     Defines BIST IO Configuration. More...
     
    enum  cy_en_capsense_bist_status_t {
    -  CY_CAPSENSE_BIST_SUCCESS_E = 0x00u, -
    -  CY_CAPSENSE_BIST_BAD_PARAM_E = 0x01u, -
    -  CY_CAPSENSE_BIST_HW_BUSY_E = 0x02u, -
    -  CY_CAPSENSE_BIST_LOW_LIMIT_E = 0x03u, -
    -  CY_CAPSENSE_BIST_HIGH_LIMIT_E = 0x04u, -
    -  CY_CAPSENSE_BIST_ERROR_E = 0x05u, -
    -  CY_CAPSENSE_BIST_FEATURE_DISABLED_E = 0x06u, -
    -  CY_CAPSENSE_BIST_TIMEOUT_E = 0x07u, -
    -  CY_CAPSENSE_BIST_BAD_CONFIG_E = 0x08u, -
    -  CY_CAPSENSE_BIST_FAIL_E = 0x0Fu -
    - }
     Defines BIST result statuses. More...
     
    enum  cy_en_capsense_msc_raw_mode_t {
    -  CY_CAPSENSE_MSC_RAW_SATURATE_E = 0x00u, -
    -  CY_CAPSENSE_MSC_RAW_OVERFLOW_E = 0x01u -
    - }
     Defines the raw count accumulation mode for MSC HW block. More...
     
    -

    Enumeration Type Documentation

    - -

    ◆ cy_en_capsense_bist_external_cap_id_t

    - -
    -
    - -

    Defines IDs of the external capacitors.

    - - - - - -
    Enumerator
    CY_CAPSENSE_BIST_CMOD_ID_E 

    ID for Cmod external capacitor.

    -
    CY_CAPSENSE_BIST_CINTA_ID_E 

    ID for CintA external capacitor.

    -
    CY_CAPSENSE_BIST_CINTB_ID_E 

    ID for CintB external capacitor.

    -
    CY_CAPSENSE_BIST_CSH_ID_E 

    ID for Csh external capacitor.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_tuner_state_t

    - -
    -
    - -

    Defines MW Tuner module states.

    - - - - -
    Enumerator
    CY_CAPSENSE_TU_FSM_RUNNING 

    Running state is a state when CAPSENSE™ middleware is not blocked by the CAPSENSE™ Tuner tool and application program continuously scans.

    -
    CY_CAPSENSE_TU_FSM_SUSPENDED 

    Scanning is suspended.

    -
    CY_CAPSENSE_TU_FSM_ONE_SCAN 

    Scanning is suspended after one scan cycle.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_tuner_cmd_t

    - -
    -
    - - - - -
    enum cy_en_capsense_tuner_cmd_t
    -
    - -

    Defines the Tuner command codes.

    - - - - - - - - - -
    Enumerator
    CY_CAPSENSE_TU_CMD_NONE_E 

    No command.

    -
    CY_CAPSENSE_TU_CMD_SUSPEND_E 

    Suspend command.

    -
    CY_CAPSENSE_TU_CMD_RESUME_E 

    Resume command switches state from suspend to running.

    -
    CY_CAPSENSE_TU_CMD_RESTART_E 

    Restart command requests to perform CAPSENSE™ re-initialization.

    -
    CY_CAPSENSE_TU_CMD_RUN_SNR_TEST_E 

    Reserved.

    -
    CY_CAPSENSE_TU_CMD_PING_E 

    Ping command to check whether application program calls Cy_CapSense_RunTuner()

    -
    CY_CAPSENSE_TU_CMD_ONE_SCAN_E 

    Execute one scan cycle and then switch to suspend state.

    -
    CY_CAPSENSE_TU_CMD_WRITE_E 

    Writes specified data with offset into cy_capsense_tuner.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_widget_type_t

    - -
    -
    - -

    Defines widget types.

    - - - - - - - -
    Enumerator
    CY_CAPSENSE_WD_BUTTON_E 

    Button widget.

    -
    CY_CAPSENSE_WD_LINEAR_SLIDER_E 

    Linear Slider widget.

    -
    CY_CAPSENSE_WD_RADIAL_SLIDER_E 

    Radial Slider widget.

    -
    CY_CAPSENSE_WD_MATRIX_BUTTON_E 

    Matrix Buttons widget.

    -
    CY_CAPSENSE_WD_TOUCHPAD_E 

    Touchpad widget.

    -
    CY_CAPSENSE_WD_PROXIMITY_E 

    Proximity widget.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_return_status_t

    - -
    -
    - -

    Defines CAPSENSE™ return statuses types.

    - - - - - - -
    Enumerator
    CY_CAPSENSE_SUCCESS_E 

    The success return status.

    -
    CY_CAPSENSE_BAD_PARAM_E 

    One or more invalid input parameters.

    -
    CY_CAPSENSE_HW_LOCKED_E 

    The CSD HW block is captured by another middleware.

    -
    CY_CAPSENSE_HW_BUSY_E 

    The CSD HW block is busy by previous operation.

    -
    CY_CAPSENSE_TIMEOUT_E 

    The CSD HW block operation was not finished correctly.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_eltd_t

    - -
    -
    - - - - -
    enum cy_en_capsense_eltd_t
    -
    - -

    Defines types of electrode.

    - - - - -
    Enumerator
    CY_CAPSENSE_ELTD_TYPE_SELF_E 

    Electrode used as a sensor in CSD sensing method.

    -
    CY_CAPSENSE_ELTD_TYPE_MUT_TX_E 

    Electrode used as a TX in CSX sensing method.

    -
    CY_CAPSENSE_ELTD_TYPE_MUT_RX_E 

    Electrode used as a RX in CSX sensing method.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_cap_connection_t

    - -
    -
    - -

    Defines connections of sensing capacitors.

    - - - - - -
    Enumerator
    CY_CAPSENSE_CMODPAD_E 

    External capacitor is connected to dedicated CMOD pad.

    -
    CY_CAPSENSE_CTANKPAD_E 

    External capacitor is connected to dedicated CSH pad.

    -
    CY_CAPSENSE_CSHIELDPAD_E 

    External capacitor is connected to dedicated SHIELD pad.

    -
    CY_CAPSENSE_VREFEXTPAD_E 

    External capacitor is connected to dedicated VREF pad.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_callback_event_t

    - -
    -
    - -

    Defines CAPSENSE™ middleware execution events when the CAPSENSE™ callback can be executed.

    - - - -
    Enumerator
    CY_CAPSENSE_START_SAMPLE_E 

    Start Sample Callback.

    -

    The callback will be executed before each sensor scan triggering

    -
    CY_CAPSENSE_END_OF_SCAN_E 

    End Of Scan Callback.

    -

    The callback will be executed when sensor scan is finished and there is no other sensors in the queue to be scanned.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_bist_hw_config_t

    - -
    -
    - -

    Defines HW configurations types for BIST operations.

    - - - - - - - -
    Enumerator
    CY_CAPSENSE_BIST_HW_UNDEFINED_E 

    Initialization or releasing the CSD HW block.

    -
    CY_CAPSENSE_BIST_HW_SHORT_E 

    Short tests.

    -
    CY_CAPSENSE_BIST_HW_ELTD_CAP_E 

    Sensor and shield electrodes capacitance measurements with disabled shield.

    -
    CY_CAPSENSE_BIST_HW_EXTERNAL_CAP_E 

    External capacitors capacitance measurements.

    -
    CY_CAPSENSE_BIST_HW_VDDA_E 

    VDDA measurement.

    -
    CY_CAPSENSE_BIST_HW_ELTD_CAP_SH_E 

    Sensor electrodes capacitance measurements with configured shield.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_bist_io_state_t

    - -
    -
    - -

    Defines BIST IO Configuration.

    - - - - - - - -
    Enumerator
    CY_CAPSENSE_BIST_IO_UNDEFINED_E 

    The undefined state.

    -

    Pins are disconnected from AMuxBus

    -
    CY_CAPSENSE_BIST_IO_STRONG_E 

    The drive mode is set to Strong in off - Low.

    -

    The HSIOM is set to GPIO

    -
    CY_CAPSENSE_BIST_IO_HIGHZA_E 

    The drive mode is set to High-Z.

    -

    The HSIOM is set to GPIO

    -
    CY_CAPSENSE_BIST_IO_SENSE_E 

    The drive mode is set to High-Z/Strong in off (depending on the device platform).

    -

    The HSIOM is set to CSD sense connection.

    -
    CY_CAPSENSE_BIST_IO_SHIELD_E 

    The drive mode is set to High-Z/Strong in off (depending on the device platform).

    -

    The HSIOM is set to CSD shield connection.

    -
    CY_CAPSENSE_BIST_IO_STRONG_HIGH_E 

    The drive mode is set to Strong in off - High.

    -

    The HSIOM is set to GPIO

    -
    - -
    -
    - -

    ◆ cy_en_capsense_bist_status_t

    - -
    -
    - -

    Defines BIST result statuses.

    - - - - - - - - - - - -
    Enumerator
    CY_CAPSENSE_BIST_SUCCESS_E 

    The success test status.

    -
    CY_CAPSENSE_BIST_BAD_PARAM_E 

    The bad input parameters test status.

    -
    CY_CAPSENSE_BIST_HW_BUSY_E 

    The CSD HW block is busy by previous operation.

    -
    CY_CAPSENSE_BIST_LOW_LIMIT_E 

    The status for a low limit reached during the test.

    -
    CY_CAPSENSE_BIST_HIGH_LIMIT_E 

    The status for a high limit reached during the test.

    -
    CY_CAPSENSE_BIST_ERROR_E 

    The status for an error occurred during the test.

    -

    The test is not completed

    -
    CY_CAPSENSE_BIST_FEATURE_DISABLED_E 

    The BIST feature is disabled.

    -
    CY_CAPSENSE_BIST_TIMEOUT_E 

    The status for a timeout occurred during the test.

    -
    CY_CAPSENSE_BIST_BAD_CONFIG_E 

    The bad configuration parameters test status.

    -
    CY_CAPSENSE_BIST_FAIL_E 

    The failed test status.

    -
    - -
    -
    - -

    ◆ cy_en_capsense_msc_raw_mode_t

    - -
    -
    - -

    Defines the raw count accumulation mode for MSC HW block.

    - - - -
    Enumerator
    CY_CAPSENSE_MSC_RAW_SATURATE_E 

    In this scenario, RAW_COUNT is clamped at 0xFFFF and RESULT_FIFO_RD.OVERFLOW is set.

    -
    CY_CAPSENSE_MSC_RAW_OVERFLOW_E 

    In this scenario, RAW_COUNT rolls over and RESULT_FIFO_RD.OVERFLOW is set.

    -

    This mode allows more sensitive tuning if measuring baseline capacitance

    -
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__enums.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__enums.js deleted file mode 100644 index 7cc0ad2223..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__enums.js +++ /dev/null @@ -1,86 +0,0 @@ -var group__group__capsense__enums = -[ - [ "cy_en_capsense_bist_external_cap_id_t", "group__group__capsense__enums.html#ga07f6f8cbe8fa1cebb08e2bd44e9de29b", [ - [ "CY_CAPSENSE_BIST_CMOD_ID_E", "group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29baf3745617d4c520ecd77a4b87a8fe8172", null ], - [ "CY_CAPSENSE_BIST_CINTA_ID_E", "group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29bacfe90ee851fdb0c5990cf9c255c2142d", null ], - [ "CY_CAPSENSE_BIST_CINTB_ID_E", "group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29ba8d03343ec314140673d8b7034caeacc8", null ], - [ "CY_CAPSENSE_BIST_CSH_ID_E", "group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29ba86cb63cafed2d806f3a916f9ab51890f", null ] - ] ], - [ "cy_en_capsense_tuner_state_t", "group__group__capsense__enums.html#gaadb1f5ee70c7d52a5375cdae765093dc", [ - [ "CY_CAPSENSE_TU_FSM_RUNNING", "group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dca90d0945b863d6c568c124179622abcb8", null ], - [ "CY_CAPSENSE_TU_FSM_SUSPENDED", "group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dcabd652b762757d2927ff7efc5b61d58ea", null ], - [ "CY_CAPSENSE_TU_FSM_ONE_SCAN", "group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dca8bfd4b992045ded35c5a92a3fd1de30a", null ] - ] ], - [ "cy_en_capsense_tuner_cmd_t", "group__group__capsense__enums.html#ga049118d05a2bdf4f2d37d7b75c511f79", [ - [ "CY_CAPSENSE_TU_CMD_NONE_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a3fdf6f04116abcaf626fda9269e9dba8", null ], - [ "CY_CAPSENSE_TU_CMD_SUSPEND_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a86106715ac1df2c1149a7c9dedb51469", null ], - [ "CY_CAPSENSE_TU_CMD_RESUME_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79ae9746952315a1ef0fc8e294383b37e0f", null ], - [ "CY_CAPSENSE_TU_CMD_RESTART_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79ab9eb1fff3c78f2eb26b9a33c667e5385", null ], - [ "CY_CAPSENSE_TU_CMD_RUN_SNR_TEST_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a87282482662ce591d86c7767bae8217a", null ], - [ "CY_CAPSENSE_TU_CMD_PING_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a133f8c8b5cdf8f35e298d8cd203d17c5", null ], - [ "CY_CAPSENSE_TU_CMD_ONE_SCAN_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a4878ec99a8b651b4a1812af156b4df6d", null ], - [ "CY_CAPSENSE_TU_CMD_WRITE_E", "group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a0598ab56c52f94b05400c1c4b52243b9", null ] - ] ], - [ "cy_en_capsense_widget_type_t", "group__group__capsense__enums.html#ga855d894b24929f0d7d2774dfc4266d60", [ - [ "CY_CAPSENSE_WD_BUTTON_E", "group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a12b429b17049aec3da05bba98d86d704", null ], - [ "CY_CAPSENSE_WD_LINEAR_SLIDER_E", "group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60ab7ce0cce1660ed385f8f570fce1a89ea", null ], - [ "CY_CAPSENSE_WD_RADIAL_SLIDER_E", "group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a50cac3d4ee616bbc7e0c9ed9dced309e", null ], - [ "CY_CAPSENSE_WD_MATRIX_BUTTON_E", "group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a49a619428a7d70767032000b70d3c5d5", null ], - [ "CY_CAPSENSE_WD_TOUCHPAD_E", "group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a71ed340a3d5c1ec96169c5a7d4ee91df", null ], - [ "CY_CAPSENSE_WD_PROXIMITY_E", "group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a840f00e988ee5ed8d1b0ca0a6f91fe2c", null ] - ] ], - [ "cy_en_capsense_return_status_t", "group__group__capsense__enums.html#gaa96ebe173a9a3ec24f7461f696482b11", [ - [ "CY_CAPSENSE_SUCCESS_E", "group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a3ddd2a0c59c25f817f852c4d899784c3", null ], - [ "CY_CAPSENSE_BAD_PARAM_E", "group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11ae2fbf89a3a3b2871d0a0e5e5d3d8c1e3", null ], - [ "CY_CAPSENSE_HW_LOCKED_E", "group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11abb6a9f4b907a0729c96d87544d6e1c09", null ], - [ "CY_CAPSENSE_HW_BUSY_E", "group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a862eaeca0dacb3f3eb6d3209ed7f9fe1", null ], - [ "CY_CAPSENSE_TIMEOUT_E", "group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a98e6cd62cd72566bbd7025c1c4d9995c", null ] - ] ], - [ "cy_en_capsense_eltd_t", "group__group__capsense__enums.html#ga8d3df6022888bbb21e3e64e2b045274d", [ - [ "CY_CAPSENSE_ELTD_TYPE_SELF_E", "group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274da6b30d1746bc14d69c2fff2005dafcda8", null ], - [ "CY_CAPSENSE_ELTD_TYPE_MUT_TX_E", "group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274daf6a726323bc533e487382a42b87f4887", null ], - [ "CY_CAPSENSE_ELTD_TYPE_MUT_RX_E", "group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274da4ca96cabafe3a952831e44d17b8dff12", null ] - ] ], - [ "cy_en_capsense_cap_connection_t", "group__group__capsense__enums.html#gac15b3ea1caa3c42666ba5e50cabb416f", [ - [ "CY_CAPSENSE_CMODPAD_E", "group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa40e8044b7c69e4bf9cfe872fccec8db2", null ], - [ "CY_CAPSENSE_CTANKPAD_E", "group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa818a3440d9895ed39574ccaba909ca02", null ], - [ "CY_CAPSENSE_CSHIELDPAD_E", "group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa4443cabccd1c4ba6e0161421b2e68ef7", null ], - [ "CY_CAPSENSE_VREFEXTPAD_E", "group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa420665561af172fd28659e2c7e728df5", null ] - ] ], - [ "cy_en_capsense_callback_event_t", "group__group__capsense__enums.html#gabfbff81b8b80d4ee1a1d53c1fe0c9a11", [ - [ "CY_CAPSENSE_START_SAMPLE_E", "group__group__capsense__enums.html#ggabfbff81b8b80d4ee1a1d53c1fe0c9a11a32ca7c2ce1843b83c83e7461de88e42f", null ], - [ "CY_CAPSENSE_END_OF_SCAN_E", "group__group__capsense__enums.html#ggabfbff81b8b80d4ee1a1d53c1fe0c9a11adb60f8a07fdcd4959e1cc682b050ac58", null ] - ] ], - [ "cy_en_capsense_bist_hw_config_t", "group__group__capsense__enums.html#ga8f12924cdfe09cc22def0407e512c60b", [ - [ "CY_CAPSENSE_BIST_HW_UNDEFINED_E", "group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba6721027a5041a590fb580bbb387468c4", null ], - [ "CY_CAPSENSE_BIST_HW_SHORT_E", "group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bae808fdf59791814d38e48e3d4e3d6cab", null ], - [ "CY_CAPSENSE_BIST_HW_ELTD_CAP_E", "group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bac3f24b124e6502bc91a2a87c8dea3467", null ], - [ "CY_CAPSENSE_BIST_HW_EXTERNAL_CAP_E", "group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba0cccf8fa84261cb7e4f6836458bad6f8", null ], - [ "CY_CAPSENSE_BIST_HW_VDDA_E", "group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba820f53158bd2e8d1cfb2651079032936", null ], - [ "CY_CAPSENSE_BIST_HW_ELTD_CAP_SH_E", "group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bae8573fab188fc42701a49c742c883086", null ] - ] ], - [ "cy_en_capsense_bist_io_state_t", "group__group__capsense__enums.html#ga0e370bf700c29e03461030db2779ceec", [ - [ "CY_CAPSENSE_BIST_IO_UNDEFINED_E", "group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca1b4ffa3b03cc730480b1ee44be73d09c", null ], - [ "CY_CAPSENSE_BIST_IO_STRONG_E", "group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca4e7f6404fa329f5f8a4e8801a34e8080", null ], - [ "CY_CAPSENSE_BIST_IO_HIGHZA_E", "group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca7532ce3fd04bc5ae9a9a554367f24e54", null ], - [ "CY_CAPSENSE_BIST_IO_SENSE_E", "group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca3f1270ba1326fae64c3df88540c7bb7f", null ], - [ "CY_CAPSENSE_BIST_IO_SHIELD_E", "group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca15bc3a003e4a77d67be2807aa1b6bdba", null ], - [ "CY_CAPSENSE_BIST_IO_STRONG_HIGH_E", "group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca532cc6485eb0f37cac049f6a268465a6", null ] - ] ], - [ "cy_en_capsense_bist_status_t", "group__group__capsense__enums.html#gafbe67572b1e6a637676b0a6e1040857c", [ - [ "CY_CAPSENSE_BIST_SUCCESS_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca446645c89682b433f4294cc2251217f1", null ], - [ "CY_CAPSENSE_BIST_BAD_PARAM_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca66ae37f5dda5bc54f08f39a3c47af841", null ], - [ "CY_CAPSENSE_BIST_HW_BUSY_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca6c651f6e693a610e55047aed09a0ac5f", null ], - [ "CY_CAPSENSE_BIST_LOW_LIMIT_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca903bdfd6556833de241df23a903f7b62", null ], - [ "CY_CAPSENSE_BIST_HIGH_LIMIT_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857cad8c13f3c18b3baae715bf7655356a528", null ], - [ "CY_CAPSENSE_BIST_ERROR_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca8454fc9f2934cdb63ed2a9962b318749", null ], - [ "CY_CAPSENSE_BIST_FEATURE_DISABLED_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857caaaa05668fc0be7bfb934a228b0d9410c", null ], - [ "CY_CAPSENSE_BIST_TIMEOUT_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca7c3531ff81e35c5a17b9bb6326027710", null ], - [ "CY_CAPSENSE_BIST_BAD_CONFIG_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857cae73550f4b25fe2bb7f8a6504c85dd93c", null ], - [ "CY_CAPSENSE_BIST_FAIL_E", "group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca561a9faf24c500cc9990b46117fdcace", null ] - ] ], - [ "cy_en_capsense_msc_raw_mode_t", "group__group__capsense__enums.html#ga2f401fe83daac81512b02b33fc967f57", [ - [ "CY_CAPSENSE_MSC_RAW_SATURATE_E", "group__group__capsense__enums.html#gga2f401fe83daac81512b02b33fc967f57a7f25b1c06cfbe093b6d3c3355a31a19c", null ], - [ "CY_CAPSENSE_MSC_RAW_OVERFLOW_E", "group__group__capsense__enums.html#gga2f401fe83daac81512b02b33fc967f57ad65e8f38f552e1a10fc39b779fcbe6a2", null ] - ] ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__gesture__structures.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__gesture__structures.html deleted file mode 100644 index b5fb48cf40..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__gesture__structures.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Gesture Structures - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Gesture Structures
    -
    -
    -

    General Description

    -

    The Gesture-related structures.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Structures

    struct  cy_stc_capsense_gesture_config_t
     Gesture configuration structure. More...
     
    struct  cy_stc_capsense_gesture_position_t
     Gesture position structure. More...
     
    struct  cy_stc_capsense_ofsc_context_t
     Gesture One Finger Single Click context structure. More...
     
    struct  cy_stc_capsense_ofdc_context_t
     Gesture One Finger Double Click context structure. More...
     
    struct  cy_stc_capsense_ofcd_context_t
     Gesture One Finger Click and Drag context structure. More...
     
    struct  cy_stc_capsense_tfsc_context_t
     Gesture Two Finger Single Click context structure. More...
     
    struct  cy_stc_capsense_ofsl_context_t
     Gesture One Finger Scroll context structure. More...
     
    struct  cy_stc_capsense_tfsl_context_t
     Gesture Two Finger Scroll context structure. More...
     
    struct  cy_stc_capsense_offl_context_t
     Gesture One Finger Flick context structure. More...
     
    struct  cy_stc_capsense_ofes_context_t
     Gesture One Finger Edge Swipe context structure. More...
     
    struct  cy_stc_capsense_tfzm_context_t
     Gesture Two Finger Zoom context structure. More...
     
    struct  cy_stc_capsense_ofrt_context_t
     Gesture One Finger Rotate context structure. More...
     
    struct  cy_stc_capsense_gesture_context_t
     Gesture global context structure. More...
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__gesture__structures.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__gesture__structures.js deleted file mode 100644 index 3815154517..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__gesture__structures.js +++ /dev/null @@ -1,111 +0,0 @@ -var group__group__capsense__gesture__structures = -[ - [ "cy_stc_capsense_gesture_config_t", "structcy__stc__capsense__gesture__config__t.html", [ - [ "resolutionX", "structcy__stc__capsense__gesture__config__t.html#abcdafc8f4ecbb01e2202dee3ed252364", null ], - [ "resolutionY", "structcy__stc__capsense__gesture__config__t.html#ac418cd1cf76d0dcfe90232450954eb82", null ], - [ "gestureEnableMask", "structcy__stc__capsense__gesture__config__t.html#a47ee76801d9ab0c1c11e057d12fb37cc", null ], - [ "flickTimeoutMax", "structcy__stc__capsense__gesture__config__t.html#ac6379bfa4aa94d4031692bc31eeee6e1", null ], - [ "edgeTimeoutMax", "structcy__stc__capsense__gesture__config__t.html#a2b78f409219d6f4de0e86b0554c2ec57", null ], - [ "clickTimeoutMax", "structcy__stc__capsense__gesture__config__t.html#a3b1107f255188a2b7ad34f2445d45ca7", null ], - [ "clickTimeoutMin", "structcy__stc__capsense__gesture__config__t.html#a3fd78e04e45942e2780ed93e8bfabcf2", null ], - [ "secondClickIntervalMax", "structcy__stc__capsense__gesture__config__t.html#a1504ee52ad24c04ac285a6fa3acb3bde", null ], - [ "secondClickIntervalMin", "structcy__stc__capsense__gesture__config__t.html#a138b9550ac79485932c329daeb3a552f", null ], - [ "zoomDistanceMin", "structcy__stc__capsense__gesture__config__t.html#ac80c3e733cdc3999e48f02b94c629f05", null ], - [ "flickDistanceMin", "structcy__stc__capsense__gesture__config__t.html#a4368430ad62e713cfa9c91275ffcceda", null ], - [ "scrollDistanceMin", "structcy__stc__capsense__gesture__config__t.html#a27e76edb6a8d860482a55b8f4071f337", null ], - [ "rotateDistanceMin", "structcy__stc__capsense__gesture__config__t.html#adf604320c16786aa9e89b5f02f02a643", null ], - [ "edgeDistanceMin", "structcy__stc__capsense__gesture__config__t.html#a18f7465297e8f690506025215800585a", null ], - [ "secondClickDistanceMax", "structcy__stc__capsense__gesture__config__t.html#a32dd076cfd7800d96f465c6574059443", null ], - [ "clickDistanceMax", "structcy__stc__capsense__gesture__config__t.html#a4bce321bd5bc00feafad1e32f35c6c0b", null ], - [ "zoomDebounce", "structcy__stc__capsense__gesture__config__t.html#a13a289ac07a253455c04f3b124e9a7db", null ], - [ "scrollDebounce", "structcy__stc__capsense__gesture__config__t.html#a3048bc2987cdde967abbbd4a18051ae1", null ], - [ "rotateDebounce", "structcy__stc__capsense__gesture__config__t.html#aeebc2692f6432fa15394678fb0278a9b", null ], - [ "edgeAngleMax", "structcy__stc__capsense__gesture__config__t.html#a3e6b32e61c14bedfe0dae9fa6fa2ae76", null ], - [ "edgeEdgeSize", "structcy__stc__capsense__gesture__config__t.html#aa9a25c2b003808ad393ca2a00dc3f531", null ] - ] ], - [ "cy_stc_capsense_gesture_position_t", "structcy__stc__capsense__gesture__position__t.html", [ - [ "x", "structcy__stc__capsense__gesture__position__t.html#aa7c7a9666ddec68e4ace38a030ecfdab", null ], - [ "y", "structcy__stc__capsense__gesture__position__t.html#a3a1c2f83221a848b380ec4c10362187a", null ] - ] ], - [ "cy_stc_capsense_ofsc_context_t", "structcy__stc__capsense__ofsc__context__t.html", [ - [ "touchStartTime1", "structcy__stc__capsense__ofsc__context__t.html#a659fadd332317157ed92646ab617c108", null ], - [ "touchStartPosition1", "structcy__stc__capsense__ofsc__context__t.html#a9015721f99554c92a7dc46e2c21f94ed", null ], - [ "state", "structcy__stc__capsense__ofsc__context__t.html#a8b9f3178a921e342a800d39f2c276911", null ] - ] ], - [ "cy_stc_capsense_ofdc_context_t", "structcy__stc__capsense__ofdc__context__t.html", [ - [ "touchStartTime1", "structcy__stc__capsense__ofdc__context__t.html#a4301e8f87ce8a40ecc73c415ebd56eab", null ], - [ "touchStartPosition1", "structcy__stc__capsense__ofdc__context__t.html#a22e58ee9031099dd6d48aee61a1aadc2", null ], - [ "state", "structcy__stc__capsense__ofdc__context__t.html#a68bdeb81301daf15477f4e5130a60b6d", null ] - ] ], - [ "cy_stc_capsense_ofcd_context_t", "structcy__stc__capsense__ofcd__context__t.html", [ - [ "touchStartTime1", "structcy__stc__capsense__ofcd__context__t.html#adac662a3fdcbff352d05b47127722437", null ], - [ "touchStartPosition1", "structcy__stc__capsense__ofcd__context__t.html#aa31dd67b76a421f313721950384c14ab", null ], - [ "state", "structcy__stc__capsense__ofcd__context__t.html#affdde7ae14962e5fb4a245bcc6431f46", null ] - ] ], - [ "cy_stc_capsense_tfsc_context_t", "structcy__stc__capsense__tfsc__context__t.html", [ - [ "touchStartTime1", "structcy__stc__capsense__tfsc__context__t.html#a8c266f5d2b658bb7e3fa61d33c02d02e", null ], - [ "touchStartTime2", "structcy__stc__capsense__tfsc__context__t.html#ad05feec06a31053de7213da66168c4ff", null ], - [ "touchStartPosition1", "structcy__stc__capsense__tfsc__context__t.html#ac2bb0da57282c795cbf0f3d4c1c50e94", null ], - [ "touchStartPosition2", "structcy__stc__capsense__tfsc__context__t.html#a8b6bd5906acd0001b1ceae797db7a8a3", null ], - [ "state", "structcy__stc__capsense__tfsc__context__t.html#a8e22783a5b0ccb54c439fceb105978e4", null ] - ] ], - [ "cy_stc_capsense_ofsl_context_t", "structcy__stc__capsense__ofsl__context__t.html", [ - [ "touchStartPosition1", "structcy__stc__capsense__ofsl__context__t.html#ab6b900847f84996ed25c000469c6cba4", null ], - [ "state", "structcy__stc__capsense__ofsl__context__t.html#a7df429d86ffa5f133a64f3fa4a9c63bc", null ], - [ "debounce", "structcy__stc__capsense__ofsl__context__t.html#a8b38d4d85c4c429162a82f66494bab4c", null ], - [ "direction", "structcy__stc__capsense__ofsl__context__t.html#a16e86b0e4a4e18f39d1d04af5f19f77b", null ] - ] ], - [ "cy_stc_capsense_tfsl_context_t", "structcy__stc__capsense__tfsl__context__t.html", [ - [ "touchStartPosition1", "structcy__stc__capsense__tfsl__context__t.html#aaf2bf408c8cea2a3ad8331676a487aa3", null ], - [ "touchStartPosition2", "structcy__stc__capsense__tfsl__context__t.html#abda60903e50cdc56ca4bc60476c2fedf", null ], - [ "state", "structcy__stc__capsense__tfsl__context__t.html#aff4bf63c794f8b5f1c07d5473dbfa670", null ], - [ "debounce", "structcy__stc__capsense__tfsl__context__t.html#a716e4c137b9094a50dd9c85cb46327ea", null ], - [ "direction", "structcy__stc__capsense__tfsl__context__t.html#af33814e8e0f9b68b402b92868d440997", null ] - ] ], - [ "cy_stc_capsense_offl_context_t", "structcy__stc__capsense__offl__context__t.html", [ - [ "touchStartTime1", "structcy__stc__capsense__offl__context__t.html#a3c51b81c7a63872b85d1abafc9f3e35d", null ], - [ "touchStartPosition1", "structcy__stc__capsense__offl__context__t.html#aa4bcab6ceb424cae93b48af4ba2ef1c0", null ], - [ "state", "structcy__stc__capsense__offl__context__t.html#ab75c1891770f28ddf2e351352ad44ec9", null ] - ] ], - [ "cy_stc_capsense_ofes_context_t", "structcy__stc__capsense__ofes__context__t.html", [ - [ "touchStartTime1", "structcy__stc__capsense__ofes__context__t.html#aaf7cec8bf10a12f82431b1cfdc76fa3c", null ], - [ "touchStartPosition1", "structcy__stc__capsense__ofes__context__t.html#ac6dceb387c709e7425014e0b6cbba69d", null ], - [ "state", "structcy__stc__capsense__ofes__context__t.html#aceb2451dce6a58a27a57aad7567d96de", null ], - [ "edge", "structcy__stc__capsense__ofes__context__t.html#ac157aeb4721e704a38dff878b34f4bbf", null ] - ] ], - [ "cy_stc_capsense_tfzm_context_t", "structcy__stc__capsense__tfzm__context__t.html", [ - [ "touchStartPosition1", "structcy__stc__capsense__tfzm__context__t.html#a60cf7f1c4af96f6113fbe04db092a80e", null ], - [ "touchStartPosition2", "structcy__stc__capsense__tfzm__context__t.html#a47690ba09642262dc60c9996471cf3a7", null ], - [ "distanceX", "structcy__stc__capsense__tfzm__context__t.html#aeba8c48b23a049c2c427c01d79f8cf4a", null ], - [ "distanceY", "structcy__stc__capsense__tfzm__context__t.html#af80b64aea8441ddd468baa43048846a4", null ], - [ "state", "structcy__stc__capsense__tfzm__context__t.html#a4d55acf75ebf067266e51707eace00c2", null ], - [ "debounce", "structcy__stc__capsense__tfzm__context__t.html#a3a6d2543ec80c8af2b26ecd1e9cb4544", null ] - ] ], - [ "cy_stc_capsense_ofrt_context_t", "structcy__stc__capsense__ofrt__context__t.html", [ - [ "touchStartPosition1", "structcy__stc__capsense__ofrt__context__t.html#a3655e2f6e6fccd33a99ae0919965a02d", null ], - [ "state", "structcy__stc__capsense__ofrt__context__t.html#a15e10b8b2d960028f26f3781bd86d1b2", null ], - [ "history", "structcy__stc__capsense__ofrt__context__t.html#a4df4b5e9a02cba4b6bba8e6c10c2c68e", null ], - [ "debounce", "structcy__stc__capsense__ofrt__context__t.html#a3d14b869436d9a7a23c57db47a665140", null ] - ] ], - [ "cy_stc_capsense_gesture_context_t", "structcy__stc__capsense__gesture__context__t.html", [ - [ "position1", "structcy__stc__capsense__gesture__context__t.html#a35b0182d531b19cf23e454b49ce332bd", null ], - [ "positionLast1", "structcy__stc__capsense__gesture__context__t.html#aa9ca0fa15854876acb6836093813d18f", null ], - [ "position2", "structcy__stc__capsense__gesture__context__t.html#a57ddd934f52502d73624fd05c643fe01", null ], - [ "positionLast2", "structcy__stc__capsense__gesture__context__t.html#a41e2cc14c3e6e152afe249821d218619", null ], - [ "timestamp", "structcy__stc__capsense__gesture__context__t.html#a2a24ea7e25b9910d7f02e7e19e43195a", null ], - [ "detected", "structcy__stc__capsense__gesture__context__t.html#a607d08f453a989754dd877c3118ec4c4", null ], - [ "direction", "structcy__stc__capsense__gesture__context__t.html#a2951e786f1279c80f1210b5d69339681", null ], - [ "ofrtContext", "structcy__stc__capsense__gesture__context__t.html#a48dfae93de6b33ba60cdd10f8292e590", null ], - [ "ofslContext", "structcy__stc__capsense__gesture__context__t.html#a7f7257503a55d3790ab222a6ac280a85", null ], - [ "tfzmContext", "structcy__stc__capsense__gesture__context__t.html#abdb25e19025b77d4115b551bf54454b5", null ], - [ "tfscContext", "structcy__stc__capsense__gesture__context__t.html#a56adc5033fdd287a8fefb4a6c8b1a251", null ], - [ "ofesContext", "structcy__stc__capsense__gesture__context__t.html#a34feed1bf649ef82f09da51745d0514e", null ], - [ "offlContext", "structcy__stc__capsense__gesture__context__t.html#a7a6f0b99bddc8e18cfea0fedb39e00b8", null ], - [ "ofscContext", "structcy__stc__capsense__gesture__context__t.html#a72755d5985247fd60078900d1482ddfc", null ], - [ "ofdcContext", "structcy__stc__capsense__gesture__context__t.html#a41504e9edd68b6aab487492c95b6a059", null ], - [ "ofcdContext", "structcy__stc__capsense__gesture__context__t.html#ab916aaccb1b24a8dc5eee9385d0d2041", null ], - [ "tfslContext", "structcy__stc__capsense__gesture__context__t.html#a3e8c82cbc4289674f444114478fc1a7b", null ], - [ "numPosition", "structcy__stc__capsense__gesture__context__t.html#a5f96cbd3fde2fc2007499bdfc5e8ad59", null ], - [ "numPositionLast", "structcy__stc__capsense__gesture__context__t.html#adfc86db072daa3b309979efb5768456d", null ] - ] ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__high__level.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__high__level.html deleted file mode 100644 index cd56bc133c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__high__level.html +++ /dev/null @@ -1,1552 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: High-level Functions - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    High-level Functions
    -
    -
    -

    General Description

    -

    High-level functions represent the highest abstraction layer of the CAPSENSE™ middleware.

    -

    These functions perform tasks such as scanning, data processing, data reporting and tuning interfaces. When performing a task, different initialization is required based on a sensing method or type of widgets is automatically handled by these functions. Therefore, these functions are sensing methods, features, and widget type agnostics.

    -

    All the tasks required to implement a sensing system can be fulfilled by the high-level functions. But, there is a set of Low-level Functions that provides access to lower level and specific tasks. If a design requires access to low-level tasks, these functions can be used. The functions related to a given sensing methods are not available if the corresponding method is disabled.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Functions

    cy_capsense_status_t Cy_CapSense_Init (cy_stc_capsense_context_t *context)
     Captures HW blocks (one or more) for CAPSENSE™ operations and configures them to the default state. More...
     
    cy_capsense_status_t Cy_CapSense_DeInit (cy_stc_capsense_context_t *context)
     Stops the middleware operation and releases the CAPSENSE™ captured HW blocks. More...
     
    cy_capsense_status_t Cy_CapSense_Enable (cy_stc_capsense_context_t *context)
     Initializes the CAPSENSE™ firmware modules. More...
     
    cy_capsense_status_t Cy_CapSense_Save (cy_stc_capsense_context_t *context)
     Saves the state of CAPSENSE™ so the functionality can be restored using the Cy_CapSense_Restore() function. More...
     
    cy_capsense_status_t Cy_CapSense_Restore (cy_stc_capsense_context_t *context)
     Resumes the middleware operation if the Cy_CapSense_Save() function was called previously. More...
     
    cy_capsense_status_t Cy_CapSense_ProcessAllWidgets (cy_stc_capsense_context_t *context)
     Performs full data processing of all enabled widgets. More...
     
    cy_capsense_status_t Cy_CapSense_ProcessWidget (uint32_t widgetId, cy_stc_capsense_context_t *context)
     Performs full data processing of the specified widget if it is enabled. More...
     
    void Cy_CapSense_IncrementGestureTimestamp (cy_stc_capsense_context_t *context)
     Increments the timestamp register for the predefined timestamp interval. More...
     
    void Cy_CapSense_SetGestureTimestamp (uint32_t value, cy_stc_capsense_context_t *context)
     Rewrites the timestamp register by the specified value. More...
     
    void Cy_CapSense_Wakeup (const cy_stc_capsense_context_t *context)
     Resumes the middleware after System Deep Sleep. More...
     
    cy_en_syspm_status_t Cy_CapSense_DeepSleepCallback (cy_stc_syspm_callback_params_t *callbackParams, cy_en_syspm_callback_mode_t mode)
     Handles CPU active to System Deep Sleep power mode transition for the CAPSENSE™ middleware. More...
     
    cy_capsense_status_t Cy_CapSense_RegisterCallback (cy_en_capsense_callback_event_t callbackType, cy_capsense_callback_t callbackFunction, cy_stc_capsense_context_t *context)
     Registers a ures's callback function. More...
     
    cy_capsense_status_t Cy_CapSense_UnRegisterCallback (cy_en_capsense_callback_event_t callbackType, cy_stc_capsense_context_t *context)
     This function unregisters a previously registered user's callback function in the CAPSENSE™ middleware. More...
     
    uint32_t Cy_CapSense_DecodeWidgetGestures (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Performs decoding of all gestures for the specified widget. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_RunSelfTest (uint32_t testEnMask, cy_stc_capsense_context_t *context)
     Runs built-in self-tests specified by the test enable mask. More...
     
    cy_capsense_status_t Cy_CapSense_ScanAllWidgets (cy_stc_capsense_context_t *context)
     Initiates scanning of all enabled widgets (and sensors) in the project. More...
     
    cy_capsense_status_t Cy_CapSense_ScanWidget (uint32_t widgetId, cy_stc_capsense_context_t *context)
     Initiates the scanning of all sensors in the widget. More...
     
    uint32_t Cy_CapSense_IsBusy (const cy_stc_capsense_context_t *context)
     This function returns a status of the CAPSENSE™ middleware whether a scan is currently in progress or not. More...
     
    void Cy_CapSense_InterruptHandler (void *base, cy_stc_capsense_context_t *context)
     Implements interrupt service routine for CAPSENSE™ Middleware. More...
     
    cy_capsense_status_t Cy_CapSense_SetupWidget (uint32_t widgetId, cy_stc_capsense_context_t *context)
     Performs the initialization required to scan the specified widget. More...
     
    cy_capsense_status_t Cy_CapSense_Scan (cy_stc_capsense_context_t *context)
     Initiates scanning of all the sensors in the widget initialized by Cy_CapSense_SetupWidget(), if no scan is in progress. More...
     
    cy_capsense_status_t Cy_CapSense_ScanAllSlots (cy_stc_capsense_context_t *context)
     Initiates the non-blocking scan of all slots. More...
     
    cy_capsense_status_t Cy_CapSense_ScanSlots (uint32_t startSlotId, uint32_t numberSlots, cy_stc_capsense_context_t *context)
     Initiates the non-blocking scan of specified slots. More...
     
    cy_capsense_mw_state_t Cy_CapSense_MwState (const cy_stc_capsense_context_t *context)
     This function returns a detailed state of the CAPSENSE™ middleware and MSC hardware in Single- or Multi-channel mode. More...
     
    uint32_t Cy_CapSense_IsAnyWidgetActive (const cy_stc_capsense_context_t *context)
     Reports whether any widget has detected touch. More...
     
    uint32_t Cy_CapSense_IsWidgetActive (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Reports whether the specified widget detected touch on any of its sensors. More...
     
    uint32_t Cy_CapSense_IsSensorActive (uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context)
     Reports whether the specified sensor in the widget detected touch. More...
     
    uint32_t Cy_CapSense_IsProximitySensorActive (uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context)
     Reports the status of the specified proximity widget/sensor. More...
     
    cy_stc_capsense_touch_tCy_CapSense_GetTouchInfo (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Reports the details of touch position detected on the specified touchpad, matrix buttons or slider widgets. More...
     
    uint32_t Cy_CapSense_RunTuner (cy_stc_capsense_context_t *context)
     Establishes synchronized operation between the CAPSENSE™ Middleware and the CAPSENSE™ Tuner tool. More...
     
    uint32_t Cy_CapSense_CheckTunerCmdIntegrity (const uint8_t *commandPacket)
     Checks command format, header, tail, CRC, etc. More...
     
    -

    Function Documentation

    - -

    ◆ Cy_CapSense_Init()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_Init (cy_stc_capsense_context_tcontext)
    -
    - -

    Captures HW blocks (one or more) for CAPSENSE™ operations and configures them to the default state.

    -

    Call this function with the application program prior to calling any other function of the middleware.

    -

    The following tasks are executed:

      -
    1. Capturing not used HW blocks. If any of HW block is already in use, then the function returns the fail status, and the application program should perform corresponding actions. For example, releasing the HW block captured by another middleware.
    2. -
    3. If the HW block has been captured successfully, this function configures it to the default state.
    4. -
    -

    After the middleware is configured using the Cy_CapSense_Init() function, the application program configures and enables the HW block interrupt(s), and then call of the Cy_CapSense_Enable() function to complete the middleware initialization process. See the function usage example below for more details.

    -

    When the middleware operation is stopped by the Cy_CapSense_DeInit() function, subsequent call of the Cy_CapSense_Init() function repeats initialization process and it is not needed to call the Cy_CapSense_Enable() function second time. However, to implement time-multiplexed mode (sharing the HW block(s) between multiple middleware) the Cy_CapSense_Save() and Cy_CapSense_Restore() functions should be used instead of the Cy_CapSense_DeInit() and Cy_CapSense_Init() functions for further compatibility.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t generated by the CAPSENSE™ Configurator tool. The structure contains both, CAPSENSE™ configuration and internal data and it is used during whole CAPSENSE™ operation.
    -
    -
    -
    Returns
    Returns the status of the initialization process. If CY_CAPSENSE_STATUS_SUCCESS is not received, some of the initialization fails, the middleware may not operate as expected, and repeating of initialization is required.
    -
    Function Usage
    -
    /* Capture the CAPSENSE&trade; HW block and initialize it to the default state. */
    Cy_CapSense_Init(&cy_capsense_context);
    /* Initialize CAPSENSE&trade; interrupt */
    Cy_SysInt_Init(&CapSense_ISR_cfg, &snippet_Cy_CapSense_IntHandler);
    NVIC_ClearPendingIRQ(CapSense_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CapSense_ISR_cfg.intrSrc);
    /* Initialize the CAPSENSE&trade; firmware modules. */
    Cy_CapSense_Enable(&cy_capsense_context);

    The 'cy_capsense_context' variable that is used as the parameter of the Cy_CapSense_Init() and Cy_CapSense_Enable() functions is declared in the cycfg_capsense.h file.

    -

    The CapSense_ISR_cfg variable should be declared by the application program according to the examples below:
    - For PSoC™ 4 CPU or for PSoC™ 6 CM0+ core:

    #if (!(CY_CAPSENSE_PSOC4_FIFTH_GEN))
    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* CM0+ interrupt is NVIC #2 */
    .intrPriority = 3u, /* Interrupt priority is 3 */
    };
    #else
    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = msc_0_interrupt_IRQn, /* CM0+ interrupt is NVIC #2 */
    .intrPriority = 3u, /* Interrupt priority is 3 */
    };
    #endif

    For CM4 core:

    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* Interrupt source is the CSD interrupt */
    .intrPriority = 7u, /* Interrupt priority is 7 */
    };

    The CAPSENSE™ interrupt handler should be declared by the application program according to the example below:

    void snippet_Cy_CapSense_IntHandler(void)
    {
    Cy_CapSense_InterruptHandler(CapSense_HW, &cy_capsense_context);
    }

    The CapSense_HW is the pointer to the base register address of the CAPSENSE™ HW block. A macro for the pointer is in the cycfg_peripherals.h file defined as <Personality_Name>_HW. If no name is specified, the following default names are used:

      -
    • csd_<Block_Number>_csd_<Block_Number>_HW - for forth-generation CAPSENSE™ HW.
    • -
    • msc_<Block_Number>_msc_<Block_Number>_HW - for fifth-generation CAPSENSE™ HW.
    • -
    - -
    -
    - -

    ◆ Cy_CapSense_DeInit()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_DeInit (cy_stc_capsense_context_tcontext)
    -
    - -

    Stops the middleware operation and releases the CAPSENSE™ captured HW blocks.

    -

    No sensor scanning can be executed when the middleware is stopped. This function should be called only when no scanning is in progress. I.e. Cy_CapSense_IsBusy() returns a non-busy status.

    -

    After the middleware stops, the CAPSENSE™ HW block(s) may be reconfigured with the application program or other middleware for any other usage.

    -

    When the middleware operation is stopped by the Cy_CapSense_DeInit() function, subsequent call of the Cy_CapSense_Init() function repeats initialization process and it is not needed to call the Cy_CapSense_Enable() function second time. However, to implement time-multiplexed mode (sharing the CAPSENSE™ HW block(s) between multiple middleware) the Cy_CapSense_Save() and Cy_CapSense_Restore() functions should be used instead of the Cy_CapSense_DeInit() and Cy_CapSense_Init() functions for further compatibility.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the stop process. If CY_CAPSENSE_STATUS_SUCCESS is not received, the stop process fails and retries may be required.
    - -
    -
    - -

    ◆ Cy_CapSense_Enable()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_Enable (cy_stc_capsense_context_tcontext)
    -
    - -

    Initializes the CAPSENSE™ firmware modules.

    -

    Call the Cy_CapSense_Init() function and configure CAPSENSE™ HW block interrupts prior to calling this function. See the function usage example below for details on usage.

    -

    The following are executed as part of the function:

      -
    1. Check CAPSENSE™ configuration integrity.
    2. -
    3. Pre-calculate of internal register values to speed up operation.
    4. -
    5. Configure the CAPSENSE™ HW block to perform capacitive sensing operation.
    6. -
    7. If the smart sensing algorithm is selected for the CSD Tuning mode in the Basic tab, the auto-tuning functionality is executed to set the optimal values for the CAPSENSE™ HW block parameters of the widgets/sensors.
    8. -
    9. Calibrate the sensors and find the optimal values for DACs of each widget/sensor, if the auto-calibration is enabled in the CSD Setting or CSX Setting tabs.
    10. -
    11. Perform scanning for all the sensors and initialize the baseline history.
    12. -
    13. If the firmware filters are enabled in the Advanced General tab, the filter histories are also initialized.
    14. -
    -

    Any subsequent call of this function repeats initialization process. Therefore, it is possible to change the middleware configuration from the application program by writing registers to the data structure and calling this function again.

    -

    The repeated call of this function is also done inside the Cy_CapSense_RunTuner() function when a restart command is received.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the initialization process. If CY_CAPSENSE_STATUS_SUCCESS is not received, some of the initialization fails.
    -
    Function Usage
    -
    /* Capture the CAPSENSE&trade; HW block and initialize it to the default state. */
    Cy_CapSense_Init(&cy_capsense_context);
    /* Initialize CAPSENSE&trade; interrupt */
    Cy_SysInt_Init(&CapSense_ISR_cfg, &snippet_Cy_CapSense_IntHandler);
    NVIC_ClearPendingIRQ(CapSense_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CapSense_ISR_cfg.intrSrc);
    /* Initialize the CAPSENSE&trade; firmware modules. */
    Cy_CapSense_Enable(&cy_capsense_context);

    The 'cy_capsense_context' variable that is used as the parameter of the Cy_CapSense_Init() and Cy_CapSense_Enable() functions is declared in the cycfg_capsense.h file.

    -

    The CapSense_ISR_cfg variable should be declared by the application program according to the examples below:
    - For CM0+ core:

    #if (!(CY_CAPSENSE_PSOC4_FIFTH_GEN))
    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* CM0+ interrupt is NVIC #2 */
    .intrPriority = 3u, /* Interrupt priority is 3 */
    };
    #else
    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = msc_0_interrupt_IRQn, /* CM0+ interrupt is NVIC #2 */
    .intrPriority = 3u, /* Interrupt priority is 3 */
    };
    #endif

    For CM4 core:

    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* Interrupt source is the CSD interrupt */
    .intrPriority = 7u, /* Interrupt priority is 7 */
    };

    The CAPSENSE™ interrupt handler should be declared by the application program according to the example below:

    void snippet_Cy_CapSense_IntHandler(void)
    {
    Cy_CapSense_InterruptHandler(CapSense_HW, &cy_capsense_context);
    }

    The CapSense_HW is the pointer to the base register address of the CAPSENSE™ HW block. A macro for the pointer is in the cycfg_peripherals.h file defined as <Personality_Name>_HW. If no name is specified, the following default names are used:

      -
    • csd_<Block_Number>_csd_<Block_Number>_HW - for forth-generation CAPSENSE™ HW.
    • -
    • msc_<Block_Number>_msc_<Block_Number>_HW - for fifth-generation CAPSENSE™ HW.
    • -
    - -
    -
    - -

    ◆ Cy_CapSense_Save()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_Save (cy_stc_capsense_context_tcontext)
    -
    - -

    Saves the state of CAPSENSE™ so the functionality can be restored using the Cy_CapSense_Restore() function.

    -

    This function, along with the Cy_CapSense_Restore() function, is specifically designed for ease of use and supports time multiplexing of the CAPSENSE™ HW block among multiple middleware. When the CAPSENSE™ HW block is shared by multiple middleware, this function can be used to save the current state of the CAPSENSE™ HW block and CAPSENSE™ Middleware prior to releasing the CAPSENSE™ HW block for use by other middleware. See the function usage example below for details on usage.

    -

    This function performs the same tasks as the Cy_CapSense_DeInit() function and is kept for API consistency among middlewares. It is recommended to use Cy_CapSense_Save() and Cy_CapSense_Restore() functions to implement Time-multiplexed mode instead of Cy_CapSense_DeInit() and Cy_CapSense_Init() functions for further compatibility.

    -

    This function performs the following operations:

      -
    • Releases the CAPSENSE™ HW block.
    • -
    • Configures sensor pins to the default state and disconnects them from analog buses.
    • -
    • Disconnects external capacitors from analog buses.
    • -
    • Sets the middleware state to default.
    • -
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the process. If CY_CAPSENSE_STATUS_SUCCESS is not received, the save process fails and retries may be required.
    -
    Function Usage
    -

    An example of sharing the CAPSENSE™ HW block by the CapSense and CSDADC middleware.
    - Declares the CapSense_ISR_cfg variable:

    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* Interrupt source is the CSD interrupt */
    .intrPriority = 7u, /* Interrupt priority is 7 */
    };

    Declares the CSDADC_ISR_cfg variable:

    const cy_stc_sysint_t CSDADC_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* Interrupt source is the CSD interrupt */
    .intrPriority = 7u, /* Interrupt priority is 7 */
    };

    Defines the CapSense interrupt handler:

    static void CapSense_Interrupt(void)
    {
    Cy_CapSense_InterruptHandler(CapSense_HW, &cy_capsense_context);
    }

    Defines the CSDADC interrupt handler:

    static void CSDADC_Interrupt(void)
    {
    Cy_CSDADC_InterruptHandler(CSD0, &cy_csd_0_context);
    }

    The part of the main.c FW flow:

    /* ... */
    /* Initialize CAPSENSE&trade; MW */
    Cy_CapSense_Init(&cy_capsense_context);
    Cy_SysInt_Init(&CapSense_ISR_cfg, &CapSense_Interrupt);
    NVIC_ClearPendingIRQ(CapSense_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CapSense_ISR_cfg.intrSrc);
    Cy_CapSense_Enable(&cy_capsense_context);
    Cy_CapSense_Save(&cy_capsense_context);
    /* Initialize CSDADC MW */
    Cy_CSDADC_Init(&CapSense_csdadc_config, &cy_csdadc_context);
    Cy_SysInt_Init(&CSDADC_ISR_cfg, &CSDADC_Interrupt);
    NVIC_ClearPendingIRQ(CSDADC_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CSDADC_ISR_cfg.intrSrc);
    Cy_CSDADC_Enable(&cy_csdadc_context);
    Cy_CSDADC_Save(&cy_csdadc_context);
    for (;;)
    {
    /* Switch to CAPSENSE&trade; MW */
    Cy_CapSense_Restore(&cy_capsense_context);
    Cy_SysInt_Init(&CapSense_ISR_cfg, &CapSense_Interrupt);
    /* Do CAPSENSE&trade; sensing operation */
    Cy_CapSense_Save(&cy_capsense_context);
    /* Switch to CSDADC MW */
    Cy_CSDADC_Restore(&cy_csdadc_context);
    Cy_SysInt_Init(&CSDADC_ISR_cfg, &CSDADC_Interrupt);
    /* Do CSDADC measurement operation */
    Cy_CSDADC_Save(&cy_csdadc_context);
    }
    /* ... */
    -
    -
    - -

    ◆ Cy_CapSense_Restore()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_Restore (cy_stc_capsense_context_tcontext)
    -
    - -

    Resumes the middleware operation if the Cy_CapSense_Save() function was called previously.

    -

    This function, along with the Cy_CapSense_Save() function is specifically designed for ease of use and supports time multiplexing of the CAPSENSE™ HW block among multiple middleware. When the CAPSENSE™ HW blocks are shared by multiple middleware, this function can be used to restore the previous state of the CAPSENSE™ HW block(s) and CAPSENSE™ Middleware is saved using the Cy_CapSense_Save() function. See the function usage example below for details on usage.

    -

    This function performs the same tasks as Cy_CapSense_Init() function and is kept for API consistency among middlewares. It is recommended to use Cy_CapSense_Save() and Cy_CapSense_Restore() functions to implement time-multiplexed mode instead of Cy_CapSense_DeInit() and Cy_CapSense_Init() functions for further compatibility.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the resume process. If CY_CAPSENSE_STATUS_SUCCESS is not received, the resume process fails and retries may be required.
    -
    Function Usage
    -

    An example of sharing the CAPSENSE™ HW block by CAPSENSE™ and CSDADC middleware:

    /* ... */
    /* Initialize CAPSENSE&trade; MW */
    Cy_CapSense_Init(&cy_capsense_context);
    Cy_SysInt_Init(&CapSense_ISR_cfg, &CapSense_Interrupt);
    NVIC_ClearPendingIRQ(CapSense_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CapSense_ISR_cfg.intrSrc);
    Cy_CapSense_Enable(&cy_capsense_context);
    Cy_CapSense_Save(&cy_capsense_context);
    /* Initialize CSDADC MW */
    Cy_CSDADC_Init(&CapSense_csdadc_config, &cy_csdadc_context);
    Cy_SysInt_Init(&CSDADC_ISR_cfg, &CSDADC_Interrupt);
    NVIC_ClearPendingIRQ(CSDADC_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CSDADC_ISR_cfg.intrSrc);
    Cy_CSDADC_Enable(&cy_csdadc_context);
    Cy_CSDADC_Save(&cy_csdadc_context);
    for (;;)
    {
    /* Switch to CAPSENSE&trade; MW */
    Cy_CapSense_Restore(&cy_capsense_context);
    Cy_SysInt_Init(&CapSense_ISR_cfg, &CapSense_Interrupt);
    /* Do CAPSENSE&trade; sensing operation */
    Cy_CapSense_Save(&cy_capsense_context);
    /* Switch to CSDADC MW */
    Cy_CSDADC_Restore(&cy_csdadc_context);
    Cy_SysInt_Init(&CSDADC_ISR_cfg, &CSDADC_Interrupt);
    /* Do CSDADC measurement operation */
    Cy_CSDADC_Save(&cy_csdadc_context);
    }
    /* ... */
    -
    -
    - -

    ◆ Cy_CapSense_ProcessAllWidgets()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ProcessAllWidgets (cy_stc_capsense_context_tcontext)
    -
    - -

    Performs full data processing of all enabled widgets.

    -

    This function performs all data processes for all enabled widgets and sensors in the middleware to produce meaningful status output from widgets and sensors. The following tasks are executed as part of processing all the widgets:

      -
    1. Apply raw count filters to the raw counts, if they are enabled.
    2. -
    3. Update the thresholds if the smart sensing algorithm Full Auto-Tuning is enabled.
    4. -
    5. Update the baselines and difference counts for all the sensors.
    6. -
    7. Update the sensor and widget output status. Updates on/off status for buttons and proximity widgets, centroid/position for the sliders and the X/Y position for the touchpads.
    8. -
    -

    This function is called by the application program only after all the enabled widgets (and sensors) in the middleware are scanned. Calling this function multiple times without sensor scanning causes unexpected behavior.

    -

    The disabled widgets are not processed by this function.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the processing operation. If CY_CAPSENSE_STATUS_SUCCESS is not received, the processing fails and retries may be required.
    - -
    -
    - -

    ◆ Cy_CapSense_ProcessWidget()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ProcessWidget (uint32_t widgetId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs full data processing of the specified widget if it is enabled.

    -

    This function performs exactly the same tasks as Cy_CapSense_ProcessAllWidgets(), but only for a specified widget. This function can be used along with the Cy_CapSense_SetupWidget() and Cy_CapSense_Scan() functions (4th Generation) to scan and process data for a specific widget or with the Cy_CapSense_ScanSlots() function (5th Generation). This function is called only after all the sensors in the widgets are scanned. A disabled widget is not processed by this function.

    -

    A pipeline scan method (i.e. during scanning of a current widget (N), perform processing of the previously scanned widget (N-1)) can be implemented using this function and it may reduce the total execution time, increase the refresh rate, and decrease the average power consumption. See the function usage example below for details on usage.

    -

    For the Fifth generation CapSense if the specified widget has the enabled multi-frequency scan feature then the function does the following:

      -
    • If the specified widget ID refers to main (base) frequency then the function processes raw count processing of all three widgets (main and two sub-widgets) and then status processing of the main widget only.
    • -
    • If the specified widget ID refers to sub-widgets (1st or 2nd frequency channels) then the function returns CY_CAPSENSE_STATUS_BAD_PARAM. To perform customized processing use the Cy_CapSense_ProcessWidgetExt() function.
    • -
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the widget processing:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is successfully completed
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid
    • -
    • CY_CAPSENSE_STATUS_INVALID_STATE - The specified widget is disabled
    • -
    • CY_CAPSENSE_STATUS_BAD_DATA - The processing is failed
    • -
    -
    -
    Function Usage
    -

    An example of pipeline implementation:

    /*...*/
    currentWidgetId = 0u;
    previousWidgetId = 0u;
    #if (CY_CAPSENSE_PLATFORM_BLOCK_FIFTH_GEN)
    Cy_CapSense_ScanSlots(cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].firstSlotId,
    cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].numSlots, &cy_capsense_context);
    #else
    Cy_CapSense_ScanWidget(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    #endif
    for(;;)
    {
    if (CY_CAPSENSE_NOT_BUSY == Cy_CapSense_IsBusy(&cy_capsense_context))
    {
    currentWidgetId = (currentWidgetId < (cy_capsense_context.ptrCommonConfig->numWd - 1u)) ? (currentWidgetId + 1u) : 0u;
    #if (CY_CAPSENSE_PLATFORM_BLOCK_FIFTH_GEN)
    Cy_CapSense_ScanSlots(cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].firstSlotId,
    cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].numSlots, &cy_capsense_context);
    #else
    Cy_CapSense_ScanWidget(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    #endif
    /* Process a previous widget during scanning of the current widget */
    Cy_CapSense_ProcessWidget(previousWidgetId, &cy_capsense_context);
    previousWidgetId = currentWidgetId;
    }
    }
    /*...*/
    -
    -
    - -

    ◆ Cy_CapSense_IncrementGestureTimestamp()

    - -
    -
    - - - - - - - - -
    void Cy_CapSense_IncrementGestureTimestamp (cy_stc_capsense_context_tcontext)
    -
    - -

    Increments the timestamp register for the predefined timestamp interval.

    -

    A timestamp is required for operation of the Gesture and Ballistic multiplier feature. Hence this function and timestamp is required only if the Gesture detection or Ballistic multiplier feature is enabled.

    -

    This function increments the timestamp by the interval specified in the context->ptrCommonContext->timestampInterval register. The unit for the timestamp and timestamp interval is milliseconds and the default value of the interval is 1.

    -

    The application program must periodically call this function or register a periodic callback to this function to keep the timestamp updated and operational for the operation of the Gesture and Ballistic multiplier feature.

    -

    The timestamp can be updated in one of the three methods:

      -
    1. Register a periodic callback for the Cy_CapSense_IncrementGestureTimestamp() function.
    2. -
    3. Periodically call the Cy_CapSense_IncrementGestureTimestamp() function from the application program.
    4. -
    5. Directly modify the timestamp using the Cy_CapSense_SetGestureTimestamp() function.
    6. -
    -

    See the function usage example below for more details.

    -

    The interval at which this function is called should match with interval defined in context->ptrCommonContext->timestampInterval register. Either the register value can be updated to match the callback interval or the callback can be made at interval set in the register.

    -

    If a timestamp is available from another source, the application program may choose to periodically update the timestamp by using the Cy_CapSense_SetGestureTimestamp() function instead of registering a callback.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Function Usage
    -

    An example of timestamp updating:

    /* If previous scan complete, process widget data and trigger the next scan */
    if (CY_CAPSENSE_NOT_BUSY == Cy_CapSense_IsBusy(&cy_capsense_context))
    {
    /* Increment timestamp: Option 2 */
    /* Increment timestamp: Option 3 */
    cy_capsense_context.ptrCommonContext->timestamp = newTimestamp;
    Cy_CapSense_ProcessWidget(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    Cy_CapSense_DecodeWidgetGestures(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    #if (CY_CAPSENSE_PLATFORM_BLOCK_FIFTH_GEN)
    Cy_CapSense_ScanSlots(cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].firstSlotId,
    cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].numSlots, &cy_capsense_context);
    #else
    Cy_CapSense_ScanWidget(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    #endif
    }
    -
    -
    - -

    ◆ Cy_CapSense_SetGestureTimestamp()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_SetGestureTimestamp (uint32_t value,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Rewrites the timestamp register by the specified value.

    -

    This function writes the specified value into the middleware timestamp context->ptrCommonContext->timestamp register.

    -

    If a timestamp is available from another source, the application program may choose to periodically update the timestamp by using this function instead of registering a callback.

    -

    Do not modify the timestamp arbitrarily or simultaneously use with the Cy_CapSense_IncrementGestureTimestamp() function, which may result in unexpected result.

    -
    Parameters
    - - - -
    valueSpecifies the timestamp value (in ms).
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_Wakeup()

    - -
    -
    - - - - - - - - -
    void Cy_CapSense_Wakeup (const cy_stc_capsense_context_tcontext)
    -
    - -

    Resumes the middleware after System Deep Sleep.

    -

    This function is used to resume the middleware operation after exiting System Deep Sleep. After the CAPSENSE™ HW block is powered off, an extra delay is required to establish the correct operation of the CAPSENSE™ HW block.

    -

    This function is called by the Cy_CapSense_DeepSleepCallback() function after exiting System Deep Sleep if the CAPSENSE™ Deep Sleep callback is registered.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_DeepSleepCallback()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_en_syspm_status_t Cy_CapSense_DeepSleepCallback (cy_stc_syspm_callback_params_t * callbackParams,
    cy_en_syspm_callback_mode_t mode 
    )
    -
    - -

    Handles CPU active to System Deep Sleep power mode transition for the CAPSENSE™ middleware.

    -

    Calling this function directly from the application program is not recommended. Instead, Cy_SysPm_CpuEnterDeepSleep() should be used for the CPU active to System Deep Sleep power mode transition of the device.

    Note
    After the CPU Deep Sleep transition, the device automatically goes to System Deep Sleep if all conditions are fulfilled: another core is in CPU Deep Sleep, all the peripherals are ready to System Deep Sleep, etc. (see details in the device TRM).
    -

    For proper operation of the CAPSENSE™ middleware during the CPU active to System Deep Sleep mode transition, a callback to this function should be registered using the Cy_SysPm_RegisterCallback() function with CY_SYSPM_DEEPSLEEP type. After the callback is registered, this function is called by the Cy_SysPm_CpuEnterDeepSleep() function to prepare the middleware to the device power mode transition.

    -

    When this function is called with CY_SYSPM_CHECK_READY as an input, this function returns CY_SYSPM_SUCCESS if no scanning is in progress or not a single HW block is captured by the CAPSENSE™ middleware. Otherwise CY_SYSPM_FAIL is returned. If CY_SYSPM_FAIL status is returned, a device cannot change the power mode without completing the current scan as a transition to System Deep Sleep during the scan can disrupt the middleware operation.

    -

    When this function is called with CY_SYSPM_AFTER_TRANSITION as an input, then the Cy_CapSense_Wakeup() function is called to resume the middleware operation after exiting System Deep Sleep. If there are no CAPSENSE™ captured HW blocks the Cy_CapSense_Wakeup() function calling is omitted and restoring CAPSENSE™ immediately after Deep Sleep without the wake-up delay can lead to unpredictable behavior.

    -

    For details of SysPm types and macros refer to the SysPm section of the PDL documentation.

    -
    Parameters
    - - - -
    callbackParamsRefer to the description of the cy_stc_syspm_callback_params_t type in the Peripheral Driver Library documentation.
    modeSpecifies mode cy_en_syspm_callback_mode_t.
    -
    -
    -
    Returns
    Returns the status cy_en_syspm_status_t of the operation requested by the mode parameter:
      -
    • CY_SYSPM_SUCCESS - System Deep Sleep power mode can be entered.
    • -
    • CY_SYSPM_FAIL - System Deep Sleep power mode cannot be entered.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_RegisterCallback()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_RegisterCallback (cy_en_capsense_callback_event_t callbackType,
    cy_capsense_callback_t callbackFunction,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Registers a ures's callback function.

    -

    The registered function will be called by the CAPSENSE™ middleware when the specified event cy_en_capsense_callback_event_t has occurred in the CAPSENSE™ middleware.

    -
    Parameters
    - - - - -
    callbackTypeThe event on which the registered user's function is called by the CAPSENSE™ middleware. Refer to cy_en_capsense_callback_event_t for the list of supported events.
    callbackFunctionThe pointer to the user's callback function to be called by the middleware.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the callback registration:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The action performed successfully.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_UnRegisterCallback()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_UnRegisterCallback (cy_en_capsense_callback_event_t callbackType,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    This function unregisters a previously registered user's callback function in the CAPSENSE™ middleware.

    -
    Parameters
    - - - -
    callbackTypeThe event on which the callback function should be unregistered. Refer to cy_en_capsense_callback_event_t for the list of supported events.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the callback deregistration:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The action performed successfully.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_DecodeWidgetGestures()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    uint32_t Cy_CapSense_DecodeWidgetGestures (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs decoding of all gestures for the specified widget.

    -

    This function should be called by application program only after all sensors are scanned and all data processing is executed using Cy_CapSense_ProcessAllWidgets() or Cy_CapSense_ProcessWidget() functions for the widget. Calling this function multiple times without a new sensor scan and process causes unexpected behavior.

    -
    Note
    The function (Gesture detection functionality) requires a timestamp for its operation. The timestamp should be initialized and maintained in the application program prior to calling this function. See the descriptions of the Cy_CapSense_SetGestureTimestamp() and Cy_CapSense_IncrementGestureTimestamp() functions for details.
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the detected Gesture mask and direction of detected gestures. The same information is stored in ptrWdContext->gestureDetected and ptrWdContext->gestureDirection registers. Corresponding macros could be found Gesture Macros.
      -
    • bit[0..15] - detected gesture masks gesture
        -
      • bit[0] - one-finger single click gesture
      • -
      • bit[1] - one-finger double click gesture
      • -
      • bit[2] - one-finger click and drag gesture
      • -
      • bit[3] - two-finger single click gesture
      • -
      • bit[4] - one-finger scroll gesture
      • -
      • bit[5] - two-finger scroll gesture
      • -
      • bit[6] - one-finger edge swipe
      • -
      • bit[7] - one-finger flick
      • -
      • bit[8] - one-finger rotate
      • -
      • bit[9] - two-finger zoom
      • -
      • bit[13] - touchdown event
      • -
      • bit[14] - liftoff event
      • -
      -
    • -
    • bit[16..31] - gesture direction if detected
        -
      • bit[0..1] - direction of one-finger scroll gesture
      • -
      • bit[2..3] - direction of two-finger scroll gesture
      • -
      • bit[4..5] - direction of one-finger edge swipe gesture
      • -
      • bit[6] - direction of one-finger rotate gesture
      • -
      • bit[7] - direction of two-finger zoom gesture
      • -
      • bit[8..10] - direction of one-finger flick gesture
      • -
      -
    • -
    -
    -
    Function Usage
    -

    An example of gesture decoding:

    /* If previous scan complete, process widget data and trigger the next scan */
    if (CY_CAPSENSE_NOT_BUSY == Cy_CapSense_IsBusy(&cy_capsense_context))
    {
    /* Increment timestamp before widget data processing if ballistic multiplier is enabled */
    /* Process widget data: Calculate diff counts, status, position, etc. */
    Cy_CapSense_ProcessWidget(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    /* Process gesture for the widget */
    gestureStatus = Cy_CapSense_DecodeWidgetGestures(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    /* The same gestureStatus can be read from the following registers */
    gestureStatus = cy_capsense_context.ptrWdContext[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].gestureDetected |
    ((uint32_t)cy_capsense_context.ptrWdContext[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].gestureDirection << CY_CAPSENSE_GESTURE_DIRECTION_OFFSET);
    #if (CY_CAPSENSE_PLATFORM_BLOCK_FIFTH_GEN)
    Cy_CapSense_ScanSlots(cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].firstSlotId,
    cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].numSlots, &cy_capsense_context);
    #else
    Cy_CapSense_ScanWidget(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, &cy_capsense_context);
    #endif
    }

    An example of gesture status parsing:

    /* If Two-finger Scroll gesture is detected */
    {
    /* Get gesture direction */
    {
    /* UP is detected */
    break;
    /* DOWN is detected */
    break;
    /* LEFT is detected */
    break;
    /* RIGHT is detected */
    break;
    }
    }
    -
    -
    - -

    ◆ Cy_CapSense_RunSelfTest()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_RunSelfTest (uint32_t testEnMask,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Runs built-in self-tests specified by the test enable mask.

    -

    The function performs various self-tests on all the enabled widgets and sensors in the project. Select the required set of tests using the bit-mask in testEnMask parameter.

    -

    Use CY_CAPSENSE_BIST_RUN_AVAILABLE_SELF_TEST_MASK to execute all the self-tests or any combination of the masks (defined in testEnMask parameter) to specify the desired test list.

    -

    To execute a single-element test (i.e. for one widget or one sensor), the following low-level functions are available: for the fourth-generation CAPSENSE™:

    -

    Refer to these functions descriptions for detail information on the corresponding test.

    -
    Parameters
    - - - -
    testEnMaskSpecifies the tests to be executed. Each bit corresponds to one test. It is possible to launch the function with any combination of the available tests.
      -
    • CY_CAPSENSE_BIST_CRC_WDGT_MASK - Verifies the RAM widget structure CRC for all the widgets.
    • -
    • CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK - Checks all the sensors for a short to GND / VDD / other sensors.
    • -
    • CY_CAPSENSE_BIST_SNS_CAP_MASK - Measures all the sensors capacitance.
    • -
    • CY_CAPSENSE_BIST_ELTD_CAP_MASK - Measures all the electrodes capacitance (only for the fifth-generation CAPSENSE™).
    • -
    • CY_CAPSENSE_BIST_SHIELD_CAP_MASK - Measures the shield capacitance.
    • -
    • CY_CAPSENSE_BIST_EXTERNAL_CAP_MASK - Measures the capacitance of the available external capacitors (only for the fourth-generation CAPSENSE™).
    • -
    • CY_CAPSENSE_BIST_VDDA_MASK - Measures the VDDA voltage (only for the fourth-generation CAPSENSE™).
    • -
    • CY_CAPSENSE_BIST_RUN_AVAILABLE_SELF_TEST_MASK
        -
      • Executes all available tests.
      • -
      -
    • -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a bit-mask with a status of execution of the specified tests:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - All the tests passed successfully.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - A non-defined test was requested in the testEnMask parameter or the context is a NULL pointer. The function was not performed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The function was not performed.
    • -
    • CY_CAPSENSE_BIST_ERROR_E - An unexpected fault occurred during the measurement, you may need to repeat the measurement.
    • -
    • CY_CAPSENSE_BIST_FAIL_E - Any of tests specified by the testEnMask parameters has faulted.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_ScanAllWidgets()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ScanAllWidgets (cy_stc_capsense_context_tcontext)
    -
    - -

    Initiates scanning of all enabled widgets (and sensors) in the project.

    -

    Scanning is initiated only if no scan is in progress.

    -

    This function initiates a scan only for the first sensor in the first widget for the fourth-generation CAPSENSE™ or a scan for the first slot for the fifth-generation CAPSENSE™ and then exits the function. The scan for the remaining sensors(slots) are initiated in the interrupt-driven mode in the interrupt service routine (part of middleware) triggered at the end of each scan completion or by DMA controllers in the DMA mode. The status of the current scan should be checked by using the Cy_CapSense_IsBusy() and wait until all scans is finished prior to starting a next scan or initializing another widget.

    -
    Note
    For the fifth-generation CAPSENSE™ it is recommended to use the Cy_CapSense_ScanAllSlots() function instead for compatibility with further CAPSENSE™ middleware versions.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation cy_capsense_status_t.
    - -
    -
    - -

    ◆ Cy_CapSense_ScanWidget()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ScanWidget (uint32_t widgetId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Initiates the scanning of all sensors in the widget.

    -

    Scanning is initiated only if no scan is in progress. Scan finishing can be checked by the Cy_CapSense_IsBusy() function.

    -
    Note
    For the fifth-generation CAPSENSE™ this function is available in single-channel solution only. It is recommended to use the Cy_CapSense_ScanSlots() function instead for compatibility with further CAPSENSE™ middleware versions.
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation cy_capsense_status_t.
    - -
    -
    - -

    ◆ Cy_CapSense_IsBusy()

    - -
    -
    - - - - - - - - -
    uint32_t Cy_CapSense_IsBusy (const cy_stc_capsense_context_tcontext)
    -
    - -

    This function returns a status of the CAPSENSE™ middleware whether a scan is currently in progress or not.

    -

    If the middleware is busy, a new scan or setup widgets should not be initiated.

    -

    Use the Cy_CapSense_MwState() function to check a detailed CAPSENSE™ middleware state for the fifth-generation CAPSENSE™.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the middleware as a sum of the masks.
      -
    • CY_CAPSENSE_NOT_BUSY - No scan is in progress and a next scan can be initiated.
    • -
    • CY_CAPSENSE_BUSY - The previously initiated scan is in progress.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InterruptHandler()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_InterruptHandler (void * base,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Implements interrupt service routine for CAPSENSE™ Middleware.

    -

    The MSC HW block generates an interrupt at end of every sensor scan. The CAPSENSE™ middleware uses this interrupt to implement a non-blocking sensor scan method, in which only the first sensor scan is initiated by the application program and subsequent sensor scans are initiated in the interrupt service routine as soon as the current scan is completed. The above stated interrupt service routine is implemented as a part of the CAPSENSE™ middleware.

    -

    The CAPSENSE™ middleware does not initialize or modify the priority of interrupts. For the operation of middleware, the application program must configure MSC interrupt and assign interrupt vector to the Cy_CapSense_InterruptHandler() function. Refer to function usage example for details.

    -

    The calls of the Start Sample and End Of Scan callbacks (see the Callbacks section for details) are the part of the Cy_CapSense_InterruptHandler() routine and they lengthen its execution. These callbacks will lengthen the ISR execution in case of a direct call of the Cy_CapSense_InterruptHandler() function from a ISR.

    -
    Parameters
    - - - -
    baseThe pointer to the base register address of the CSD HW block. This argument is kept for uniformity and backward compatibility and is not used. The function can be called with value NULL.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Function Usage
    -

    An example of the ISR initialization:

    -

    The CapSense_ISR_cfg variable should be declared by the application program according to the examples below:
    - For Core CM0+:

    #if (!(CY_CAPSENSE_PSOC4_FIFTH_GEN))
    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* CM0+ interrupt is NVIC #2 */
    .intrPriority = 3u, /* Interrupt priority is 3 */
    };
    #else
    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = msc_0_interrupt_IRQn, /* CM0+ interrupt is NVIC #2 */
    .intrPriority = 3u, /* Interrupt priority is 3 */
    };
    #endif

    For Core CM4:

    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* Interrupt source is the CSD interrupt */
    .intrPriority = 7u, /* Interrupt priority is 7 */
    };

    The CAPSENSE™ interrupt handler should be defined by the application program according to the example below:

    void snippet_Cy_CapSense_IntHandler(void)
    {
    Cy_CapSense_InterruptHandler(CapSense_HW, &cy_capsense_context);
    }

    Then, the application program should configure and enable the CSD block interrupt between calls of the Cy_CapSense_Init() and Cy_CapSense_Enable() functions:

    /* Capture the CAPSENSE&trade; HW block and initialize it to the default state. */
    Cy_CapSense_Init(&cy_capsense_context);
    /* Initialize CAPSENSE&trade; interrupt */
    Cy_SysInt_Init(&CapSense_ISR_cfg, &snippet_Cy_CapSense_IntHandler);
    NVIC_ClearPendingIRQ(CapSense_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CapSense_ISR_cfg.intrSrc);
    /* Initialize the CAPSENSE&trade; firmware modules. */
    Cy_CapSense_Enable(&cy_capsense_context);

    CapSense_HW is the pointer to the base register address of the CSD HW block. A macro for the pointer can be found in the cycfg_peripherals.h file defined as <Csd_Personality_Name>_HW. If no name specified, the default name is used csd_<Block_Number>_csd_<Block_Number>_HW.

    -

    An example of sharing the CSD HW block by the CAPSENSE™ and CSDADC middleware.
    - Declares the CapSense_ISR_cfg variable:

    const cy_stc_sysint_t CapSense_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* Interrupt source is the CSD interrupt */
    .intrPriority = 7u, /* Interrupt priority is 7 */
    };

    Declares the CSDADC_ISR_cfg variable:

    const cy_stc_sysint_t CSDADC_ISR_cfg =
    {
    .intrSrc = csd_interrupt_IRQn, /* Interrupt source is the CSD interrupt */
    .intrPriority = 7u, /* Interrupt priority is 7 */
    };

    Defines the CAPSENSE™ interrupt handler:

    static void CapSense_Interrupt(void)
    {
    Cy_CapSense_InterruptHandler(CapSense_HW, &cy_capsense_context);
    }

    Defines the CSDADC interrupt handler:

    static void CSDADC_Interrupt(void)
    {
    Cy_CSDADC_InterruptHandler(CSD0, &cy_csd_0_context);
    }

    The part of the main.c FW flow:

    /* ... */
    /* Initialize CAPSENSE&trade; MW */
    Cy_CapSense_Init(&cy_capsense_context);
    Cy_SysInt_Init(&CapSense_ISR_cfg, &CapSense_Interrupt);
    NVIC_ClearPendingIRQ(CapSense_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CapSense_ISR_cfg.intrSrc);
    Cy_CapSense_Enable(&cy_capsense_context);
    Cy_CapSense_Save(&cy_capsense_context);
    /* Initialize CSDADC MW */
    Cy_CSDADC_Init(&CapSense_csdadc_config, &cy_csdadc_context);
    Cy_SysInt_Init(&CSDADC_ISR_cfg, &CSDADC_Interrupt);
    NVIC_ClearPendingIRQ(CSDADC_ISR_cfg.intrSrc);
    NVIC_EnableIRQ(CSDADC_ISR_cfg.intrSrc);
    Cy_CSDADC_Enable(&cy_csdadc_context);
    Cy_CSDADC_Save(&cy_csdadc_context);
    for (;;)
    {
    /* Switch to CAPSENSE&trade; MW */
    Cy_CapSense_Restore(&cy_capsense_context);
    Cy_SysInt_Init(&CapSense_ISR_cfg, &CapSense_Interrupt);
    /* Do CAPSENSE&trade; sensing operation */
    Cy_CapSense_Save(&cy_capsense_context);
    /* Switch to CSDADC MW */
    Cy_CSDADC_Restore(&cy_csdadc_context);
    Cy_SysInt_Init(&CSDADC_ISR_cfg, &CSDADC_Interrupt);
    /* Do CSDADC measurement operation */
    Cy_CSDADC_Save(&cy_csdadc_context);
    }
    /* ... */
    -
    -
    - -

    ◆ Cy_CapSense_SetupWidget()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_SetupWidget (uint32_t widgetId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs the initialization required to scan the specified widget.

    -

    This function prepares the middleware to scan all the sensors in the specified widget by executing the following tasks:

      -
    1. Configure the CSD HW block if it is not configured to perform the sensing method used by the specified widget. This happens only if the CSD and CSX methods are used in a user's project.
    2. -
    3. Initialize the CSD HW block with specific sensing configuration (e.g. sensor clock, scan resolution) used by the widget.
    4. -
    5. Disconnect all previously connected electrodes, if the electrodes are connected by the Cy_CapSense_CSDSetupWidgetExt(), Cy_CapSense_CSXSetupWidgetExt(), or Cy_CapSense_CSDConnectSns() functions and are not disconnected.
    6. -
    -

    This function does not start sensor scanning. The Cy_CapSense_Scan() function must be called to start the scan sensors in the widget. If this function is called more than once, it does not break the middleware operation, but only the last initialized widget is in effect.

    -

    The status of a sensor scan must be checked using the Cy_CapSense_IsBusy() function prior to starting a next scan or setting up another widget.

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the widget setting up operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is successfully completed.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The widget is invalid or if the specified widget is disabled.
    • -
    • CY_CAPSENSE_STATUS_INVALID_STATE - The previous scanning is not completed and the CSD HW block is busy.
    • -
    • CY_CAPSENSE_STATUS_UNKNOWN - An unknown sensing method is used by the widget or any other spurious error occurred.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_Scan()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_Scan (cy_stc_capsense_context_tcontext)
    -
    - -

    Initiates scanning of all the sensors in the widget initialized by Cy_CapSense_SetupWidget(), if no scan is in progress.

    -

    Prior to calling this function to scan sensors, the widget required to be scanned must be initialized using Cy_CapSense_SetupWidget() function.

    -

    This function initiates scan only for the first sensor in the widget and then exits the function. The scan for the remaining sensors in the widget is initiated in the interrupt service routine (part of middleware) triggered at the end of each scan completion. Hence, status of the current scan should be checked using the Cy_CapSense_IsBusy() and wait until all scans in the current widget are finished prior to starting the next scan or initializing another widget.

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the scan initiation operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - Scanning is successfully started.
    • -
    • CY_CAPSENSE_STATUS_INVALID_STATE - The previous scan is not completed and the CSD HW block is busy.
    • -
    • CY_CAPSENSE_STATUS_UNKNOWN - An unknown sensing method is used by the widget.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_ScanAllSlots()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ScanAllSlots (cy_stc_capsense_context_tcontext)
    -
    - -

    Initiates the non-blocking scan of all slots.

    -

    Scanning is initiated only if no scan is in progress. Scan finishing can be checked by the Cy_CapSense_IsBusy() function.

    -

    This function initiates a scan only for the first slot for all channels and then exits. Scans for the remaining slots in the Interrupt-driven scan mode are initiated in the interrupt service routine (part of middleware) triggered at the end of each scan completion for each channel. If the syncMode field in the cy_stc_capsense_common_config_t structure is set to CY_CAPSENSE_SYNC_MODE_OFF, then the next slot scan for the channel with the fired interrupt, will start regardless of the another channel readiness for the next scan. If the syncMode field is set to CY_CAPSENSE_SYNC_INTERNAL (for single-chip projects) or to CY_CAPSENSE_SYNC_EXTERNAL (for multi-chip projects), then the next slot scan for the channel with the fired interrupt, will start in lockstep with another channels after they all are ready for the next scan (the next scan configuration is loaded into the channel MSC HW block). Scans for the remaining slots in CS-DMA scan mode are initiated by DMAC triggered at the end of each scan completion for each channel. The channel scan synchronization is performed as in Interrupt-driven scan mode. After all slots are scanned, the FRAME interrupt is fired and the interrupt service routine (part of middleware) updates the busy status.

    -

    The status of the current scan should be checked using the Cy_CapSense_IsBusy() function, where there are separate busy bits for each channel and the application program waits until all scans are finished prior to starting a next scan by using this function.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is performed successfully.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid.
    • -
    • CY_CAPSENSE_STATUS_HW_BUSY - The HW is busy with the previous scan.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_ScanSlots()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ScanSlots (uint32_t startSlotId,
    uint32_t numberSlots,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Initiates the non-blocking scan of specified slots.

    -

    Scanning is initiated only if no scan is in progress. Scan finishing can be checked by the Cy_CapSense_IsBusy() function.

    -

    This function initiates a scan only for the first specified slot for all channels and then exits. Scans for the remaining slots in the interrupt-driven scan mode are initiated in the interrupt service routine (part of middleware) triggered at the end of each scan completion for each channel. If the syncMode field in the cy_stc_capsense_common_config_t structure is set to CY_CAPSENSE_SYNC_MODE_OFF, then the next slot scan for the channel with the fired interrupt, will start regardless of the another channel readiness for the next scan. If the syncMode field is set to CY_CAPSENSE_SYNC_INTERNAL (for single-chip projects) or to CY_CAPSENSE_SYNC_EXTERNAL (for multi-chip projects), then the next slot scan for the channel with the fired interrupt, will start in lockstep with another channels after they all are ready for the next scan. The scan for the remaining slots in CS-DMA scan mode are initiated by DMAC triggered at the end of each scan completion for each channel. The channel scan synchronization is performed as in Interrupt-driven scan mode. After all slots are scanned, the FRAME interrupt is fired and the interrupt service routine (part of middleware) updates the busy status. To decrease the start scan time when it is intended to scan the same slot, i.e. the startSlotId parameter is the same and numberSlots = 1u, then the scan is performed without the MSC HW block reconfiguration. Also, in the AMUX mode sensors are not disconnected.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - - - -
    startSlotIdThe slot ID scan will be started from.
    numberSlotsThe number of slots will be scanned.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is performed successfully.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid.
    • -
    • CY_CAPSENSE_STATUS_HW_BUSY - The HW is busy with the previous scan.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MwState()

    - -
    -
    - - - - - - - - -
    cy_capsense_mw_state_t Cy_CapSense_MwState (const cy_stc_capsense_context_tcontext)
    -
    - -

    This function returns a detailed state of the CAPSENSE™ middleware and MSC hardware in Single- or Multi-channel mode.

    -

    This feature is useful in multi-thread applications or in ISR. Use the Cy_CapSense_IsBusy() function to verify if HW is busy at a particular moment.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the state of the middleware as a sum of the state and status masks:
    -
      -
    • CY_CAPSENSE_BUSY_CH_MASK - The set [x] bit of the result means that the previously initiated scan for the [x] channel is in progress. The next scan frame cannot be started.
    • -
    • CY_CAPSENSE_BUSY - The previously initiated scan is in progress.
    • -
    • CY_CAPSENSE_MW_STATE_BIST_MASK - The BIST is in progress. The next scan frame cannot be started.
    • -
    • CY_CAPSENSE_MW_STATE_CALIBRATION_MASK - The auto-calibration is in progress. The next scan frame cannot be started.
    • -
    • CY_CAPSENSE_MW_STATE_SMARTSENSE_MASK - The smart sensing algorithm is in progress. The next scan frame cannot be started.
    • -
    • CY_CAPSENSE_MW_STATE_INITIALIZATION_MASK - Middleware initialization is in progress and the next scan frame cannot be initiated.
    • -
    • CY_CAPSENSE_MW_STATE_SCAN_SLOT_MASK[x] - The set [x] number of the result means that the previously initiated scan for the [x] slot is completed or in progress. In CS-DMA mode, this field is set only for the first scanned slot.
    • -
    - -
    -
    - -

    ◆ Cy_CapSense_IsAnyWidgetActive()

    - -
    -
    - - - - - - - - -
    uint32_t Cy_CapSense_IsAnyWidgetActive (const cy_stc_capsense_context_tcontext)
    -
    - -

    Reports whether any widget has detected touch.

    -

    This function reports whether any widget has detected a touch by extracting information from the widget status registers. This function does not process widget data but extracts previously processed results from the Structures.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the touch detection status of all the widgets:
      -
    • Zero - No touch is detected in any of the widgets or sensors.
    • -
    • Non-zero - At least one widget or sensor has detected a touch.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_IsWidgetActive()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    uint32_t Cy_CapSense_IsWidgetActive (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Reports whether the specified widget detected touch on any of its sensors.

    -

    This function reports whether the specified widget has detected a touch by extracting information from the widget status register. This function does not process widget data but extracts previously processed results from the Structures.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the touch detection status of the specified widgets:
      -
    • Zero - No touch is detected in the specified widget or a wrong widgetId is specified.
    • -
    • Non-zero if at least one sensor of the specified widget is active, i.e. a touch is detected.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_IsSensorActive()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    uint32_t Cy_CapSense_IsSensorActive (uint32_t widgetId,
    uint32_t sensorId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Reports whether the specified sensor in the widget detected touch.

    -

    This function reports whether the specified sensor in the widget has detected a touch by extracting information from the widget status register. This function does not process widget or sensor data but extracts previously processed results from the Structures.

    -

    For proximity sensors, this function returns the proximity detection status. To get the touch status of proximity sensors, use the Cy_CapSense_IsProximitySensorActive() function.

    -
    Parameters
    - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the touch detection status of the specified sensor/widget:
      -
    • Zero if no touch is detected in the specified sensor/widget or a wrong widget ID/sensor ID is specified.
    • -
    • Non-zero if the specified sensor is active, i.e. touch is detected. If the specific sensor belongs to a proximity widget, the proximity detection status is returned.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_IsProximitySensorActive()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    uint32_t Cy_CapSense_IsProximitySensorActive (uint32_t widgetId,
    uint32_t sensorId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Reports the status of the specified proximity widget/sensor.

    -

    This function reports whether the specified proximity sensor has detected a touch or proximity event by extracting information from the widget status register. This function is used only with proximity widgets. This function does not process widget data but extracts previously processed results from the Structures.

    -
    Parameters
    - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the specified sensor of the proximity widget. Zero indicates that no touch is detected in the specified sensor/widget or a wrong widgetId/proxId is specified.
      -
    • Bits [31..2] are reserved.
    • -
    • Bit [1] indicates that a touch is detected.
    • -
    • Bit [0] indicates that a proximity is detected.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_GetTouchInfo()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_stc_capsense_touch_t* Cy_CapSense_GetTouchInfo (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Reports the details of touch position detected on the specified touchpad, matrix buttons or slider widgets.

    -

    This function does not process widget data but extracts previously processed results from the Structures.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the pointer to widget cy_stc_capsense_touch_t structure that contains number of positions and data about each position.
    - -
    -
    - -

    ◆ Cy_CapSense_RunTuner()

    - -
    -
    - - - - - - - - -
    uint32_t Cy_CapSense_RunTuner (cy_stc_capsense_context_tcontext)
    -
    - -

    Establishes synchronized operation between the CAPSENSE™ Middleware and the CAPSENSE™ Tuner tool.

    -

    This function is called periodically in the application program. It serves the CAPSENSE™ Tuner tool requests and commands to synchronize the operation. Mostly, the best place to call this function is between processing and next scanning. If the user changes some parameters in the Tuner tool, the middleware is re-started - the Tuner issues a restart command to be executed by this function.

    -

    The Tuner interface supports two communication protocol: EZI2C and UART.

    -

    To use an EZI2C-based tuner interface, only initialization of the EZI2C driver and interface is required in the application program. Refer to the I2C driver documentation for details of the protocol implementation and data package format by the EZI2C interface.

    -

    To use a UART-based tuner interface, the user must:

      -
    • Initialize the UART driver and interface
    • -
    • Use a callback function to facilitate data transmission and reception using the UART driver.
    • -
    -

    The application program must:

      -
    • Form a transmission data packet
    • -
    • Validate the data package on receiver implementation prior to passing to the CAPSENSE™ Middleware.
    • -
    -

    The transmission packet includes a CAPSENSE™ context structure sandwiched between a header (0x0D0A) and a tail (0x00FFFF), hence the package size is dependent on CAPSENSE™ context information. The receiver packet is 16-byte (fixed length) data explained under the Cy_CapSense_CheckTunerCmdIntegrity() function. The Cy_CapSense_CheckTunerCmdIntegrity() function is used to validate the received data package prior to passing it to the CAPSENSE™ middleware.

    -

    Periodical calling the Cy_CapSense_RunTuner() function is:

      -
    • mandatory for operation of a UART-based tuner interface. The middleware operation is always synchronous to the Tuner tool.
    • -
    • optional to periodically call Cy_CapSense_RunTuner() for EZI2C based interface.
    • -
    -

    If the Cy_CapSense_RunTuner() function is not periodically called by the application program, the middleware operation is asynchronous to the Tuner tool and the following disadvantages are applicable:

      -
    • The raw counts displayed in the CAPSENSE™ Tuner tool may be filtered and/or non-filtered. Result - noise and SNR measurements are not accurate.
    • -
    • The CAPSENSE™ Tuner tool can read sensor data (such as raw counts) from a scan multiply. Result - noise and SNR measurement are not accurate.
    • -
    • The CAPSENSE™ Tuner tool and Host controller should not change the parameters via the Tuner interface - in async mode this leads to abnormal behavior.
    • -
    • Displaying detected gestures may be missed.
    • -
    -
    Warning
    This function executes received commands. Two commands CY_CAPSENSE_TU_CMD_ONE_SCAN_E and CY_CAPSENSE_TU_CMD_SUSPEND_E change the FW tuner module state to suspend. In this state, the function waits until CY_CAPSENSE_TU_CMD_RESUME_E is received. Use a callback mechanism of command receiving to avoid FW hanging. Refer to the Function Usage section for examples.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    The return parameter indicates whether a middleware re-start was executed by this function or not:
      -
    • CY_CAPSENSE_STATUS_RESTART_DONE - Based on a received command, the CAPSENSE™ was re-initialized.
    • -
    • CY_CAPSENSE_STATUS_RESTART_NONE - Re-start was not executed by this function.
    • -
    -
    -
    Function Usage
    -

    An example of synchronization with the Tuner tool using EzI2C:

    /* EZI2C Initialization and assignment of communication buffer to cy_capsense_tuner */
    Cy_SCB_EZI2C_Init(EZI2C_HW, &EZI2C_config, &EZI2C_context);
    Cy_SysInt_Init(&EZI2C_ISR_cfg, &EZI2C_Interrupt);
    NVIC_EnableIRQ(EZI2C_ISR_cfg.intrSrc);
    Cy_SCB_EZI2C_SetBuffer1(EZI2C_HW, (uint8 *)&cy_capsense_tuner, sizeof(cy_capsense_tuner), sizeof(cy_capsense_tuner), &EZI2C_context);
    Cy_SCB_EZI2C_Enable(EZI2C_HW);
    for(;;)
    {
    if (CY_CAPSENSE_NOT_BUSY == Cy_CapSense_IsBusy(&cy_capsense_context))
    {
    Cy_CapSense_ProcessAllWidgets(&cy_capsense_context);
    Cy_CapSense_RunTuner(&cy_capsense_context);
    #if (CY_CAPSENSE_PLATFORM_BLOCK_FIFTH_GEN)
    Cy_CapSense_ScanAllSlots(&cy_capsense_context);
    #else
    Cy_CapSense_ScanAllWidgets(&cy_capsense_context);
    #endif
    }
    }

    An example of synchronization with the Tuner tool using UART.
    - Tuner Send callback implementation: Transmitting data through UART interface:

    void TunerSend(void * context)
    {
    uint8_t uartTxHeader[] = {0x0Du, 0x0Au};
    uint8_t uartTxTail[] = {0x00u, 0xFFu, 0xFFu};
    (void)context;
    Cy_SCB_UART_PutArrayBlocking(UART_HW, &(uartTxHeader[0u]), sizeof(uartTxHeader));
    Cy_SCB_UART_PutArrayBlocking(UART_HW, (uint8 *)&cy_capsense_tuner, sizeof(cy_capsense_tuner));
    Cy_SCB_UART_PutArrayBlocking(UART_HW, uartTxTail, sizeof(uartTxTail));
    }

    Tuner Receive callback implementation: Receiving data from UART interface:

    void TunerReceive(uint8_t ** packet, uint8_t ** tunerPacket, void * context)
    {
    uint32_t i;
    (void) context;
    static uint32_t dataIndex = 0u;
    static uint8_t commandPacket[16u] = {0u};
    while(0u != Cy_SCB_UART_GetNumInRxFifo(UART_HW))
    {
    commandPacket[dataIndex++] = (uint8_t)Cy_SCB_UART_Get(UART_HW);
    if (CY_CAPSENSE_COMMAND_PACKET_SIZE <= dataIndex)
    {
    if (CY_CAPSENSE_COMMAND_OK == Cy_CapSense_CheckTunerCmdIntegrity(&commandPacket[0u]))
    {
    /* Found a correct command, reset data index and assign pointers to buffers */
    dataIndex = 0u;
    *tunerPacket = (uint8_t *)&cy_capsense_tuner;
    *packet = &commandPacket[0u];
    break;
    }
    else
    {
    /* Command is not correct, remove the first byte in commandPacket FIFO */
    dataIndex--;
    for(i = 0u; i < (CY_CAPSENSE_COMMAND_PACKET_SIZE - 1u); i++)
    {
    commandPacket[i] = commandPacket[i + 1u];
    }
    }
    }
    }
    }

    A part of the main.c FW flow with registering callbacks:

    /*...*/
    /* Register communication callbacks */
    cy_capsense_context.ptrInternalContext->ptrTunerSendCallback = TunerSend;
    cy_capsense_context.ptrInternalContext->ptrTunerReceiveCallback = TunerReceive;
    Cy_SCB_UART_Init(UART_HW, &UART_config, &UART_context);
    Cy_SCB_UART_Enable(UART_HW);
    for(;;)
    {
    if (CY_CAPSENSE_NOT_BUSY == Cy_CapSense_IsBusy(&cy_capsense_context))
    {
    Cy_CapSense_ProcessAllWidgets(&cy_capsense_context);
    /*
    * Cy_CapSense_RunTuner() calls periodically communication callbacks
    * for hence the Tuner tool are able to monitor sensor signals/statuses
    * and change CAPSENSE&trade; parameters for easy tuning.
    */
    Cy_CapSense_RunTuner(&cy_capsense_context);
    #if (CY_CAPSENSE_PLATFORM_BLOCK_FIFTH_GEN)
    Cy_CapSense_ScanAllSlots(&cy_capsense_context);
    #else
    Cy_CapSense_ScanAllWidgets(&cy_capsense_context);
    #endif
    }
    }
    /*...*/

    Refer to the Callbacks section for details.

    - -
    -
    - -

    ◆ Cy_CapSense_CheckTunerCmdIntegrity()

    - -
    -
    - - - - - - - - -
    uint32_t Cy_CapSense_CheckTunerCmdIntegrity (const uint8_t * commandPacket)
    -
    - -

    Checks command format, header, tail, CRC, etc.

    -

    This function checks whether the specified packet with the size CY_CAPSENSE_COMMAND_PACKET_SIZE could be represented as a command received from the CAPSENSE™ Tuner tool. The verification includes the following items:

      -
    • Header
    • -
    • Tail
    • -
    • CRC
    • -
    • Command code
    • -
    -

    Command format is the following:

      -
    • Byte 0: Header 0 = 0x0D
    • -
    • Byte 1: Header 1 = 0x0A
    • -
    • Byte 2: Command code = cy_en_capsense_tuner_cmd_t
    • -
    • Byte 3: Command counter
    • -
    • Byte 4: Size = either 1, 2 or 4
    • -
    • Byte 5: Offset MSB
    • -
    • Byte 6: Offset LSB
    • -
    • Byte 7: Data MSB
    • -
    • Byte 8: Data
    • -
    • Byte 9: Data
    • -
    • Byte 10: Data LSB
    • -
    • Byte 11: 16-bit CRC MSB
    • -
    • Byte 12: 16-bit CRC LSB
    • -
    • Byte 13: Tail 0 = 0x00
    • -
    • Byte 14: Tail 1 = 0xFF
    • -
    • Byte 15: Tail 2 = 0xFF
    • -
    -
    Parameters
    - - -
    commandPacketThe pointer to the data packet that should be verified.
    -
    -
    -
    Returns
    Returns the result of the command verification:
      -
    • CY_CAPSENSE_COMMAND_OK - Command is correct.
    • -
    • CY_CAPSENSE_WRONG_HEADER - Wrong header.
    • -
    • CY_CAPSENSE_WRONG_TAIL - Wrong tail.
    • -
    • CY_CAPSENSE_WRONG_CRC - Wrong CRC.
    • -
    • CY_CAPSENSE_WRONG_CODE - Wrong Command code.
    • -
    -
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__high__level.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__high__level.js deleted file mode 100644 index 3320e924f8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__high__level.js +++ /dev/null @@ -1,34 +0,0 @@ -var group__group__capsense__high__level = -[ - [ "Cy_CapSense_Init", "group__group__capsense__high__level.html#ga19b3aa9e14a04b76188f917c0dc004f5", null ], - [ "Cy_CapSense_DeInit", "group__group__capsense__high__level.html#ga7b8a365213dde3be6c6932dc23fdcee6", null ], - [ "Cy_CapSense_Enable", "group__group__capsense__high__level.html#gade28f1f915ce6b97f13399074a819c0d", null ], - [ "Cy_CapSense_Save", "group__group__capsense__high__level.html#ga899ef1058ead082503771da68e584b82", null ], - [ "Cy_CapSense_Restore", "group__group__capsense__high__level.html#gaf87102783ec511c2e5f2024680112d16", null ], - [ "Cy_CapSense_ProcessAllWidgets", "group__group__capsense__high__level.html#ga2a185db228d5cae975fbc92bd3bc6367", null ], - [ "Cy_CapSense_ProcessWidget", "group__group__capsense__high__level.html#ga52874ea98333723ec92aef1bb4791a7d", null ], - [ "Cy_CapSense_IncrementGestureTimestamp", "group__group__capsense__high__level.html#ga904eb69e694e4daf45bc778281b39d9e", null ], - [ "Cy_CapSense_SetGestureTimestamp", "group__group__capsense__high__level.html#gabf0789f59e23077cba0005b1499468f9", null ], - [ "Cy_CapSense_Wakeup", "group__group__capsense__high__level.html#gaf9436a7ec9b18880dbc046e91462710b", null ], - [ "Cy_CapSense_DeepSleepCallback", "group__group__capsense__high__level.html#ga9c47887109b22521eba45109b7a27f31", null ], - [ "Cy_CapSense_RegisterCallback", "group__group__capsense__high__level.html#ga289c4fd495135399a9ad9897920836a7", null ], - [ "Cy_CapSense_UnRegisterCallback", "group__group__capsense__high__level.html#gaf43b3cdfce7a3e8c0e5622f42e0a6319", null ], - [ "Cy_CapSense_DecodeWidgetGestures", "group__group__capsense__high__level.html#ga55fa694191705971b3aa2c29021fb9aa", null ], - [ "Cy_CapSense_RunSelfTest", "group__group__capsense__high__level.html#gab1f1514db0566e14ba20fd8647ecb3ad", null ], - [ "Cy_CapSense_ScanAllWidgets", "group__group__capsense__high__level.html#ga50e6ef42f2834083715abe86d8a85b48", null ], - [ "Cy_CapSense_ScanWidget", "group__group__capsense__high__level.html#gad98e953def0673cd879f01a00fb2d01b", null ], - [ "Cy_CapSense_IsBusy", "group__group__capsense__high__level.html#ga7f8739755bba6b51c274f45b569b9ba0", null ], - [ "Cy_CapSense_InterruptHandler", "group__group__capsense__high__level.html#gaeab57caca852dae59618fbfbcd431c27", null ], - [ "Cy_CapSense_SetupWidget", "group__group__capsense__high__level.html#ga9f798069c57bf91f7ce2bc19bb086191", null ], - [ "Cy_CapSense_Scan", "group__group__capsense__high__level.html#ga6473761292c2696bdea571b8bb10b308", null ], - [ "Cy_CapSense_ScanAllSlots", "group__group__capsense__high__level.html#ga045f3f46ff4e43c4f4dbe087c0156f56", null ], - [ "Cy_CapSense_ScanSlots", "group__group__capsense__high__level.html#gaf10ce0cc817442374d2df04c9d241f9b", null ], - [ "Cy_CapSense_MwState", "group__group__capsense__high__level.html#ga1530a032b2c5239f7efde29fa23d1793", null ], - [ "Cy_CapSense_IsAnyWidgetActive", "group__group__capsense__high__level.html#ga036e1061e289e038c3e13df5c8751aed", null ], - [ "Cy_CapSense_IsWidgetActive", "group__group__capsense__high__level.html#ga4afba79341aef27afc40054d376d7193", null ], - [ "Cy_CapSense_IsSensorActive", "group__group__capsense__high__level.html#gaeaa2dc78e56e2fc1ec0cc2b265851d69", null ], - [ "Cy_CapSense_IsProximitySensorActive", "group__group__capsense__high__level.html#ga96509342c580a9c5f6e17bdf8c74e53a", null ], - [ "Cy_CapSense_GetTouchInfo", "group__group__capsense__high__level.html#ga6192ba34167662ac9573c0a4cd71682f", null ], - [ "Cy_CapSense_RunTuner", "group__group__capsense__high__level.html#ga0c613df550388c119fdab4e50341a6b4", null ], - [ "Cy_CapSense_CheckTunerCmdIntegrity", "group__group__capsense__high__level.html#ga1f0fdedcec1ad936f5e9e4ae28f17274", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__low__level.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__low__level.html deleted file mode 100644 index b81beff9fa..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__low__level.html +++ /dev/null @@ -1,2480 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Low-level Functions - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Low-level Functions
    -
    -
    -

    General Description

    -

    The Low-level functions represent the lower layer of abstraction in support of High-level Functions.

    -

    These functions also enable implementation of special case designs requiring performance optimization and non-typical functionalities.

    -

    All functions are general to all sensing methods. Some of the functions detect the sensing method used by the widget and execute tasks as appropriate.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Functions

    cy_capsense_status_t Cy_CapSense_ProcessWidgetExt (uint32_t widgetId, uint32_t mode, cy_stc_capsense_context_t *context)
     Performs customized data processing on the selected widget. More...
     
    cy_capsense_status_t Cy_CapSense_ProcessSensorExt (uint32_t widgetId, uint32_t sensorId, uint32_t mode, const cy_stc_capsense_context_t *context)
     Performs customized data processing on the selected sensor. More...
     
    void Cy_CapSense_InitializeAllBaselines (cy_stc_capsense_context_t *context)
     Initializes the baselines of all the sensors of all the widgets. More...
     
    void Cy_CapSense_InitializeWidgetBaseline (uint32_t widgetId, cy_stc_capsense_context_t *context)
     Initializes the baselines of all the sensors in a specific widget. More...
     
    void Cy_CapSense_InitializeSensorBaseline (uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context)
     Initializes the baseline of a sensor in a widget specified by the input parameters. More...
     
    void Cy_CapSense_InitializeAllFilters (const cy_stc_capsense_context_t *context)
     Initializes (or re-initializes) all the firmware filter history, except the baseline. More...
     
    void Cy_CapSense_InitializeWidgetFilter (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Initializes (or re-initializes) the raw count filter history of all the sensors in a widget specified by the input parameter. More...
     
    cy_capsense_status_t Cy_CapSense_UpdateAllBaselines (const cy_stc_capsense_context_t *context)
     Updates the baseline for all the sensors in all the widgets. More...
     
    cy_capsense_status_t Cy_CapSense_UpdateWidgetBaseline (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Updates the baselines for all the sensors in a widget specified by the input parameter. More...
     
    cy_capsense_status_t Cy_CapSense_UpdateSensorBaseline (uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context)
     Updates the baseline for a sensor in a widget specified by the input parameters. More...
     
    void Cy_CapSense_InitializeWidgetGestures (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Performs initialization of all gestures for the specified widget. More...
     
    void Cy_CapSense_InitializeAllStatuses (const cy_stc_capsense_context_t *context)
     Performs initialization of all statuses and related modules including debounce counters and touch positions of all the widgets. More...
     
    void Cy_CapSense_InitializeWidgetStatus (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Performs initialization of all statuses, debounce counters, and touch positions of the specified widget. More...
     
    cy_capsense_status_t Cy_CapSense_ProcessWidgetMptxDeconvolution (uint32_t widgetId, cy_stc_capsense_context_t *context)
     Performs raw count deconvolution for the specified CSX widget when Multi-phase Tx is enabled. More...
     
    void Cy_CapSense_PreProcessWidget (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Executes the pre-processing of scan raw data for specified widgets. More...
     
    void Cy_CapSense_PreProcessSensor (uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context)
     Executes the pre-processing of scan raw data for specified sensor. More...
     
    cy_capsense_status_t Cy_CapSense_RunMfsMedian (uint32_t widgetId, const cy_stc_capsense_context_t *context)
     Applies the median filter to the specified multi-frequency widget and updates the specified widget diff counts. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_CheckCRCWidget (uint32_t widgetId, cy_stc_capsense_context_t *context)
     Checks the stored CRC of the cy_stc_capsense_widget_context_t data structure of the specified widget. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_CheckIntegritySensorRawcount (uint32_t widgetId, uint32_t sensorId, uint16_t rawcountHighLimit, uint16_t rawcountLowLimit, cy_stc_capsense_context_t *context)
     Checks the raw count of the specified widget/sensor is within the specified range. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_CheckIntegritySensorBaseline (uint32_t widgetId, uint32_t sensorId, uint16_t baselineHighLimit, uint16_t baselineLowLimit, cy_stc_capsense_context_t *context)
     Checks if the baseline of the specified sensor is not corrupted by comparing it with its inverse copy and checks if the baseline is within the specified range. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_CheckIntegritySensorPins (uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context)
     Checks the specified widget/sensor for shorts to GND, VDD or other sensors. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceCap (cy_en_capsense_bist_external_cap_id_t integrationCapId, uint32_t *ptrValue, uint32_t maxCapacitance, cy_stc_capsense_context_t *context)
     Measures the capacitance in picofarads of the specified CAPSENSE™ integration (external) capacitor. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureVdda (uint32_t *ptrValue, cy_stc_capsense_context_t *context)
     Measures a VDDA voltage, returns the measured voltage in millivolts through the ptrValue argument and stores it to the .vddaVoltage field of the cy_stc_capsense_bist_context_t structure. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceSensor (uint32_t widgetId, uint32_t sensorId, uint32_t *ptrValue, cy_stc_capsense_context_t *context)
     Measures the specified CSD sensor / CSX electrode capacitance in femtofarads. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceShield (uint32_t *ptrValue, cy_stc_capsense_context_t *context)
     Measures shield electrode capacitance in femtofarads. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceSensorElectrode (uint32_t widgetId, uint32_t eltdId, cy_stc_capsense_context_t *context)
     Measures the specified CSD sensor / CSX electrode capacitance in femtofarads. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceSlotSensors (uint32_t slotId, uint32_t skipChMask, cy_stc_capsense_context_t *context)
     Measures the specified slot sensor capacitance in femtofarads. More...
     
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceShieldElectrode (uint32_t skipChMask, cy_stc_capsense_context_t *context)
     Measures shield electrode capacitances in femtofarads. More...
     
    cy_capsense_status_t Cy_CapSense_CalibrateAllWidgets (cy_stc_capsense_context_t *context)
     Executes the CapDAC/IDAC calibration for all the sensors in all widgets in the middleware to default target value. More...
     
    cy_capsense_status_t Cy_CapSense_CalibrateWidget (uint32_t widgetId, cy_stc_capsense_context_t *context)
     Executes the CapDAC/IDAC calibration for all the sensors in the specified widget to the default target value. More...
     
    cy_capsense_status_t Cy_CapSense_ScanSensor (uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context)
     Initiates the scanning of the selected sensor in the widget. More...
     
    cy_capsense_status_t Cy_CapSense_SetPinState (uint32_t widgetId, uint32_t sensorElement, uint32_t state, const cy_stc_capsense_context_t *context)
     Sets the state (drive mode and HSIOM state) of the GPIO used by a sensor. More...
     
    cy_capsense_status_t Cy_CapSense_SetInactiveElectrodeState (uint32_t inactiveState, uint32_t sensingGroup, cy_stc_capsense_context_t *context)
     Sets a desired state for all inactive CAPSENSE™-related electrodes for CSD or CSX scans. More...
     
    cy_capsense_status_t Cy_CapSense_SetupWidgetExt (uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context)
     Performs extended initialization for the specified widget and also performs initialization required for a specific sensor in the widget. More...
     
    cy_capsense_status_t Cy_CapSense_ScanExt (cy_stc_capsense_context_t *context)
     Starts a conversion on the pre-configured sensor. More...
     
    cy_capsense_status_t Cy_CapSense_CalibrateAllSlots (cy_stc_capsense_context_t *context)
     Executes CapDAC auto-calibration for all relevant widgets if enabled. More...
     
    cy_capsense_status_t Cy_CapSense_SetCalibrationTargets (uint32_t csdCalibrTarget, uint32_t csxCalibrTarget, cy_stc_capsense_context_t *context)
     Sets the CapDAC auto-calibration raw count targets for CSD and/or CSX widgets. More...
     
    cy_capsense_status_t Cy_CapSense_SlotPinState (uint32_t slotId, const cy_stc_capsense_electrode_config_t *ptrEltdCfg, uint32_t pinState, cy_stc_capsense_context_t *context)
     Configures the desired electrode to the specified state by updating the CAPSENSE™ configuration. More...
     
    cy_capsense_status_t Cy_CapSense_ScanAbort (cy_stc_capsense_context_t *context)
     This function sets the sequencer to the idle state by resetting the hardware, it can be used to abort current scan. More...
     
    cy_capsense_status_t Cy_CapSense_GetParam (uint32_t paramId, uint32_t *value, const void *ptrTuner, const cy_stc_capsense_context_t *context)
     Gets a value of the specified parameter from the cy_capsense_tuner structure. More...
     
    cy_capsense_status_t Cy_CapSense_SetParam (uint32_t paramId, uint32_t value, void *ptrTuner, cy_stc_capsense_context_t *context)
     Sets a new value for the specified parameter in cy_capsense_tuner structure. More...
     
    uint16_t Cy_CapSense_GetCRC (const uint8_t *ptrData, uint32_t len)
     Calculates CRC for the specified buffer and length. More...
     
    -

    Function Documentation

    - -

    ◆ Cy_CapSense_ProcessWidgetExt()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ProcessWidgetExt (uint32_t widgetId,
    uint32_t mode,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs customized data processing on the selected widget.

    -

    This function performs customized data processing specified by the mode parameter on a widget. This function can be used with any of the available scan functions. This function should be called only after all the sensors in the specified widget are scanned. Calling this function multiple times with the same mode without new sensor scan causes unexpected behavior. This function ignores the value of the wdgtEnable register.

    -

    The CY_CAPSENSE_PROCESS_CALC_NOISE and CY_CAPSENSE_PROCESS_THRESHOLDS masks for mode parameter are supported only when smart sensing algorithm is enabled for CSD widgets.

    -

    The execution order of processing tasks starts from LSB to MSB of the mode parameter. To implement a different order of execution, call this function multiple times with the required mode parameter.

    -

    For more details, refer to function usage example below.

    -
    Note
    For the the fifth-generation CAPSENSE™ an extra processing should be performed prior a call of this function: -
    -
    Parameters
    - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    modeSpecifies the type of widget processing to be executed for the specified widget:
      -
    1. Bits [31..7] - Reserved.
    2. -
    3. Bits [6..0] - CY_CAPSENSE_PROCESS_ALL - Execute all of the below tasks.
    4. -
    5. Bit [6] - CY_CAPSENSE_PROCESS_MFS_FILTER - Run the firmware filters for MFS on sensor rawcounts (applicable only for fifth-generation CAPSENSE™).
    6. -
    7. Bit [5] - CY_CAPSENSE_PROCESS_STATUS - Update the status (on/off, centroid position).
    8. -
    9. Bit [4] - CY_CAPSENSE_PROCESS_THRESHOLDS - Update the thresholds (only in CSD auto-tuning mode).
    10. -
    11. Bit [3] - CY_CAPSENSE_PROCESS_CALC_NOISE - Calculate the noise (only in CSD auto-tuning mode).
    12. -
    13. Bit [2] - CY_CAPSENSE_PROCESS_DIFFCOUNTS - Update the difference counts of each sensor.
    14. -
    15. Bit [1] - CY_CAPSENSE_PROCESS_BASELINE - Update the baselines for all sensor.
    16. -
    17. Bit [0] - CY_CAPSENSE_PROCESS_FILTER - Run the firmware filters on sensor rawcounts.
    18. -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the widget processing operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The processing is successfully performed.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid.
    • -
    • CY_CAPSENSE_STATUS_BAD_DATA - The processing failed.
    • -
    -
    -
    Function Usage
    -

    An example of customized data processing, changed processing order:

    /*...*/
    /* Standard execution order (smart sensing algorithm is disabled):
    * - Filtering
    * - Baselining
    * - Difference calculation
    * - Status / Position calculation
    *
    * An example below makes a different order:
    * - filtering is executed as a last task
    */
    Cy_CapSense_ProcessWidgetExt(CY_CAPSENSE_TOUCHPAD0_WDGT_ID,
    &cy_capsense_context);
    Cy_CapSense_ProcessWidgetExt(CY_CAPSENSE_TOUCHPAD0_WDGT_ID,
    &cy_capsense_context);
    /*...*/
    -
    -
    - -

    ◆ Cy_CapSense_ProcessSensorExt()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ProcessSensorExt (uint32_t widgetId,
    uint32_t sensorId,
    uint32_t mode,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs customized data processing on the selected sensor.

    -

    This function performs customized data processing specified by the mode parameter on a sensor. This function performs the exact same task of the Cy_CapSense_ProcessWidgetExt() function but only on the specified sensor instead of all sensors in the widget.

    -

    The pipeline scan method (i.e. during scanning of a sensor, processing of a previously scanned sensor is performed) can be implemented using this function and it may reduce the total scan/process time, increase the refresh rate, and decrease the power consumption. For more details, refer to function usage example below.

    -
    Note
    For the the fifth CAPSENSE™ HW generation an extra processing should be performed prior a call of this function: -
    -
    Parameters
    - - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    modeSpecifies the type of the sensor processing that must be executed for the specified sensor:
      -
    1. Bits [31..5] - Reserved
    2. -
    3. Bits [4..0] - CY_CAPSENSE_PROCESS_ALL - Executes all the tasks
    4. -
    5. Bit [4] - CY_CAPSENSE_PROCESS_THRESHOLDS - Updates the thresholds (only in auto-tuning mode)
    6. -
    7. Bit [3] - CY_CAPSENSE_PROCESS_CALC_NOISE - Calculates the noise (only in auto-tuning mode)
    8. -
    9. Bit [2] - CY_CAPSENSE_PROCESS_DIFFCOUNTS - Updates the diff count
    10. -
    11. Bit [1] - CY_CAPSENSE_PROCESS_BASELINE - Updates the baseline
    12. -
    13. Bit [0] - CY_CAPSENSE_PROCESS_FILTER - Runs the firmware filters
    14. -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the sensor process operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The processing is successfully performed.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid.
    • -
    • CY_CAPSENSE_STATUS_BAD_DATA - The processing failed.
    • -
    -
    -
    Function Usage
    -

    An example demonstrates pipeline implementation of sensor scanning and processing:

    /*...*/
    snsIndex = 0u;
    Cy_CapSense_ScanSensor(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, snsIndex, &cy_capsense_context);
    for(;;)
    {
    if (CY_CAPSENSE_NOT_BUSY == Cy_CapSense_IsBusy(&cy_capsense_context))
    {
    snsIndex++;
    if (snsIndex < cy_capsense_context.ptrWdConfig[CY_CAPSENSE_TOUCHPAD0_WDGT_ID].numSns)
    {
    Cy_CapSense_ScanSensor(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, snsIndex, &cy_capsense_context);
    Cy_CapSense_ProcessSensorExt(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, snsIndex, CY_CAPSENSE_PROCESS_ALL, &cy_capsense_context);
    }
    else
    {
    /* The last sensor is scanned already */
    Cy_CapSense_ProcessSensorExt(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, snsIndex, CY_CAPSENSE_PROCESS_ALL, &cy_capsense_context);
    /* All sensors processed, therefore process only widget-related task */
    Cy_CapSense_ProcessWidgetExt(CY_CAPSENSE_TOUCHPAD0_WDGT_ID, CY_CAPSENSE_PROCESS_STATUS, &cy_capsense_context);
    /* Reset sensor index to start from the first sensor */
    snsIndex = 0u;
    }
    }
    }
    /*...*/
    -
    -
    - -

    ◆ Cy_CapSense_InitializeAllBaselines()

    - -
    -
    - - - - - - - - -
    void Cy_CapSense_InitializeAllBaselines (cy_stc_capsense_context_tcontext)
    -
    - -

    Initializes the baselines of all the sensors of all the widgets.

    -

    This function initializes baselines for all sensors and widgets in the project. It can also be used to re-initialize baselines at any time, however, note that all sensor data history information and sensor status shall be reset along with re-initialization of baseline.

    -

    Following functions to initialize sensor and widgets and filter history should be called after initializing baseline for proper operation of the CAPSENSE™ middleware:

    -

    These functions are called by the CapSense_Enable() function, hence it is not required to use this function if above function is used.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InitializeWidgetBaseline()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_InitializeWidgetBaseline (uint32_t widgetId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Initializes the baselines of all the sensors in a specific widget.

    -

    This function initializes baselines for all sensors in a specific widget in the project. It can also be used to re-initialize baselines at any time, however, note that all sensor data history information and sensor status should be reset along with re-initialization of baseline.

    -

    The following functions to initialize sensor and widgets and filter history should be called after initializing baselines for proper operation of middleware.

    -

    These functions are called by CapSense_Enable() function, hence it is not required to use this function is above function is used.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InitializeSensorBaseline()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_InitializeSensorBaseline (uint32_t widgetId,
    uint32_t sensorId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Initializes the baseline of a sensor in a widget specified by the input parameters.

    -
    Parameters
    - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InitializeAllFilters()

    - -
    -
    - - - - - - - - -
    void Cy_CapSense_InitializeAllFilters (const cy_stc_capsense_context_tcontext)
    -
    - -

    Initializes (or re-initializes) all the firmware filter history, except the baseline.

    -

    Calling this function is accompanied by

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InitializeWidgetFilter()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_InitializeWidgetFilter (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Initializes (or re-initializes) the raw count filter history of all the sensors in a widget specified by the input parameter.

    -

    Calling this function is accompanied by

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_UpdateAllBaselines()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_UpdateAllBaselines (const cy_stc_capsense_context_tcontext)
    -
    - -

    Updates the baseline for all the sensors in all the widgets.

    -

    Baselines must be updated after sensor scan to ignore low frequency changes in the sensor data caused by environment changes such as temperature from sensor status decision.

    -

    This function ignores the widget enable bit in the widget status register. Calling this function multiple times without a new sensor scan leads to unexpected behavior and should be avoided.

    -

    This function is called by Cy_CapSense_ProcessAllWidgets() and Cy_CapSense_ProcessWidget(), hence the application program need not use this function if any of the above functions is already used. This function can be used for custom application implementation.

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the update baseline operation of all the widgets:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is successfully completed.
    • -
    • CY_CAPSENSE_STATUS_BAD_DATA - The baseline processing failed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_UpdateWidgetBaseline()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_UpdateWidgetBaseline (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Updates the baselines for all the sensors in a widget specified by the input parameter.

    -

    This function performs exactly the same tasks as Cy_CapSense_UpdateAllBaselines() but only for a specified widget.

    -

    Calling this function multiple times without a new sensor scan leads to unexpected behavior and should be avoided. The application program need not use this function if the Cy_CapSense_UpdateAllBaselines(), Cy_CapSense_ProcessAllWidgets() or Cy_CapSense_ProcessWidget() functions are already used.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the specified widget update baseline operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is successfully completed.
    • -
    • CY_CAPSENSE_STATUS_BAD_DATA - The baseline processing failed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_UpdateSensorBaseline()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_UpdateSensorBaseline (uint32_t widgetId,
    uint32_t sensorId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Updates the baseline for a sensor in a widget specified by the input parameters.

    -

    This function performs exactly the same tasks as Cy_CapSense_UpdateAllBaselines() and Cy_CapSense_UpdateWidgetBaseline() but only for a specified sensor.

    -

    Calling this function multiple times without a new sensor scan leads to unexpected behavior and should be avoided. The application need not use this function if the Cy_CapSense_UpdateWidgetBaseline (), Cy_CapSense_UpdateAllBaselines (), Cy_CapSense_ProcessAllWidgets(), or Cy_CapSense_ProcessWidget() functions are already used.

    -
    Parameters
    - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the specified sensor update baseline operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is successfully completed.
    • -
    • CY_CAPSENSE_STATUS_BAD_DATA - The baseline processing failed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InitializeWidgetGestures()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_InitializeWidgetGestures (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs initialization of all gestures for the specified widget.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InitializeAllStatuses()

    - -
    -
    - - - - - - - - -
    void Cy_CapSense_InitializeAllStatuses (const cy_stc_capsense_context_tcontext)
    -
    - -

    Performs initialization of all statuses and related modules including debounce counters and touch positions of all the widgets.

    -

    The initialization includes the following tasks:

      -
    • Reset the debounce counters of all the widgets.
    • -
    • Reset the number of touches.
    • -
    • Reset the position filter history for slider and touchpad widgets.
    • -
    • Clear all status of widgets and sensors.
    • -
    • Enable all the widgets.
    • -
    -

    Calling this function is accompanied by

    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_InitializeWidgetStatus()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_InitializeWidgetStatus (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs initialization of all statuses, debounce counters, and touch positions of the specified widget.

    -

    The initialization includes:

      -
    • Resets the debounce counter of the widget.
    • -
    • Resets the number of touches.
    • -
    • Resets the position filter history for slider and touchpad widgets.
    • -
    • Clears widget and sensor statuses.
    • -
    • Enables the widget.
    • -
    -

    The Button and Matrix Button widgets have individual debounce counters per sensor for the CSD widgets and per node for the CSX widgets.

    -

    The Slider and Touchpad widgets have a single debounce counter per widget.

    -

    The Proximity widget has two debounce counters per sensor. One is for the proximity event and the second is for the touch event.

    -

    All debounce counters during initialization are set to the value of the onDebounce widget parameter.

    -

    Calling this function is accompanied by

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_ProcessWidgetMptxDeconvolution()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ProcessWidgetMptxDeconvolution (uint32_t widgetId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs raw count deconvolution for the specified CSX widget when Multi-phase Tx is enabled.

    -

    This function decodes raw counts received after scanning into normal view by performing deconvolution algorithm. If the function is called for a widget with disabled Multi-phase Tx, the function returns CY_CAPSENSE_STATUS_BAD_DATA.

    -

    No need to call this function from application layer since the Cy_CapSense_ProcessAllWidgets() and Cy_CapSense_ProcessWidget() functions calls deconvolution automatically.

    -

    DAC auto-calibration when enabled performs sensor auto-calibration without performing deconvolution. The deconvolution algorithm for even number of TX electrodes decreases raw count level twice (keeping the signal on the same level).

    -

    If specific processing is implemented using the Cy_CapSense_ProcessWidgetExt() and Cy_CapSense_ProcessSensorExt() function then a call of this function is required prior doing the specific processing.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the processing operation.
    - -
    -
    - -

    ◆ Cy_CapSense_PreProcessWidget()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_PreProcessWidget (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Executes the pre-processing of scan raw data for specified widgets.

    -

    This function is called prior any other processing function for the fifth CAPSENSE™ HW generation. The pre-processing routine implements the following operations:

      -
    • Executes the CIC2 pre-processing if the filter mode is set to CIC2.
    • -
    • Limits raw count to maximum value.
    • -
    • Executes the raw data inversion for the CSX sensors.
    • -
    -

    No need to call this function from application layer since the Cy_CapSense_ProcessAllWidgets() and Cy_CapSense_ProcessWidget() functions calls it automatically.

    -

    If specific processing is implemented using the Cy_CapSense_ProcessWidgetExt() and Cy_CapSense_ProcessSensorExt() function then a call of this function is required prior doing the specific processing. If Multi-phase TX is enabled then deconvolution should be executed after call of this function using the Cy_CapSense_ProcessWidgetMptxDeconvolution() function.

    -
    Parameters
    - - - -
    widgetIdThe widget ID, for which the pre-processing should be executed.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_PreProcessSensor()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    void Cy_CapSense_PreProcessSensor (uint32_t widgetId,
    uint32_t sensorId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Executes the pre-processing of scan raw data for specified sensor.

    -

    This function is called prior any other processing function for the fifth CAPSENSE™ HW generation. The pre-processing routine implements the following operations:

      -
    • Executes the CIC2 pre-processing if the filter mode is set to CIC2.
    • -
    • Limits raw count to maximum value.
    • -
    • Executes the raw data inversion for the CSX sensors.
    • -
    -

    No need to call this function from application layer since the Cy_CapSense_ProcessAllWidgets() and Cy_CapSense_ProcessWidget() functions calls it automatically.

    -

    If specific processing is implemented using the Cy_CapSense_ProcessWidgetExt() and Cy_CapSense_ProcessSensorExt() function then a call of this function is required prior doing the specific processing. If Multi-phase TX is enabled then deconvolution should be executed after pre-processing of all sensors of the specified widget using the Cy_CapSense_ProcessWidgetMptxDeconvolution() function.

    -
    Parameters
    - - - - -
    widgetIdThe widget ID, for which the pre-processing should be executed.
    sensorIdThe sensor ID, for which the pre-processing should be executed.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_RunMfsMedian()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_RunMfsMedian (uint32_t widgetId,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Applies the median filter to the specified multi-frequency widget and updates the specified widget diff counts.

    -

    This function is a low-level function and is called automatically by high-level processing functions like Cy_CapSense_ProcessWidget() and Cy_CapSense_ProcessAllWidgets().

    -

    It is not recommended to use this function directly on application level.

    -

    The function applies the median filter to diff count of each sensor of the specified widget (with enabled multi-frequency feature) and update the diff count of the specified main widget.

    -

    This function is needed to implement customer-specific use cases.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the widget processing:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is successfully completed
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid either widgetId is not valid or multi-frequency is not enabled for this widget or the specified widgetId is derivative of the main widget.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_CheckCRCWidget()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_CheckCRCWidget (uint32_t widgetId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Checks the stored CRC of the cy_stc_capsense_widget_context_t data structure of the specified widget.

    -

    This function validates the data integrity of the cy_stc_capsense_widget_context_t data structure of the specified widget by calculating the CRC and comparing it with the stored CRC value of the specified widget.

    -

    Initially, after the device power up, the Cy_CapSense_Enable() function calculates CRC for each widget and stores them in the .ptrWdgtCrc[] array of the cy_stc_capsense_bist_context_t structure. The test execution compares this stored CRC value with the newly calculated and if the stored and calculated CRC values differ:

      -
    1. The calculated CRC is stored to the .wdgtCrcCalc field of the cy_stc_capsense_bist_context_t data structure.
    2. -
    3. The widget ID is stored to the .crcWdgtId field.
    4. -
    5. The CY_CAPSENSE_BIST_CRC_WDGT_MASK bit is set in the .testResultMask field.
    6. -
    -

    The function never clears the CY_CAPSENSE_BIST_CRC_WDGT_MASK bit. If the CY_CAPSENSE_BIST_CRC_WDGT_MASK bit is set, the wdgtCrcCalc and .crcWdgtId fields are not updated.

    -

    It is recommended to use the Cy_CapSense_SetParam() function to change the value of the cy_stc_capsense_widget_context_t data structure elements as the CRC is updated by Cy_CapSense_SetParam() function.

    -

    You can initiate this test by the Cy_CapSense_RunSelfTest() function with the CY_CAPSENSE_BIST_CRC_WDGT_MASK mask as an input.

    -

    The function clears the CY_CAPSENSE_WD_WORKING_MASK bit of the .status field in cy_stc_capsense_widget_context_t structure if the calculated CRC value differs to the stored CRC value. Those non-working widgets are skipped by the high-level scanning and processing functions. Restoring a widget to its working state should be done by the application level.

    -

    For details of the used CRC algorithm, refer to the Cy_CapSense_GetCRC() function.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The stored CRC matches the calculated CRC.
    • -
    • CY_CAPSENSE_BIST_FAIL_E - The widget CRC differs to the stored CRC.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameters are invalid. The test was not executed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_CheckIntegritySensorRawcount()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_CheckIntegritySensorRawcount (uint32_t widgetId,
    uint32_t sensorId,
    uint16_t rawcountHighLimit,
    uint16_t rawcountLowLimit,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Checks the raw count of the specified widget/sensor is within the specified range.

    -

    The raw count is within a specific range (based on the calibration target) for good units. The function checks whether or not the raw count is within the user-defined limits in the ranges function arguments. If the raw count is out of limits, this function sets the CY_CAPSENSE_BIST_RAW_INTEGRITY_MASK bit in the .testResultMask field of the cy_stc_capsense_bist_context_t structure.

    -

    This function does not update the CY_CAPSENSE_WD_WORKING_MASK bit of the .status field in cy_stc_capsense_widget_context_t structure and is not available in the Cy_CapSense_RunSelfTest() function.

    -

    Use this function to verify the uniformity of sensors, for example, at mass-production or during an operation phase together with the Cy_CapSense_CheckIntegritySensorBaseline() function.

    -
    Parameters
    - - - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within the specified widget can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_SNS<SensorNumber>_ID.
    rawcountHighLimitSpecifies the upper limit for the widget/sensor raw count.
    rawcountLowLimitSpecifies the lower limit for the widget/sensor raw count.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The raw count is within the specified range.
    • -
    • CY_CAPSENSE_BIST_FAIL_E - The test failed and raw count is out of the specified limits.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The test was not executed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_CheckIntegritySensorBaseline()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_CheckIntegritySensorBaseline (uint32_t widgetId,
    uint32_t sensorId,
    uint16_t baselineHighLimit,
    uint16_t baselineLowLimit,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Checks if the baseline of the specified sensor is not corrupted by comparing it with its inverse copy and checks if the baseline is within the specified range.

    -

    The function checks whether or not the baseline binary inverted to its inverse copy is saved to the self-test baseline-inverse structure and is within the user-defined limits. If the baseline does not match its inverse copy or if the baseline is out of the user-defined limits, the function sets the CY_CAPSENSE_BIST_BSLN_INTEGRITY_MASK bit in the .testResultMask field of the cy_stc_capsense_bist_context_t structure.

    -

    The test is integrated into the CAPSENSE™ Middleware. All CAPSENSE™ processing functions like Cy_CapSense_ProcessAllWidgets() or Cy_CapSense_UpdateSensorBaseline() automatically verify the baseline value before using it and update its inverse copy after processing. If a baseline update fails, a CY_CAPSENSE_STATUS_BAD_DATA result is returned. The baseline initialization functions do not verify the baseline and update the baseline inverse copy.

    -

    This function does not update the CY_CAPSENSE_WD_WORKING_MASK bit of the .status field in cy_stc_capsense_widget_context_t structure and is not available in the Cy_CapSense_RunSelfTest() function.

    -

    Use this function to verify the uniformity of sensors, for example, at mass-production or during an operation phase together with the Cy_CapSense_CheckIntegritySensorRawcount() function.

    -
    Parameters
    - - - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within the specified widget can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_SNS<SensorNumber>_ID.
    baselineHighLimitSpecifies the upper limit for a baseline.
    baselineLowLimitSpecifies the lower limit for a baseline.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The baseline is within the specified range.
    • -
    • CY_CAPSENSE_BIST_FAIL_E - The test failed and the baseline is not binary inverted to its inverse copy or is out of the specified limits.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The test was not executed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_CheckIntegritySensorPins()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_CheckIntegritySensorPins (uint32_t widgetId,
    uint32_t sensorId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Checks the specified widget/sensor for shorts to GND, VDD or other sensors.

    -

    This function performs several sub-tests to verify the specified sensor is not electrically shorted and is in a good condition to reliably detect user interactions.

    -

    This function performs tests to check if the specified sensor is shorted to:

      -
    • GND
    • -
    • VDD
    • -
    • Other GPIOs used by CAPSENSE™ (such as sensors, Tx, Rx, shield electrodes, and external capacitors)
    • -
    • Other non-CAPSENSE™ GPIOs (only if they are configured in a strong high or low state during the test execution).
    • -
    -

    The absolute resistance of an electrical short must be less than 1500 Ohm including all series resistors on a sensor for a short to be detected to GND, VDD or GPIOs. For example, if a series resistor on a sensor is 560 Ohm (as recommended) and the sensor is shorted with another sensor, the function can detect a short with a short resistance up to 380 Ohm as there are two 560 ohm resistors between the shorted sensor GPIOs.

    -

    The function executes the following flow to detect a short:

      -
    • Configures all CAPSENSE™ controlled GPIOs to strong-drive-high, and the specified sensor GPIO to resistive pull down mode.
    • -
    • Waits for a delay (defined by .snsIntgShortSettlingTime field of the cy_stc_capsense_bist_context_t structure) to get established all transient processes.
    • -
    • Checks the status of the specified sensor for the expected state (logic low).
    • -
    • Configures all CAPSENSE™ controlled GPIOs to strong-drive-low, and the specified sensor GPIO to resistive pull up mode.
    • -
    • Waits for the above mentioned delay.
    • -
    • Checks the status of the specified sensor for the expected state (logic high).
    • -
    • Stores the test result in the CAPSENSE™ Data Structure. A short is reported only when the sensor status check returns an unexpected state.
    • -
    -

    Due to the sensor parasitic capacitance and internal pull-up/down resistance, logic high-to-low (and vice versa) transitions require a settling time before checking the sensor status. A 2us delay is used as a settling time and can be changed using the .snsIntgShortSettlingTime field of the cy_stc_capsense_bist_context_t structure.

    -

    If a short is detected this function updates the following statuses:

      -
    • The widget ID is stored to the .shortedWdId field of the cy_stc_capsense_bist_context_t structure.
    • -
    • The sensor ID is stored to the .shortedSnsId field of the cy_stc_capsense_bist_context_t structure.
    • -
    • The CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK bit is set in the .testResultMask field of the cy_stc_capsense_bist_context_t structure.
    • -
    • If CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK is already set due to a previously detected fault on any of the sensor, this function does not update the .shortedWdId and .shortedSnsId fields. For this reason, clear the CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK bit prior calling this function.
    • -
    • The widget is disabled by clearing the CY_CAPSENSE_WD_WORKING_MASK bit in the .status field of the cy_stc_capsense_widget_context_t structure of the specified widget. The disabled widget is ignored by high-level functions of scanning / data processing. To restore the widget operation the application layer should manually set the CY_CAPSENSE_WD_WORKING_MASK bit.
    • -
    -

    To check all the project sensors at once, use the Cy_CapSense_RunSelfTest() function with the CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK mask.

    -

    To detect an electrical short or fault condition with resistance higher than 1500 ohm, the Cy_CapSense_MeasureCapacitanceSensor() (4th Generation) or Cy_CapSense_MeasureCapacitanceSensorElectrode() (5th Generation) function can be used as the fault condition affects the measured sensor capacitance.

    -

    This test can be executed only if the CAPSENSE™ Middleware is in the IDLE state. This function must not be called while CAPSENSE™ Middleware is busy.

    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_WDGT_ID.
    sensorIdSpecifies the ID of the sensor (electrode for CSX widgets) within the widget to be tested.
    -
    -
    -

    For the CSD widgets, a macro for the sensor ID within the specified widget can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_SNS<SensorNumber>_ID.

    -

    For the CSX widgets, sensorId is an electrode ID and is defined as Rx ID or Tx ID. The first Rx in a widget corresponds to electrodeId = 0, the second Rx in a widget corresponds to electrodeId = 1, and so on. The last Tx in a widget corresponds to electrodeId = (RxNum + TxNum - 1). Macros for Rx and Tx IDs can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as:

      -
    • CapSense_<WidgetName>_RX<RXNumber>_ID
    • -
    • CapSense_<WidgetName>_TX<TXNumber>_ID.
    • -
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The sensor pin(s) are valid for CAPSENSE™ operations.
    • -
    • CY_CAPSENSE_BIST_FAIL_E - A short is detected on the specified sensor.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The test was not executed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The function was not executed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MeasureCapacitanceCap()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceCap (cy_en_capsense_bist_external_cap_id_t integrationCapId,
    uint32_t * ptrValue,
    uint32_t maxCapacitance,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Measures the capacitance in picofarads of the specified CAPSENSE™ integration (external) capacitor.

    -

    The function measures the capacitance of the specified external capacitor such as Cmod and returns the result through ptrValue, alternatively the measurement result is stored in the corresponding field of the cy_stc_capsense_bist_context_t structure (either .cModCap, .cIntACap, .cIntBCap, or .cShieldCap).

    -

    The maximum measurement capacitance is 25nF. The measurement accuracy is up to 15%. The measurement resolution is 10 bit which corresponds to the maximum capacitance specified by the maxCapacitance parameter. The bigger specified maximum capacitance is, the bigger capacitance value is for one measured count. It is recommended to specify the maximum capacitance twice bigger as the nominal capacitor capacitance. For example, if the nominal Cmod value is 2.2nF, the maxCapacitance parameter is set to 4nF-5nF.

    -

    The function configures all CAPSENSE™ pins to Strong-drive-low mode that allows detecting a short of the measured capacitor to other pins.

    -

    To measure all the available capacitors, the Cy_CapSense_RunSelfTest() function can be used with the CY_CAPSENSE_BIST_EXTERNAL_CAP_MASK mask. The measured results are stored in the corresponding field of the cy_stc_capsense_bist_context_t structure.

    -

    Measurement can be done only if the CAPSENSE™ Middleware is in the IDLE state. This function must not be called while the CAPSENSE™ Middleware is busy. The function is blocking, i.e. waits for the measurement to be completed prior to returning to the caller.

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - - - - -
    integrationCapIdIndexes of external capacitors to measure their capacitance. There are macros for each of them, namely:
      -
    • CY_CAPSENSE_BIST_CMOD_ID for the CSD method Cmod capacitor
    • -
    • CY_CAPSENSE_BIST_CINTA_ID for the CSX method CintA capacitor
    • -
    • CY_CAPSENSE_BIST_CINTB_ID for the CSX method CintB capacitor
    • -
    • CY_CAPSENSE_BIST_CSH_ID for the CSD method Csh capacitor
    • -
    -
    ptrValueThe pointer to the result of the measurement. The result is calculated as a specified capacitor capacitance value in picofarads. The user declares a variable of the uint32_t type and passes the pointer to this variable as the function parameter. If the ptrValue parameter is NULL then the capacitance value is not returned through the parameter but stored to the corresponding field of the cy_stc_capsense_bist_context_t structure.
    maxCapacitanceAn expected by the user maximum value of the measured capacitance in nanofarads in the range from 1 to 25 nF.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The measurement completes successfully, the result is valid.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_LOW_LIMIT_E - The measurement was performed but the scanning result is below the minimum possible value. The measurement result could be invalid. The capacitor might be shorted to VDD or a PCB track is broken (open capacitor).
    • -
    • CY_CAPSENSE_BIST_HIGH_LIMIT_E - The measurement was performed but the scanning result is above the maximum possible value. The measurement result could be invalid. The capacitor might be shorted to GND.
    • -
    • CY_CAPSENSE_BIST_ERROR_E - An unexpected fault occurred during the measurement.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MeasureVdda()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureVdda (uint32_t * ptrValue,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Measures a VDDA voltage, returns the measured voltage in millivolts through the ptrValue argument and stores it to the .vddaVoltage field of the cy_stc_capsense_bist_context_t structure.

    -

    This function measures the device analog supply voltage (VDDA) without need of explicitly connecting VDDA to any additional GPIO input. This capability can be used in variate cases, for example to monitor the battery voltage.

    -

    A measurement can be done only if the CAPSENSE™ middleware is in the IDLE state. This function must not be called while the CAPSENSE™ middleware is busy. The function is blocking, i.e. waits for the conversion to be completed prior to returning to the caller.

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - - -
    ptrValueThe pointer to the uint32_t to store measured VDDA voltage value. If the ptrValue parameter is NULL then VDDA voltage value is not returned through the parameter and is stored in the .vddaVoltage field of the cy_stc_capsense_bist_context_t structure.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The measurement executed successfully.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_ERROR_E - An unexpected fault occurred during the measurement.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MeasureCapacitanceSensor()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceSensor (uint32_t widgetId,
    uint32_t sensorId,
    uint32_t * ptrValue,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Measures the specified CSD sensor / CSX electrode capacitance in femtofarads.

    -

    This function measures the capacitance of the sensor (electrode for CSX widgets) and returns the measurement status. For a CSX sensor, the measurement is done on either Rx or Tx electrode. For a CSD sensor, measurement is done on a sensor (refer to the sensorId parameter description). If the specified sensor (electrode) is a ganged sensor, the capacitance is measured for all the pins ganged together that belong to this sensor (electrode).

    -

    The measured capacitance is stored in the .eltdCap[] array. The .ptrEltdCapacitance field of the cy_stc_capsense_widget_config_t structure contains a pointer to the first widget sensor (electrode) element within the .eltdCap[] array.

    -

    In addition to the measuring sensor (electrode) capacitance, this function is used to identify various fault conditions with sensors such as electrically-opened or -shorted sensors. For example, the PCB track is broken or shorted to other nodes in the system - in all of these conditions, this function returns changed capacitance which can be compared against predetermined capacitance for the sensor to detect a fault condition.

    -

    The sensor capacitance is measured independently of the sensor scan configuration. For the capacitance measurement, the CSD sensing method is used. The measurements consists of up to four scans with different IDAC current. The IDAC current of the first measurement is 6 uA and each next measurement the IDAC current increase by four times. The default scanning parameters are the following:

      -
    • I (6 uA) is the current equal to IDAC Gain * IDAC Code (Compensation IDAC is disabled).
    • -
    • Res (12 bits) is the scanning resolution.
    • -
    • Vref (1.2 V) is the reference voltage.
    • -
    • SnsClk (375 kHz) is the sensor clock frequency.
    • -
    -

    If the scanning raw count is within 7.5% to 45% range of a maximum raw count the raw count is converted into capacitance using the following equation:

    -

    Cs = Rawcount * I / ((2^Res - 1) * Vref * SnsClk)

    -

    where:

      -
    • Cs is the sensor capacitance.
    • -
    • Rawcount is the measured raw count value.
    • -
    -

    If the raw count is less than 7.5% of the maximum limit (2^Res - 1), the function stops scanning the sequence and returns the CY_CAPSENSE_BIST_LOW_LIMIT_E status.

    -

    If the raw count is between 7.5% and 45% of the maximum, the function calculates the sensor capacitance, updates the register map and returns CY_CAPSENSE_BIST_SUCCESS_E status.

    -

    If the raw count is above 45% of the maximum, the function repeats scanning with a 4x increased IDAC current (up to four scans in total).

    -

    The minimum measurable input by this function is 1pF and the maximum is either 384pF or limited by the RC time constant (Cs < 1 / (2*5*SnsClk*R), where R is the total sensor series resistance that includes on-chip GPIO resistance ~500 Ohm and external series resistance). The measurement accuracy is about 15%.

    -

    By default, all CAPSENSE™ sensors (electrodes) that are not being measured are set to the GND state for CSD measured electrodes (sensors) and to the HIGH-Z state for CSX measured electrodes (Rx and Tx). Shield electrodes are also configured to the GND state. The inactive state can be changed in run-time by using the Cy_CapSense_SetInactiveElectrodeState() function.

    -

    By default, the Cmod capacitor is used for the measurement. If a dedicated Cmod is not available (e.g. the design has CSX widgets only), CintA and CintB capacitors are combined together by the firmware to form a single integration capacitor for the measurement.

    -

    The sensor measurement can be done on all the sensors using the Cy_CapSense_RunSelfTest() function along with the CY_CAPSENSE_BIST_SNS_CAP_MASK mask.

    -

    This function must not be called while the CSD HW block is busy by another state.

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_WDGT_ID.
    sensorIdSpecifies the ID of the sensor (electrode for CSX widgets) within the widget to be measured.
    -
    -
    -

    For the CSD widgets, a macro for the sensor ID within the specified widget can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_SNS<SensorNumber>_ID.

    -

    For the CSX widgets, sensorId is an electrode ID and is defined as Rx ID or Tx ID. The first Rx in a widget corresponds to electrodeId = 0, the second Rx in a widget corresponds to electrodeId = 1, and so on. The last Tx in a widget corresponds to electrodeId = (RxNum + TxNum - 1). Macros for Rx and Tx IDs can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as:

      -
    • CapSense_<WidgetName>_RX<RXNumber>_ID
    • -
    • CapSense_<WidgetName>_TX<TXNumber>_ID.
    • -
    -
    Parameters
    - - - -
    ptrValueThe pointer to the measured capacitance in femtofarads. The user declares a variable of the uint32_t type and passes the variable pointer as the function parameter. If the ptrValue parameter is NULL, the capacitance value is not returned through the parameter but still stored in the corresponding field of the data structure.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The measurement completes successfully, the result is valid.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_LOW_LIMIT_E - The measurement was executed and the scanning result is below the minimum possible value. The measurement result could be invalid. The sensor might be shorted to VDD or a sensor PCB track was broken (open sensor).
    • -
    • CY_CAPSENSE_BIST_HIGH_LIMIT_E - The measurement was executed and the scanning result is above the maximum possible value. The measurement result could be invalid. The sensor might be shorted to GND.
    • -
    • CY_CAPSENSE_BIST_ERROR_E - An unexpected fault occurred during the measurement.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MeasureCapacitanceShield()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceShield (uint32_t * ptrValue,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Measures shield electrode capacitance in femtofarads.

    -

    This function measures the capacitance of the shield electrode and returns a status of this measurement. The measurement result in femtofarads is stored in the .shieldCap field of the cy_stc_capsense_bist_context_t structure. If the shield consists of several electrodes, the total capacitance of all shield electrodes is reported.

    -

    This function uses an algorithm identical to the sensor capacitance measurement. Refer to the Cy_CapSense_MeasureCapacitanceSensor() function for more details.

    -

    In addition to measuring shield capacitance, this function is used to identify various fault conditions with a shield electrode such as an electrically-open or -short shield electrode, e.g. the PCB track is broken or shorted to other nodes in the system - in all of these conditions, this function returns changed capacitance that can be compared against pre-determined capacitance for the shield electrode to detect a fault condition.

    -

    By default, all CAPSENSE™ sensors (electrodes) that are not being measured are set to the GND state. The inactive state can be changed in run-time by using the Cy_CapSense_SetInactiveElectrodeState() function. When the inactive sensor (electrode) connection is set to the CY_CAPSENSE_SNS_CONNECTION_SHIELD state, all the CAPSENSE™ electrodes are connected to the shield and the total capacitance are measured.

    -

    By default, the Cmod capacitor is used for the measurement. If a dedicated Cmod is not available (e.g. the design has CSX widgets only), CintA and CintB capacitors are combined together by the firmware to form a single integration capacitor which is used for measurement.

    -

    This test can be executed using the CapSense_RunSelfTest() function with the CY_CAPSENSE_BIST_SHIELD_CAP_MASK mask.

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - - -
    ptrValueThe pointer to the variable the measured capacitance is stored. The user should declare a variable of uint32_t type and pass the variable pointer as the function parameter. If the ptrValue parameter is NULL then the shield capacitance value is not returned through the parameter but is still stored in the .shieldCap field of the cy_stc_capsense_bist_context_t structure.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The measurement completes successfully, the result is valid.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_LOW_LIMIT_E - The measurement was executed but the measured raw count is below the minimum possible value. The measurement result could be invalid. The shield might be shorted to VDD or a shield PCB track is broken (the open shield electrode).
    • -
    • CY_CAPSENSE_BIST_HIGH_LIMIT_E - The measurement was executed but the measured raw count is above the maximum possible value. The measurement result is invalid. The sensor might be shorted to GND.
    • -
    • CY_CAPSENSE_BIST_ERROR_E - An unexpected fault occurred during the measurement.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MeasureCapacitanceSensorElectrode()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceSensorElectrode (uint32_t widgetId,
    uint32_t eltdId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Measures the specified CSD sensor / CSX electrode capacitance in femtofarads.

    -

    This function measures the sensor capacitance for CSD widgets or the electrode capacitance for CSX widgets and returns the measurement status. For a CSX sensor, the measurement is done on either Rx or Tx electrode. For a CSD sensor, measurement is done on a sensor (refer to the eltdId parameter description). If the specified sensor (electrode) is a ganged sensor, the capacitance is measured for all the pins ganged together that belong to this sensor (electrode).

    -

    The measured capacitance is stored in the .eltdCap[] array. The .ptrEltdCapacitance field of the cy_stc_capsense_widget_config_t structure contains a pointer to the first widget sensor (electrode) element within the .eltdCap[] array.

    -

    In addition to the measuring sensor (electrode) capacitance, this function is used to identify various fault conditions with sensors such as electrically-opened or -shorted sensors. For example, the PCB track is broken or shorted to other nodes in the system - in all of these conditions, this function returns changed capacitance which can be compared against predetermined capacitance for the sensor to detect a fault condition.

    -

    The sensor capacitance is measured independently of the sensor scan configuration. For the capacitance measurement, the CSD sensing method is used. The default scanning parameters are the following:

      -
    • SnsClk divider (256) is the divider for the sensor clock frequency.
    • -
    • NumConv (100) is the number of sub-conversions.
    • -
    • The reference CDAC capacitance (886 fF) is equivalent to CDAC Code of 100u.
    • -
    • The compensation CDAC is disabled.
    • -
    • The CIC2 filter is disabled.
    • -
    • The dithering is disabled.
    • -
    • The chopping is disabled.
    • -
    -

    The raw count is converted into capacitance using the following equation:

    -

    Cs = Rawcount * RefCDAC capacitance / NumConv

    -

    where:

      -
    • Cs is the sensor capacitance.
    • -
    • Rawcount is the measured raw count value.
    • -
    -

    The minimum measurable input by this function is 1pF and the maximum is either 200pF or limited by the RC time constant (Cs < 1 / (2*5*SnsClk*R), where R is the total sensor series resistance that includes on-chip GPIO resistance ~500 Ohm and external series resistance). The measurement accuracy is about 30% and is defined by the RefCDAC tolerance.

    -

    By default, all CAPSENSE™ sensors (electrodes) that are not being measured are set to the GND state for CSD measured electrodes (sensors) and to the HIGH-Z state for CSX measured electrodes (Rx and Tx). Shield electrodes are also configured to the GND state. The inactive state can be changed in run-time by using the Cy_CapSense_SetInactiveElectrodeState() function.

    -

    By default, the both Cmod1 and Cmod2 capacitors are used for the measurement.

    -

    The sensor measurement can be done on all the electrodes using the Cy_CapSense_RunSelfTest() function along with the CY_CAPSENSE_BIST_ELTD_CAP_MASK mask.

    -

    This function must not be called while the CAPSENSE™ MW is busy by another scan.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_WDGT_ID.
    eltdIdSpecifies the ID of the electrode within the widget (sensorID for CSD widgets and Rx or Tx electrode ID for CSX widgets).
    -
    -
    -

    For the CSD widgets, a macro for the sensor ID within the specified widget can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as CY_CAPSENSE_<WidgetName>_SNS<SensorNumber>_ID.

    -

    For the CSX widgets, eltdId is an electrode ID and is defined as Rx ID or Tx ID. The first Rx in a widget corresponds to eltdId = 0, the second Rx in a widget corresponds to eltdId = 1, and so on. The last Tx in a widget corresponds to eltdId = (RxNum + TxNum - 1). Macros for Rx and Tx IDs can be found in the CAPSENSE™ Configuration header file (cycfg_capsense.h) defined as:

      -
    • CapSense_<WidgetName>_RX<RXNumber>_ID
    • -
    • CapSense_<WidgetName>_TX<TXNumber>_ID.
    • -
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The measurement completes successfully, the result is valid.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The measurement was not executed.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MeasureCapacitanceSlotSensors()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceSlotSensors (uint32_t slotId,
    uint32_t skipChMask,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Measures the specified slot sensor capacitance in femtofarads.

    -

    The function measures the Cp capacitance for CSD widgets and the Cm capacitance for CSX widgets.

    -

    This function performs BIST slot scan with predefined parameters, back-calculates the slot sensor capacitances (Cp for CSD and Cm for CSX) by using the raw-count equation, stores the calculated capacitances to the sensor context structure, and returns the measurement status. If the specified slot has a ganged sensor, the capacitance is measured for all the pins ganged together that belong to this sensor.

    -

    Besides the sensor capacitance measuring, this function could be used to identify various fault conditions with sensors such as electrically-opened or -shorted sensors. For example, the PCB track is broken or shorted to other nodes in the system - in all of these conditions, the function returns changed capacitance which can be compared against predetermined capacitance for the sensor to detect a fault condition.

    -

    The sensor capacitance is measured independently of the sensor regular scan configuration. For the capacitance measurement, the BIST specific scan parameters are used. They can be found in the Electrode capacitance measurement macros group. The CDAC code for the CSD sensors is 100u and that provides about 0.886 pF of the CDAC value and for CSX sensors the CDAC code is 50u (0.443 pF). Compensation CDAC is disabled during the BIST scan. Another default scanning parameters are the following:

      -
    • NumConv (100) is the number of sub-conversions.
    • -
    • SnsClk divider (256) is the divider for the sensor clock frequency.
    • -
    -

    The raw count is converted into capacitance using the following equation:

    -

    Cs = Rawcount * CDAC / 2 / NumConv / 2

    -

    where:

      -
    • Cs is the sensor capacitance.
    • -
    • Rawcount is the measured raw count value.
    • -
    • The first divider of 2 is determined by the divided ref_clk frequency usage.
    • -
    • The second divider of 2 is used only for CSX sensors.
    • -
    -

    The minimum measurable input by this function is 0.5 pF and the maximum is either 200pF or limited by the RC time constant (Cs < 1 / (2*10*SnsClk*R), where R is the total sensor series resistance that includes on-chip pin resistance ~500 Ohm and external series resistance). The measurement accuracy is about 30%.

    -

    By default, all CAPSENSE™ sensors (electrodes) that are not being measured are set to the GND state for CSD measured electrodes (sensors) and to the HIGH-Z state for CSX measured electrodes (Rx and Tx). Shield electrodes are also configured to the GND state. The inactive state can be changed in run-time by using the Cy_CapSense_SetInactiveElectrodeState() function.

    -

    By default, the both Cmod1 and Cmod2 capacitors are used for the measurement.

    -

    Measured capacitance values (Cp for CSD widgets and Cm for CSX widgets) are stored in the .snsCap field of the cy_stc_capsense_sensor_context_t structure.

    -

    The all sensor measurement can be done on all the sensors using the Cy_CapSense_RunSelfTest() function along with the CY_CAPSENSE_BIST_SNS_CAP_MASK mask.

    -

    This function must not be called while the CAPSENSE™ MW is busy by another scan.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - - - -
    slotIdSpecifies the ID number of the slot to measure sensor capacitance. The slot ID should be in the admissible range.
    skipChMaskSpecifies the mask to skip some channels during the slot sensor capacitance measurement. If the bit N in the skipChMask is set to 1, the channel N will be excluded from measuring and all its pins will be set to the inactive sensor connection state (see the .eltdCapCsdISC field of the cy_stc_capsense_bist_context_t structure for CSD widgets and the .eltdCapCsxISC field respectively for CSX widgets).
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The measurement completes successfully, the result is valid.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_ERROR_E - An unexpected fault occurred during the measurement.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_MeasureCapacitanceShieldElectrode()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_en_capsense_bist_status_t Cy_CapSense_MeasureCapacitanceShieldElectrode (uint32_t skipChMask,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Measures shield electrode capacitances in femtofarads.

    -

    This function measures the capacitances of all shield electrodes for all enabled MSCv3 channels and returns a status of this measurement. The function checks if there is any CSD widget in the project and if the shield is enabled. The measurement results in femtofarads are stored in the chShieldCap[CY_MSC_ENABLED_CH_NUMBER] array. The pointer to the array is in the .ptrChShieldCap field of the cy_stc_capsense_bist_context_t structure, the CY_MSC_ENABLED_CH_NUMBER define is in the cycfg_peripherals.h file. If the any channel shield consists of several electrodes, the total capacitance of all the shield electrodes is measured.

    -

    This function uses an algorithm identical to the electrode capacitance measurement. Refer to the Cy_CapSense_MeasureCapacitanceSensorElectrode() function for more details.

    -

    In addition to measuring shield capacitance, this function is used to identify various fault conditions with shield electrodes such as an electrically-open or -short shield electrodes, e.g. the PCB track is broken or shorted to other nodes in the system - in all of these conditions, this function returns changed capacitance that can be compared against pre-determined capacitance for the shield electrode to detect a hardware fault.

    -

    By default, all CAPSENSE™ sensors (electrodes) that are not being measured are set to the GND state. The inactive state can be changed in run-time by using the Cy_CapSense_SetInactiveElectrodeState() function. When the inactive sensor (electrode) connection is set to the CY_CAPSENSE_SNS_CONNECTION_SHIELD state, all the CAPSENSE™ electrodes are connected to the shield and the total capacitance are measured.

    -

    By default, the both Cmod1 and Cmod2 capacitors are used for the measurement.

    -

    This test can be executed using the CapSense_RunSelfTest() function with the CY_CAPSENSE_BIST_SHIELD_CAP_MASK mask.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - - -
    skipChMaskSpecifies the mask to skip some channels during the shield electrode capacitance measurement. If the bit N in the skipChMask is set to 1, the channel N will be excluded from measuring and all its shield pins will be set to the shield inactive sensor connection state (see the .shieldCapISC field of the cy_stc_capsense_bist_context_t structure).
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns a status of the test execution:
      -
    • CY_CAPSENSE_BIST_SUCCESS_E - The measurement completes successfully, the result is valid.
    • -
    • CY_CAPSENSE_BIST_BAD_PARAM_E - The input parameter is invalid. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_HW_BUSY_E - The CSD HW block is busy with a previous operation. The measurement was not executed.
    • -
    • CY_CAPSENSE_BIST_BAD_CONFIG_E - The shield is disabled.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_CalibrateAllWidgets()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_CalibrateAllWidgets (cy_stc_capsense_context_tcontext)
    -
    - -

    Executes the CapDAC/IDAC calibration for all the sensors in all widgets in the middleware to default target value.

    -

    This function detects the sensing method used by each widget and performs a successive approximation search algorithm to find the appropriate modulator and compensation CapDAC/IDAC (if enabled) values for all sensors in CSD widgets and/or IDAC values for all sensors in CSX widgets to make sensor raw count to the default value level.

    -

    This function could be used only if Enable auto-calibration parameter is enabled for CSD and/or CSX widgets.

    -
    Note
    For the fifth-generation CAPSENSE™ this function is available in single-channel solution. It is recommended to use the Cy_CapSense_CalibrateAllSlots() function instead for compatibility with further CAPSENSE™ middleware versions.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation cy_capsense_status_t.
    - -
    -
    - -

    ◆ Cy_CapSense_CalibrateWidget()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_CalibrateWidget (uint32_t widgetId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Executes the CapDAC/IDAC calibration for all the sensors in the specified widget to the default target value.

    -

    This function performs exactly the same tasks as Cy_CapSense_CalibrateAllWidgets(), but only for a specified widget.

    -
    Note
    For the fifth-generation CAPSENSE™ this function is available in single-channel solution. It is recommended to use the Cy_CapSense_CalibrateAllSlots() function instead for compatibility with further CAPSENSE™ middleware versions.
    -
    Parameters
    - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation cy_capsense_status_t.
    - -
    -
    - -

    ◆ Cy_CapSense_ScanSensor()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ScanSensor (uint32_t widgetId,
    uint32_t sensorId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Initiates the scanning of the selected sensor in the widget.

    -

    Scanning is initiated only if no scan is in progress. Scan finishing can be checked by the Cy_CapSense_IsBusy() function.

    -
    Note
    For the fifth-generation CAPSENSE™ this function is available in single-channel solution. It is recommended to use the Cy_CapSense_ScanSlots() function instead for compatibility with further CAPSENSE™ middleware versions.
    -
    Parameters
    - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation cy_capsense_status_t.
    - -
    -
    - -

    ◆ Cy_CapSense_SetPinState()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_SetPinState (uint32_t widgetId,
    uint32_t sensorElement,
    uint32_t state,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Sets the state (drive mode and HSIOM state) of the GPIO used by a sensor.

    -

    The possible states are GND, Shield, High-Z, Tx, Negative Tx, Rx, and Sensor. If the sensor specified in the input parameter is a ganged sensor, then the state of all GPIOs associated with the ganged sensor is updated.

    -

    To access a sensor of CSD of button or slider widgets, use the sensor ID. To access a sensor of CSD matrix button or touchpad widgets, use either row ID or column ID as appropriate. To access sensor CSX widgets, use either Rx ID or Tx ID as appropriate.

    -

    This function accepts the CY_CAPSENSE_SHIELD and CY_CAPSENSE_SENSOR states as an input only if there is at least one CSD widget in the project. Similarly, this function accepts the CY_CAPSENSE_TX_PIN and CY_CAPSENSE_RX_PIN states as an input only if there is at least one CSX widget in the project.

    -

    This function must not be called while the middleware is in the busy state. Calling this function directly from the application program is not recommended. This function is used to implement only the custom-specific use cases.

    -

    Functions that perform a setup and scan of a sensor/widget automatically set the required pin states for a sensor as required and overwrite changes made by this function to a sensor that are going to be scanned. Therefore the Cy_CapSense_SetPinState() function should be called in StartSample callback (see the Callbacks section for details) or with low-level functions that perform a single-sensor scanning.

    -
    Parameters
    - - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorElementSpecifies the ID of the sensor element within the widget to change its pin state.
      -
    • For the CSD widgets use the sensor ID. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    • -
    • For the CSX widgets use either Rx ID or Tx ID. The first Rx in a widget corresponds to sensorElement = 0; the second Rx in a widget corresponds to sensorElement = 1, and so on. The last Tx in a widget corresponds to sensorElement = (RxNum + TxNum - 1). A macro for the Rx ID or Tx ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_<TX/RX><TX/RX_NUMBER>_ID.
    • -
    -
    stateSpecifies the state of the sensor to be set:
      -
    1. CY_CAPSENSE_GROUND - The pin is connected to the ground.
    2. -
    3. CY_CAPSENSE_HIGHZ - The drive mode of the pin is set to High-Z Analog.
    4. -
    5. CY_CAPSENSE_SHIELD - The shield signal is routed to the pin (available only if CSD sensing method with shield electrode is enabled).
    6. -
    7. CY_CAPSENSE_SENSOR - The pin is connected to the scanning bus (available only if CSD sensing method is enabled).
    8. -
    9. CY_CAPSENSE_TX_PIN - The Tx signal is routed to the sensor (available only if CSX sensing method is enabled).
    10. -
    11. CY_CAPSENSE_RX_PIN - The pin is connected to the scanning bus (available only if CSX sensing method is enabled).
    12. -
    13. CY_CAPSENSE_NEGATIVE_TX_PIN - The Negative Tx signal is routed to the sensor (available only if CSD sensing method is enabled).
    14. -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    status Returns the operation status:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - Indicates the successful electrode setting.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - 1) widgetID, sensorElement or state are not valid; 2) the CSD sensing method is disabled for desired CY_CAPSENSE_SHIELD or CY_CAPSENSE_SENSOR states; 3) the CSX sensing method is disabled for desired CY_CAPSENSE_TX_PIN, CY_CAPSENSE_NEGATIVE_TX_PIN or CY_CAPSENSE_RX_PIN states.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_SetInactiveElectrodeState()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_SetInactiveElectrodeState (uint32_t inactiveState,
    uint32_t sensingGroup,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Sets a desired state for all inactive CAPSENSE™-related electrodes for CSD or CSX scans.

    -

    Use the function to set/change the desired state of all CAPSENSE™-related electrodes which are not scanned during regular scans or BIST capacitance measurements. There are separate states for the CSX sensing method group, the CSD sensing method group, the BIST CSD sensor (electrode) capacitance measurement, the BIST CSX sensor (electrode) capacitance measurement, and the BIST shield electrode capacitance measurement. For instance, it can be configured the GND state for all inactive sensors for CSX scanning and the High-Z state for CSD scanning and the Shield state for BIST CSD sensor (electrode) capacitance measurement. The function updates some corresponding parameters in the CAPSENSE™ Data Structure to provide the desired state and not changes pin state immediately. The desired state will be applied to all inactive electrodes during the CSD or CSX scans or BIST capacitance measurements. It is not recommended to update the Data Structure registers directly. Additionally (only for fifth-generation CAPSENSE™), the function recalculates sensor frames in a case of the CTRLMUX sensor connection method.

    -
    Parameters
    - - - - -
    inactiveStateSpecifies the inactive CAPSENSE™ electrode state:
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_SHIELD (only for CSD scan)
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    -
    sensingGroupSpecifies the sensing group:
      -
    • CY_CAPSENSE_CSD_GROUP
    • -
    • CY_CAPSENSE_CSX_GROUP
    • -
    • CY_CAPSENSE_BIST_CSD_GROUP
    • -
    • CY_CAPSENSE_BIST_CSX_GROUP
    • -
    • CY_CAPSENSE_BIST_SHIELD_GROUP
    • -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation cy_capsense_status_t.
    - -
    -
    - -

    ◆ Cy_CapSense_SetupWidgetExt()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_SetupWidgetExt (uint32_t widgetId,
    uint32_t sensorId,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Performs extended initialization for the specified widget and also performs initialization required for a specific sensor in the widget.

    -

    This function requires using the Cy_CapSense_ScanExt() function to initiate a scan.

    -

    This function does the same as Cy_CapSense_SetupWidget() and also does the following tasks:

      -
    1. Connects the specified sensor of the widget.
    2. -
    3. Configures the CSD HW block to perform a scan of the specified sensor.
    4. -
    -

    Once this function is called to initialize a widget and a sensor, the Cy_CapSense_ScanExt() function is called to scan the sensor.

    -

    This function is called when no scanning is in progress. I.e. Cy_CapSense_IsBusy() returns a non-busy status.

    -

    Calling this function directly from the application program is not recommended. This function is used to implement only the user's specific use cases (for faster execution time or pipeline scanning, for example).

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - - - -
    widgetIdSpecifies the ID number of the widget. A macro for the widget ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_WDGT_ID.
    sensorIdSpecifies the ID number of the sensor within the widget. A macro for the sensor ID within a specified widget can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<WIDGET_NAME>_SNS<SENSOR_NUMBER>_ID.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_ScanExt()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ScanExt (cy_stc_capsense_context_tcontext)
    -
    - -

    Starts a conversion on the pre-configured sensor.

    -

    This function requires using the Cy_CapSense_SetupWidgetExt() function to set up the a widget.

    -

    This function performs single scanning of one sensor in the widget configured by the Cy_CapSense_SetupWidgetExt() function.

    -

    Calling this function directly from the application program is not recommended. This function is used to implement only the user's specific use cases (for faster execution time or pipeline scanning, for example). This function is called when no scanning is in progress. I.e. Cy_CapSense_IsBusy() returns a non-busy status.

    -

    The sensor must be pre-configured by using the Cy_CapSense_SetupWidgetExt() prior to calling this function. The sensor remains ready for the next scan if a previous scan was triggered by using the Cy_CapSense_ScanExt() function. In this case, calling Cy_CapSense_SetupWidgetExt() is not required every time before the Cy_CapSense_ScanExt() function. If a previous scan was triggered in any other way - Cy_CapSense_Scan(), Cy_CapSense_ScanAllWidgets(), or Cy_CapSense_RunTuner() - (see the Cy_CapSense_RunTuner() function description for more details), the sensor must be pre-configured again by using the Cy_CapSense_SetupWidgetExt() prior to calling the Cy_CapSense_ScanExt() function.

    -
    Note
    This function is available only for the fourth-generation CAPSENSE™.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_CalibrateAllSlots()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_CalibrateAllSlots (cy_stc_capsense_context_tcontext)
    -
    - -

    Executes CapDAC auto-calibration for all relevant widgets if enabled.

    -

    Having enabled the CDAC auto-calibration algorithm is the most common use case. It helps to tune your system considering board-to-board variation, temperature drift, etc. CDAC auto-calibration is enabled by default.

    -

    The function performs searching of Reference CDAC code, Compensation CDAC code Compensation Divider (whichever is enabled) by using a successive approximation method to make the sensor's raw count closest to the defined targets. The auto-calibration target values are defined (by default) as:

      -
    • 85% of the maximum raw count for CSD widgets
    • -
    • 40% of the maximum raw count for CSX widgets.
    • -
    -

    To change calibration targets use the Cy_CapSense_SetCalibrTarget() function.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is performed successfully.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - The input parameter is invalid.
    • -
    • CY_CAPSENSE_STATUS_CALIBRATION_FAIL - The calibration is failed due to the issues with scanning (either watchdog timer, interrupt breaking, etc.).
    • -
    • CY_CAPSENSE_STATUS_CALIBRATION_CHECK_FAIL - The calibration is failed because of rawcount is out of the defined range.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_SetCalibrationTargets()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_SetCalibrationTargets (uint32_t csdCalibrTarget,
    uint32_t csxCalibrTarget,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Sets the CapDAC auto-calibration raw count targets for CSD and/or CSX widgets.

    -

    The function sets the specified raw count targets if CSD and/or CSX widgets are in the project and the auto-calibration is enabled for them. These targets will be used instead the configured ones by Cy_CapSense_CalibrateAllSlots(), Cy_CapSense_CalibrateAllWidgets() and Cy_CapSense_CalibrateWidget() functions.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    Parameters
    - - - - -
    csdCalibrTargetThe specified raw counts target for CSD widgets in percentage. It should be more than 0u and less than 100u. If the specified target is outside the range, then the configured target value will be used for the auto-calibration.
    csxCalibrTargetThe specified raw counts target for CSX widgets in percentage. It should be more than 0u and less than 100u. If the specified target is outside the range, then the configured target value will be used for the auto-calibration.
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is performed successfully.
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM - At least one of the input parameter is invalid.
    • -
    • CY_CAPSENSE_STATUS_BAD_CONFIG - The configuration parameter is invalid.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_SlotPinState()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_SlotPinState (uint32_t slotId,
    const cy_stc_capsense_electrode_config_tptrEltdCfg,
    uint32_t pinState,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Configures the desired electrode to the specified state by updating the CAPSENSE™ configuration.

    -

    This function changes / overwrites configuration of an electrode (several pins in case the electrode is ganged to more pins) with a state provided by pinState parameter. The function does this only for the mentioned slot ID. If a pin should have the desired state during several scans, the function should be called multiple times for the each desired slot.

    -

    The re-configuration is possible when parameter Sensor connection method = CTRLMUX. If parameter Sensor connection method = AMUXBUS, then the function returns CY_CAPSENSE_STATUS_BAD_CONFIG. In next releases the Cy_CapSense_SetPinState() function will be provided for the AMUXBUS configuration.

    -

    The function changes the configuration of an electrode without storing the default state. A user is responsible to keep the default state to revert to the default settings if needed. Also, the default settings can be configured again by calling Cy_CapSense_Enable() function that leads to repeating CAPSENSE™ Data Structure initialization, repeating DAC auto-calibration and repeating base-lining.

    -

    Using this function is not recommended. This function is used to implement only the user's specific use cases (as changing the CAPSENSE™ default configuration).

    -

    Call this function from CAPSENSE™ Data Structure Initialization Callback ptrEODsInitCallback. For details of how to register callback see the Callbacks section. That avoids repeating of DAC auto-calibration and base-lining since the callback is called after CAPSENSE™ Data Structure initialization but before the first initialization scan.

    -

    The function is a low-level function and does not perform verification of input parameters (like slot ID, pointers, etc.). For example, CY_CAPSENSE_CTRLMUX_PIN_STATE_SHIELD is not available if shield is not configured in the project.

    -
    Parameters
    - - - - - -
    slotIdThe desired slot ID.
    ptrEltdCfgThe pointer to an electrode the all pins states of which will be configured as pinState parameter.
    pinStateThe desired pins state for CSX widget electrodes:
      -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_RX - Rx electrode.
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_TX - Tx electrode.
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_GND - Grounded.
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_TX_NEGATIVE - Negative Tx electrode (for multi-phase TX method).
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_HIGH_Z - Unconnected (high-z).
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_VDDA2 - Connected to VDDA/2. The desired pins state for CSD widget electrodes:
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_SNS - Self-cap sensor.
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_HIGH_Z - Unconnected (high-z).
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_GND - Grounded.
    • -
    • CY_CAPSENSE_CTRLMUX_PIN_STATE_SHIELD - Shield is routed to the pin.
    • -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation:
      -
    • CY_CAPSENSE_STATUS_SUCCESS - The operation is performed successfully.
    • -
    • CY_CAPSENSE_STATUS_BAD_CONFIG - The function does not suppose to be called with the current CAPSENSE™ configuration.
    • -
    -
    - -
    -
    - -

    ◆ Cy_CapSense_ScanAbort()

    - -
    -
    - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_ScanAbort (cy_stc_capsense_context_tcontext)
    -
    - -

    This function sets the sequencer to the idle state by resetting the hardware, it can be used to abort current scan.

    -
    Note
    This function is available only for the fifth-generation CAPSENSE™.
    -
    -If this function is called from ISR during initialization or auto-calibration the operation of these functions will be corrupted.
    -
    Parameters
    - - -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation cy_capsense_status_t.
    - -
    -
    - -

    ◆ Cy_CapSense_GetParam()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_GetParam (uint32_t paramId,
    uint32_t * value,
    const void * ptrTuner,
    const cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Gets a value of the specified parameter from the cy_capsense_tuner structure.

    -

    This function gets the value of the specified parameter by the paramId argument. The paramId for each register of cy_capsense_tuner is available in the cycfg_capsense.h file as CY_CAPSENSE_<ParameterName>_PARAM_ID. The paramId is a special enumerated value generated by the CAPSENSE™ Configurator. The format of paramId is as follows:

      -
    1. [ byte 3 byte 2 byte 1 byte 0 ]
    2. -
    3. [ RRRRRUTT IIIIIIII MMMMMMMM LLLLLLLL ]
    4. -
    5. U - indicates if the parameter affects the RAM Widget Object CRC.
    6. -
    7. T - encodes the parameter type:
        -
      • 01b: uint8_t
      • -
      • 10b: uint16_t
      • -
      • 11b: uint32_t
      • -
      -
    8. -
    9. I - specifies that the widgetId parameter belongs to.
    10. -
    11. M,L - the parameter offset MSB and LSB accordingly in cy_capsense_tuner.
    12. -
    13. R - reserved
    14. -
    -
    Parameters
    - - - - - -
    paramIdSpecifies the ID of parameter to get its value. A macro for the parameter ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<ParameterName>_PARAM_ID.
    valueThe pointer to a variable to be updated with the obtained value.
    ptrTunerThe pointer to the cy_capsense_tuner variable of cy_stc_capsense_tuner_t. The cy_capsense_tuner is declared in CAPSENSE™ Configurator generated files:
      -
    • cycfg_capsense.c/h
    • -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation. If CY_CAPSENSE_STATUS_SUCCESS is not received, either paramId is invalid or ptrTuner is null.
    - -
    -
    - -

    ◆ Cy_CapSense_SetParam()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_capsense_status_t Cy_CapSense_SetParam (uint32_t paramId,
    uint32_t value,
    void * ptrTuner,
    cy_stc_capsense_context_tcontext 
    )
    -
    - -

    Sets a new value for the specified parameter in cy_capsense_tuner structure.

    -

    This function sets the value of the specified parameter by the paramId argument. The paramId for each register of cy_capsense_tuner is available in the cycfg_capsense.h file as CY_CAPSENSE_<ParameterName>_PARAM_ID. The paramId is a special enumerated value generated by the CAPSENSE™ Configurator. The format of paramId is as follows:

      -
    1. [ byte 3 byte 2 byte 1 byte 0 ]
    2. -
    3. [ RRRRRUTT IIIIIIII MMMMMMMM LLLLLLLL ]
    4. -
    5. U - indicates if the parameter affects the RAM Widget Object CRC.
    6. -
    7. T - encodes the parameter type:
        -
      • 01b: uint8_t
      • -
      • 10b: uint16_t
      • -
      • 11b: uint32_t
      • -
      -
    8. -
    9. I - specifies that the widgetId parameter belongs to
    10. -
    11. M,L - the parameter offset MSB and LSB accordingly in cy_capsense_tuner.
    12. -
    13. R - reserved
    14. -
    -

    This function writes specified value into the desired register without other registers update. It is application layer responsibility to keep all the data structure registers aligned. Repeated call of Cy_CapSense_Enable() function helps aligning dependent register values.

    -

    This function updates also the widget CRC field if Built-in Self-test is enabled and paramId requires that.

    -
    Parameters
    - - - - - -
    paramIdSpecifies the ID of parameter to set its value. A macro for the parameter ID can be found in the cycfg_capsense.h file defined as CY_CAPSENSE_<ParameterName>_PARAM_ID.
    valueSpecifies the new parameter's value.
    ptrTunerThe pointer to the cy_capsense_tuner variable of cy_stc_capsense_tuner_t. The cy_capsense_tuner is declared in CAPSENSE™ Configurator generated files:
      -
    • cycfg_capsense.c/h
    • -
    -
    contextThe pointer to the CAPSENSE™ context structure cy_stc_capsense_context_t.
    -
    -
    -
    Returns
    Returns the status of the operation. If CY_CAPSENSE_STATUS_SUCCESS is not received, the parameter was not updated with the new value, either paramId is invalid or ptrTuner is null.
    - -
    -
    - -

    ◆ Cy_CapSense_GetCRC()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    uint16_t Cy_CapSense_GetCRC (const uint8_t * ptrData,
    uint32_t len 
    )
    -
    - -

    Calculates CRC for the specified buffer and length.

    -

    This API is used for the CRC protection of a packet received from the CAPSENSE™ Tuner tool and for BIST operations. CRC polynomial is 0xAC9A. It has a Hamming distance 5 for data words up to 241 bits.

    -

    Reference: "P. Koopman, T. Chakravarthy, -"Cyclic Redundancy Code (CRC) Polynomial Selection for Embedded Networks", -The International Conference on Dependable Systems and Networks, DSN-2004"

    -
    Parameters
    - - - -
    ptrDataThe pointer to the data.
    lenThe length of the data in bytes.
    -
    -
    -
    Returns
    Returns a calculated CRC-16 value.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__low__level.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__low__level.js deleted file mode 100644 index 2c7a64bb71..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__low__level.js +++ /dev/null @@ -1,45 +0,0 @@ -var group__group__capsense__low__level = -[ - [ "Cy_CapSense_ProcessWidgetExt", "group__group__capsense__low__level.html#gafbfe743a98bd2c24a623a2c734c03f0e", null ], - [ "Cy_CapSense_ProcessSensorExt", "group__group__capsense__low__level.html#ga05d3f6e7d7fbef845ab4eb575e653dec", null ], - [ "Cy_CapSense_InitializeAllBaselines", "group__group__capsense__low__level.html#ga55216d9c145b2ab42d7cec23960fb31e", null ], - [ "Cy_CapSense_InitializeWidgetBaseline", "group__group__capsense__low__level.html#gae217c3d40eff007bf28add89814f17d2", null ], - [ "Cy_CapSense_InitializeSensorBaseline", "group__group__capsense__low__level.html#ga695fc72a3809224e52c8a0212835d4f7", null ], - [ "Cy_CapSense_InitializeAllFilters", "group__group__capsense__low__level.html#ga1fcb002d0216bb96ab818276954606e7", null ], - [ "Cy_CapSense_InitializeWidgetFilter", "group__group__capsense__low__level.html#ga101174469c4b6a2df8d44bddb0e33fcf", null ], - [ "Cy_CapSense_UpdateAllBaselines", "group__group__capsense__low__level.html#ga76d2e232d2e5247954a15a45de62d235", null ], - [ "Cy_CapSense_UpdateWidgetBaseline", "group__group__capsense__low__level.html#ga53420b198a6de128b82b3edb31f250c6", null ], - [ "Cy_CapSense_UpdateSensorBaseline", "group__group__capsense__low__level.html#ga4d2ceb23fa0e3731878ad777f39474d2", null ], - [ "Cy_CapSense_InitializeWidgetGestures", "group__group__capsense__low__level.html#ga1a42bc8b8c045d4c4fa3ea9b4411c247", null ], - [ "Cy_CapSense_InitializeAllStatuses", "group__group__capsense__low__level.html#ga91d3ccdc21ed235f4e3b61a0a583c7a1", null ], - [ "Cy_CapSense_InitializeWidgetStatus", "group__group__capsense__low__level.html#ga0cd8087cced318d7a2ddd0aabe5d0b65", null ], - [ "Cy_CapSense_ProcessWidgetMptxDeconvolution", "group__group__capsense__low__level.html#ga200f346a4973b003640adad8dfca0748", null ], - [ "Cy_CapSense_PreProcessWidget", "group__group__capsense__low__level.html#gad0772250c35cb3f630a8522b0b156692", null ], - [ "Cy_CapSense_PreProcessSensor", "group__group__capsense__low__level.html#gaf58d5ee3d30799c52819dccecad6730b", null ], - [ "Cy_CapSense_RunMfsMedian", "group__group__capsense__low__level.html#ga0226119d718185acba8bfb8098682ec7", null ], - [ "Cy_CapSense_CheckCRCWidget", "group__group__capsense__low__level.html#ga8266fcf05ad962580844a2c9c01f2fb8", null ], - [ "Cy_CapSense_CheckIntegritySensorRawcount", "group__group__capsense__low__level.html#ga617c2c407a13538ca6662314402e3f61", null ], - [ "Cy_CapSense_CheckIntegritySensorBaseline", "group__group__capsense__low__level.html#gab5574b4c085f9cf891457cbf835e6ca1", null ], - [ "Cy_CapSense_CheckIntegritySensorPins", "group__group__capsense__low__level.html#gadcc9fa570b4c5aa91c66570f5c6f57d4", null ], - [ "Cy_CapSense_MeasureCapacitanceCap", "group__group__capsense__low__level.html#ga80ad1c421ea794bd493bb37e76c48a2b", null ], - [ "Cy_CapSense_MeasureVdda", "group__group__capsense__low__level.html#ga0214428f5737ef46a2f755620c4e7316", null ], - [ "Cy_CapSense_MeasureCapacitanceSensor", "group__group__capsense__low__level.html#ga3bf9894c313d4ffce1be841141d6b8e5", null ], - [ "Cy_CapSense_MeasureCapacitanceShield", "group__group__capsense__low__level.html#gacc9c800180cd40a8ca3e53321d6a249b", null ], - [ "Cy_CapSense_MeasureCapacitanceSensorElectrode", "group__group__capsense__low__level.html#ga23f23f4e684b25788f999851f20aa58c", null ], - [ "Cy_CapSense_MeasureCapacitanceSlotSensors", "group__group__capsense__low__level.html#gadb467c284dc3fea4c7347a25c5ff57df", null ], - [ "Cy_CapSense_MeasureCapacitanceShieldElectrode", "group__group__capsense__low__level.html#gaff014dbf80fc7824a7e6e3e377d2942f", null ], - [ "Cy_CapSense_CalibrateAllWidgets", "group__group__capsense__low__level.html#ga3a30f2e4cdef59eab57f589b0091d937", null ], - [ "Cy_CapSense_CalibrateWidget", "group__group__capsense__low__level.html#ga889e60b9ca2470b37b37c772558f44ad", null ], - [ "Cy_CapSense_ScanSensor", "group__group__capsense__low__level.html#gae3f80b48c2596c149ca0b392a9a3da62", null ], - [ "Cy_CapSense_SetPinState", "group__group__capsense__low__level.html#gaf51fd91df09631045f83396237395777", null ], - [ "Cy_CapSense_SetInactiveElectrodeState", "group__group__capsense__low__level.html#ga760c8b9c8e17b5c9689bf9305a34e393", null ], - [ "Cy_CapSense_SetupWidgetExt", "group__group__capsense__low__level.html#gaf43c0cf61a95f11a5981f82f5b0d4e86", null ], - [ "Cy_CapSense_ScanExt", "group__group__capsense__low__level.html#ga31834a3fce1f5b57c72107b419626bab", null ], - [ "Cy_CapSense_CalibrateAllSlots", "group__group__capsense__low__level.html#ga1130ee418f843fce4e68832efa37e28f", null ], - [ "Cy_CapSense_SetCalibrationTargets", "group__group__capsense__low__level.html#ga2a87df9f6b6810a12465149f451fd64f", null ], - [ "Cy_CapSense_SlotPinState", "group__group__capsense__low__level.html#ga5d8f778457e13ccfa3f34239aef25f47", null ], - [ "Cy_CapSense_ScanAbort", "group__group__capsense__low__level.html#ga264c6bafda78c56a0d620a7c88363269", null ], - [ "Cy_CapSense_GetParam", "group__group__capsense__low__level.html#gaa89c8ed15cddd778c2232c85300eb02d", null ], - [ "Cy_CapSense_SetParam", "group__group__capsense__low__level.html#ga6049654627a08e866ebe5e93ac414177", null ], - [ "Cy_CapSense_GetCRC", "group__group__capsense__low__level.html#ga2de812825cd421ee05fec733206e157a", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros.html deleted file mode 100644 index 53c569d6be..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Macros
    -
    -
    -

    General Description

    -

    Specifies constants used in the CAPSENSE™ middleware.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -API Reference

     General Macros
     General macros.
     
     Middleware State Macros
     Middleware state macros.
     
     Status Macros
     Status macros.
     
     Settings Macros
     Settings macros.
     
     Pin-related Macros
     Pin-related macros.
     
     Processing Macros
     Processing macros.
     
     Touch-related Macros
     Touch-related macros.
     
     Gesture Macros
     Gesture macros.
     
     Miscellaneous Macros
     Miscellaneous macros.
     
     Built-in Self-test Macros
     Built-in Self-test macros.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros.js deleted file mode 100644 index b2a192b80b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros.js +++ /dev/null @@ -1,13 +0,0 @@ -var group__group__capsense__macros = -[ - [ "General Macros", "group__group__capsense__macros__general.html", "group__group__capsense__macros__general" ], - [ "Middleware State Macros", "group__group__capsense__macros__mw__state.html", "group__group__capsense__macros__mw__state" ], - [ "Status Macros", "group__group__capsense__macros__status.html", "group__group__capsense__macros__status" ], - [ "Settings Macros", "group__group__capsense__macros__settings.html", "group__group__capsense__macros__settings" ], - [ "Pin-related Macros", "group__group__capsense__macros__pin.html", "group__group__capsense__macros__pin" ], - [ "Processing Macros", "group__group__capsense__macros__process.html", "group__group__capsense__macros__process" ], - [ "Touch-related Macros", "group__group__capsense__macros__touch.html", "group__group__capsense__macros__touch" ], - [ "Gesture Macros", "group__group__capsense__macros__gesture.html", "group__group__capsense__macros__gesture" ], - [ "Miscellaneous Macros", "group__group__capsense__macros__miscellaneous.html", "group__group__capsense__macros__miscellaneous" ], - [ "Built-in Self-test Macros", "group__group__capsense__macros__bist.html", "group__group__capsense__macros__bist" ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__bist.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__bist.html deleted file mode 100644 index 960388c0cc..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__bist.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Built-in Self-test Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Built-in Self-test Macros
    -
    -
    -

    General Description

    -

    Built-in Self-test macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_BIST_CRC_WDGT_MASK   ((uint32_t)CY_CAPSENSE_TST_WDGT_CRC_EN << 0uL)
     The mask for a widget CRC test.
     
    -#define CY_CAPSENSE_BIST_BSLN_INTEGRITY_MASK   ((uint32_t)CY_CAPSENSE_TST_BSLN_INTEGRITY_EN << 1uL)
     The mask for a baseline integrity test.
     
    -#define CY_CAPSENSE_BIST_RAW_INTEGRITY_MASK   ((uint32_t)CY_CAPSENSE_TST_RAW_INTEGRITY_EN << 2uL)
     The mask for a rawcount integrity test.
     
    -#define CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK   ((uint32_t)CY_CAPSENSE_TST_SNS_SHORT_EN << 3uL)
     The mask for a pin integrity test.
     
    -#define CY_CAPSENSE_BIST_SNS_CAP_MASK   ((uint32_t)CY_CAPSENSE_TST_SNS_CAP_EN << 4uL)
     The mask for a sensor capacitance measurement test.
     
    -#define CY_CAPSENSE_BIST_SHIELD_CAP_MASK   ((uint32_t)CY_CAPSENSE_TST_SH_CAP_EN << 5uL)
     The mask for a shield capacitance measurement test.
     
    -#define CY_CAPSENSE_BIST_EXTERNAL_CAP_MASK   ((uint32_t)CY_CAPSENSE_TST_EXTERNAL_CAP_EN << 6uL)
     The mask for an external capacitor capacitance measurement test.
     
    -#define CY_CAPSENSE_BIST_VDDA_MASK   ((uint32_t)CY_CAPSENSE_TST_VDDA_EN << 7uL)
     The mask for a VDDA measurement test.
     
    #define CY_CAPSENSE_BIST_RUN_AVAILABLE_SELF_TEST_MASK
     The mask for all enabled self-test functions. More...
     
    #define CY_CAPSENSE_TST_MEASUREMENT_GROUP_EN
     The mask for all enabled measurement self-test functions. More...
     
    #define CY_CAPSENSE_TST_HW_GROUP_EN
     The mask for all enabled self-test functions which changes HW configuration. More...
     
    -

    Macro Definition Documentation

    - -

    ◆ CY_CAPSENSE_BIST_RUN_AVAILABLE_SELF_TEST_MASK

    - -
    -
    - - - - -
    #define CY_CAPSENSE_BIST_RUN_AVAILABLE_SELF_TEST_MASK
    -
    -Value:
    CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK | \
    CY_CAPSENSE_BIST_SNS_CAP_MASK | \
    CY_CAPSENSE_BIST_EXTERNAL_CAP_MASK |\
    CY_CAPSENSE_BIST_VDDA_MASK |\
    CY_CAPSENSE_BIST_SHIELD_CAP_MASK)
    #define CY_CAPSENSE_BIST_CRC_WDGT_MASK
    The mask for a widget CRC test.
    Definition: cy_capsense_common.h:739
    -
    -

    The mask for all enabled self-test functions.

    - -
    -
    - -

    ◆ CY_CAPSENSE_TST_MEASUREMENT_GROUP_EN

    - -
    -
    - - - - -
    #define CY_CAPSENSE_TST_MEASUREMENT_GROUP_EN
    -
    -Value:
    (CY_CAPSENSE_BIST_EN && \
    (CY_CAPSENSE_TST_SNS_CAP_EN || \
    CY_CAPSENSE_TST_SH_CAP_EN ||\
    CY_CAPSENSE_TST_VDDA_EN ||\
    CY_CAPSENSE_TST_EXTERNAL_CAP_EN))
    -

    The mask for all enabled measurement self-test functions.

    - -
    -
    - -

    ◆ CY_CAPSENSE_TST_HW_GROUP_EN

    - -
    -
    - - - - -
    #define CY_CAPSENSE_TST_HW_GROUP_EN
    -
    -Value:
    (CY_CAPSENSE_BIST_EN && \
    (CY_CAPSENSE_TST_SNS_SHORT_EN ||\
    CY_CAPSENSE_TST_MEASUREMENT_GROUP_EN))
    -

    The mask for all enabled self-test functions which changes HW configuration.

    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__bist.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__bist.js deleted file mode 100644 index dacb4caac4..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__bist.js +++ /dev/null @@ -1,14 +0,0 @@ -var group__group__capsense__macros__bist = -[ - [ "CY_CAPSENSE_BIST_CRC_WDGT_MASK", "group__group__capsense__macros__bist.html#gaabe36e7d49b10767ad5f54682f90fb50", null ], - [ "CY_CAPSENSE_BIST_BSLN_INTEGRITY_MASK", "group__group__capsense__macros__bist.html#ga9d7bb72142b0b421c7caf7c586740c04", null ], - [ "CY_CAPSENSE_BIST_RAW_INTEGRITY_MASK", "group__group__capsense__macros__bist.html#gacb6fcdbae96744efd2c8126fd54c9903", null ], - [ "CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK", "group__group__capsense__macros__bist.html#ga46eda476659322c92143f52e2871c3f6", null ], - [ "CY_CAPSENSE_BIST_SNS_CAP_MASK", "group__group__capsense__macros__bist.html#ga0b583a61444f762654dc49063920359d", null ], - [ "CY_CAPSENSE_BIST_SHIELD_CAP_MASK", "group__group__capsense__macros__bist.html#ga5892e01404f93ac02d8c324dc4d31eb9", null ], - [ "CY_CAPSENSE_BIST_EXTERNAL_CAP_MASK", "group__group__capsense__macros__bist.html#ga13c098393a6570c7c8d13ae57b4c4666", null ], - [ "CY_CAPSENSE_BIST_VDDA_MASK", "group__group__capsense__macros__bist.html#ga0e658fb59f70e15c77629b558347d68b", null ], - [ "CY_CAPSENSE_BIST_RUN_AVAILABLE_SELF_TEST_MASK", "group__group__capsense__macros__bist.html#gab2507f4af9281e8032caac62016a7e8a", null ], - [ "CY_CAPSENSE_TST_MEASUREMENT_GROUP_EN", "group__group__capsense__macros__bist.html#gac8d7ca915ba94312bd39fc5f1d5745a0", null ], - [ "CY_CAPSENSE_TST_HW_GROUP_EN", "group__group__capsense__macros__bist.html#gae520bda9769db3b66038f58bd133180c", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__general.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__general.html deleted file mode 100644 index 64a900ae68..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__general.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: General Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    General Macros
    -
    -
    -

    General Description

    -

    General macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_MW_VERSION_MAJOR   (3)
     Middleware major version.
     
    -#define CY_CAPSENSE_MW_VERSION_MINOR   (0)
     Middleware minor version.
     
    -#define CY_CAPSENSE_MW_VERSION   (300)
     Middleware version.
     
    -#define CY_CSD_DRV_VERSION_REQUIRED   (100)
     Defined supported CSD driver version.
     
    -#define CY_CSD_DRV2_VERSION   (100)
     If CSD driver version not defined by driver then define it here.
     
    -#define CY_CAPSENSE_USE_CAPTURE   (0u)
     Use CSD/MSC Init function.
     
    -#define CY_CAPSENSE_ID   (CY_PDL_DRV_ID(0x07uL))
     Middleware ID.
     
    -#define CY_CAPSENSE_BUSY   (0x80u)
     The CAPSENSE™ middleware is busy.
     
    -#define CY_CAPSENSE_NOT_BUSY   (0x00u)
     The CAPSENSE™ middleware is not busy.
     
    -#define CY_CAPSENSE_BUSY_MASK   (0xFFu)
     The CAPSENSE™ middleware busy mask.
     
    -#define CY_CAPSENSE_BUSY_CH_MASK   (0x01u)
     The MSCv3 channel busy mask.
     
    -#define CY_CAPSENSE_BUSY_ALL_CH_MASK   (0x0Fu)
     All MSCv3 channels busy mask.
     
    -#define CY_CAPSENSE_INIT_DONE   (1u)
     CAPSENSE™ MW initialization is done.
     
    -#define CY_CAPSENSE_INIT_NEEDED   (0u)
     CAPSENSE™ MW initialization is needed.
     
    -#define CY_CAPSENSE_ENABLE   (1u)
     Feature enabled.
     
    -#define CY_CAPSENSE_DISABLE   (0u)
     Feature disabled.
     
    -#define CY_CAPSENSE_SNS_TOUCH_STATUS_MASK   (0x01u)
     Sensor active status mask.
     
    -#define CY_CAPSENSE_SNS_PROX_STATUS_MASK   (0x02u)
     Proximity active status mask.
     
    -#define CY_CAPSENSE_SNS_OVERFLOW_MASK   (0x04u)
     Sensor overflow mask.
     
    -#define CY_CAPSENSE_WD_ACTIVE_MASK   (0x01u)
     Widget active status mask.
     
    -#define CY_CAPSENSE_WD_DISABLE_MASK   (0x02u)
     Widget disable status mask.
     
    -#define CY_CAPSENSE_WD_WORKING_MASK   (0x04u)
     Widget working status mask.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__general.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__general.js deleted file mode 100644 index a62d9dbebb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__general.js +++ /dev/null @@ -1,25 +0,0 @@ -var group__group__capsense__macros__general = -[ - [ "CY_CAPSENSE_MW_VERSION_MAJOR", "group__group__capsense__macros__general.html#ga104c621005040ae8af24f65224291585", null ], - [ "CY_CAPSENSE_MW_VERSION_MINOR", "group__group__capsense__macros__general.html#gad6ec980865b471c2f2dfb2cdc35d4c2b", null ], - [ "CY_CAPSENSE_MW_VERSION", "group__group__capsense__macros__general.html#ga59b36b476019e5ba3efbf23db693afc0", null ], - [ "CY_CSD_DRV_VERSION_REQUIRED", "group__group__capsense__macros__general.html#gae3c1bba4e246712abae8a73ff3be3f99", null ], - [ "CY_CSD_DRV2_VERSION", "group__group__capsense__macros__general.html#ga69647cf4fe9cf4cd4082e53d4e14bfd8", null ], - [ "CY_CAPSENSE_USE_CAPTURE", "group__group__capsense__macros__general.html#gaf8e87c50be58d84b58e58323c12ae6f3", null ], - [ "CY_CAPSENSE_ID", "group__group__capsense__macros__general.html#ga9d6e1a11f2bd6a660ccf4ff767e18186", null ], - [ "CY_CAPSENSE_BUSY", "group__group__capsense__macros__general.html#gaa3c8ba2488a71e7ab976519e39169929", null ], - [ "CY_CAPSENSE_NOT_BUSY", "group__group__capsense__macros__general.html#ga1bd45eed2be393b7f53c20f1bae2814e", null ], - [ "CY_CAPSENSE_BUSY_MASK", "group__group__capsense__macros__general.html#ga547d0cc94e1353639d865d74d38dcf48", null ], - [ "CY_CAPSENSE_BUSY_CH_MASK", "group__group__capsense__macros__general.html#gab9415133b167fa71c5d0eef322b984e3", null ], - [ "CY_CAPSENSE_BUSY_ALL_CH_MASK", "group__group__capsense__macros__general.html#ga9b37d16f569ed138127fcd5362512ab7", null ], - [ "CY_CAPSENSE_INIT_DONE", "group__group__capsense__macros__general.html#ga7d9ae808ba66f8851c5574736f243a8b", null ], - [ "CY_CAPSENSE_INIT_NEEDED", "group__group__capsense__macros__general.html#gad92e80ca427290d1d6e0e9b97c8537c5", null ], - [ "CY_CAPSENSE_ENABLE", "group__group__capsense__macros__general.html#ga24e839ab0e286fd7e0a29e94f400437c", null ], - [ "CY_CAPSENSE_DISABLE", "group__group__capsense__macros__general.html#ga67314c7f770734272917dd987bfbb970", null ], - [ "CY_CAPSENSE_SNS_TOUCH_STATUS_MASK", "group__group__capsense__macros__general.html#gae200b7c77b372a6e02221d90ed2d6435", null ], - [ "CY_CAPSENSE_SNS_PROX_STATUS_MASK", "group__group__capsense__macros__general.html#gaf56cec4f93d99e05d6b9197533a04c4e", null ], - [ "CY_CAPSENSE_SNS_OVERFLOW_MASK", "group__group__capsense__macros__general.html#gaa37105aadfbfd2c37b34b939c6fcf016", null ], - [ "CY_CAPSENSE_WD_ACTIVE_MASK", "group__group__capsense__macros__general.html#gad47321d5011cc28ee15d2148c62af66f", null ], - [ "CY_CAPSENSE_WD_DISABLE_MASK", "group__group__capsense__macros__general.html#ga0a84bc1036114a86ad2806f69110709d", null ], - [ "CY_CAPSENSE_WD_WORKING_MASK", "group__group__capsense__macros__general.html#ga00a019887f9b20124c916b3a2f431fdd", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__gesture.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__gesture.html deleted file mode 100644 index a62b0171f6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__gesture.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Gesture Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Gesture Macros
    -
    -
    -

    General Description

    -

    Gesture macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_GESTURE_NO_GESTURE   (0x00u)
     No gesture detected.
     
    -#define CY_CAPSENSE_GESTURE_ALL_GESTURES_MASK   (0x03FFu)
     All gestures enable / detection mask.
     
    -#define CY_CAPSENSE_GESTURE_FILTERING_MASK   (0x8000u)
     Gesture enable filtering mask.
     
    -#define CY_CAPSENSE_GESTURE_TOUCHDOWN_MASK   (0x2000u)
     Detection mask of Touchdown.
     
    -#define CY_CAPSENSE_GESTURE_LIFTOFF_MASK   (0x4000u)
     Detection mask of Lift Off.
     
    -#define CY_CAPSENSE_GESTURE_ONE_FNGR_SINGLE_CLICK_MASK   (0x0001u)
     Enable / detection mask of one-finger single click gesture.
     
    -#define CY_CAPSENSE_GESTURE_ONE_FNGR_DOUBLE_CLICK_MASK   (0x0002u)
     Enable / detection mask of one-finger double click gesture.
     
    -#define CY_CAPSENSE_GESTURE_ONE_FNGR_CLICK_DRAG_MASK   (0x0004u)
     Enable / detection mask of one-finger click and drag gesture.
     
    -#define CY_CAPSENSE_GESTURE_TWO_FNGR_SINGLE_CLICK_MASK   (0x0008u)
     Enable / detection mask of two-finger single click gesture.
     
    -#define CY_CAPSENSE_GESTURE_ONE_FNGR_SCROLL_MASK   (0x0010u)
     Enable / detection mask of one-finger scroll gesture.
     
    -#define CY_CAPSENSE_GESTURE_TWO_FNGR_SCROLL_MASK   (0x0020u)
     Enable / detection mask of two-finger scroll gesture.
     
    -#define CY_CAPSENSE_GESTURE_ONE_FNGR_EDGE_SWIPE_MASK   (0x0040u)
     Enable / detection mask of one-finger edge swipe gesture.
     
    -#define CY_CAPSENSE_GESTURE_ONE_FNGR_FLICK_MASK   (0x0080u)
     Enable / detection mask of one-finger flick gesture.
     
    -#define CY_CAPSENSE_GESTURE_ONE_FNGR_ROTATE_MASK   (0x0100u)
     Enable / detection mask of one-finger rotate gesture.
     
    -#define CY_CAPSENSE_GESTURE_TWO_FNGR_ZOOM_MASK   (0x0200u)
     Enable / detection mask of two-finger zoom gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_SCROLL   (0x00u)
     Offset of direction of one-finger scroll gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_TWO_SCROLL   (0x02u)
     Offset of direction of two-finger scroll gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_EDGE   (0x04u)
     Offset of direction of one-finger edge swipe gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_ROTATE   (0x06u)
     Offset of direction of one-finger rotate gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_TWO_ZOOM   (0x07u)
     Offset of direction of two-finger zoom gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_FLICK   (0x08u)
     Offset of direction of one-finger flick gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_SCROLL   (0x0003u)
     Mask of direction of one-finger scroll gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_MASK_TWO_SCROLL   (0x000Cu)
     Mask of direction of two-finger scroll gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_EDGE   (0x0030u)
     Mask of direction of one-finger edge swipe gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_ROTATE   (0x0040u)
     Mask of direction of one-finger rotate gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_MASK_TWO_ZOOM   (0x0080u)
     Mask of direction of two-finger zoom gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_FLICK   (0x0700u)
     Mask of direction of one-finger flick gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OFFSET   (16u)
     An extra direction offset returned by Cy_CapSense_DecodeWidgetGestures()
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_CW   (0x00u)
     CLOCKWISE direction of Rotate gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_CCW   (0x01u)
     COUNTER CLOCKWISE direction of Rotate gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_IN   (0x00u)
     ZOOM-IN direction of Zoom gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_OUT   (0x01u)
     ZOOM-OUT direction of Zoom gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_UP   (0x00u)
     UP direction of Scroll, Flick and Edge Swipe gestures.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_DOWN   (0x01u)
     DOWN direction of Scroll, Flick and Edge Swipe gestures.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_RIGHT   (0x02u)
     RIGHT direction of Scroll, Flick and Edge Swipe gestures.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_LEFT   (0x03u)
     LEFT direction of Scroll, Flick and Edge Swipe gestures.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_UP_RIGHT   (0x04u)
     UP-RIGHT direction of Flick gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_DOWN_LEFT   (0x05u)
     DOWN-LEFT direction of Flick gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_DOWN_RIGHT   (0x06u)
     DOWN-RIGHT direction of Flick gesture.
     
    -#define CY_CAPSENSE_GESTURE_DIRECTION_UP_LEFT   (0x07u)
     UP-LEFT direction of Flick gesture.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__gesture.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__gesture.js deleted file mode 100644 index 6a3e896d1e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__gesture.js +++ /dev/null @@ -1,43 +0,0 @@ -var group__group__capsense__macros__gesture = -[ - [ "CY_CAPSENSE_GESTURE_NO_GESTURE", "group__group__capsense__macros__gesture.html#ga438d3109bdaa4dd9bd2a5653c37322f5", null ], - [ "CY_CAPSENSE_GESTURE_ALL_GESTURES_MASK", "group__group__capsense__macros__gesture.html#gae743ee30b6856ba519a9f7b3f34cf31b", null ], - [ "CY_CAPSENSE_GESTURE_FILTERING_MASK", "group__group__capsense__macros__gesture.html#ga6e09d43f87ae1109ab212ea0858188af", null ], - [ "CY_CAPSENSE_GESTURE_TOUCHDOWN_MASK", "group__group__capsense__macros__gesture.html#ga5a23b048578a45a756b6518d4d73b3eb", null ], - [ "CY_CAPSENSE_GESTURE_LIFTOFF_MASK", "group__group__capsense__macros__gesture.html#gaf63cf60202ba76967617fe828214e71f", null ], - [ "CY_CAPSENSE_GESTURE_ONE_FNGR_SINGLE_CLICK_MASK", "group__group__capsense__macros__gesture.html#gabb930ce91e2bcc9d2e6d991c1856618b", null ], - [ "CY_CAPSENSE_GESTURE_ONE_FNGR_DOUBLE_CLICK_MASK", "group__group__capsense__macros__gesture.html#ga8b8acd72bf319f96f240c392dad2e271", null ], - [ "CY_CAPSENSE_GESTURE_ONE_FNGR_CLICK_DRAG_MASK", "group__group__capsense__macros__gesture.html#ga5d12f58b57629498afae2edca0a7749a", null ], - [ "CY_CAPSENSE_GESTURE_TWO_FNGR_SINGLE_CLICK_MASK", "group__group__capsense__macros__gesture.html#gab1a077e5bf17f502792846cb52e2bcaf", null ], - [ "CY_CAPSENSE_GESTURE_ONE_FNGR_SCROLL_MASK", "group__group__capsense__macros__gesture.html#ga8d5527833a1082b48a13f883a015cc1e", null ], - [ "CY_CAPSENSE_GESTURE_TWO_FNGR_SCROLL_MASK", "group__group__capsense__macros__gesture.html#gae8a61309c25e5255fa4a46436384184d", null ], - [ "CY_CAPSENSE_GESTURE_ONE_FNGR_EDGE_SWIPE_MASK", "group__group__capsense__macros__gesture.html#ga76d9372238319112efa57dd749a08485", null ], - [ "CY_CAPSENSE_GESTURE_ONE_FNGR_FLICK_MASK", "group__group__capsense__macros__gesture.html#ga2ebcf1c878564dc6badc69097041ca9a", null ], - [ "CY_CAPSENSE_GESTURE_ONE_FNGR_ROTATE_MASK", "group__group__capsense__macros__gesture.html#ga8f2f7a9121b4ada5241dd7a14250a0a2", null ], - [ "CY_CAPSENSE_GESTURE_TWO_FNGR_ZOOM_MASK", "group__group__capsense__macros__gesture.html#gaa1d831e7dccc101ca4fc6956356cfc09", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_SCROLL", "group__group__capsense__macros__gesture.html#ga577bb1c6645e656fb8a35944559afde8", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_TWO_SCROLL", "group__group__capsense__macros__gesture.html#gab65415405b4a5a8e2dcd432aeba8dad5", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_EDGE", "group__group__capsense__macros__gesture.html#ga930273b6f56453073e1ca8ff2abf94c7", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_ROTATE", "group__group__capsense__macros__gesture.html#ga997e1d9c53001a4bbfd497c22bf06012", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_TWO_ZOOM", "group__group__capsense__macros__gesture.html#ga7fbcbb9c6b55c782a9f57d94313151e9", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_FLICK", "group__group__capsense__macros__gesture.html#ga957894ea4d5b38e5f61291ed92dbc993", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_SCROLL", "group__group__capsense__macros__gesture.html#gaa6067a4de589e0aee0521dea75bad3b4", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_MASK_TWO_SCROLL", "group__group__capsense__macros__gesture.html#ga2b1afba16625a4f234e167a4580f28af", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_EDGE", "group__group__capsense__macros__gesture.html#ga1e23456181eb829ba8671162cb8c77cc", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_ROTATE", "group__group__capsense__macros__gesture.html#ga348a3958783fd42ce6e7a49f2f41110f", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_MASK_TWO_ZOOM", "group__group__capsense__macros__gesture.html#ga51290cccf90066ccf5bba33c8757c296", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_FLICK", "group__group__capsense__macros__gesture.html#ga90ffefd07036a54158518aa02a267899", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OFFSET", "group__group__capsense__macros__gesture.html#ga3bfd7aa90e3ef1bf3c124c90ec9c2e13", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_CW", "group__group__capsense__macros__gesture.html#ga832fa742b151f0e3935f2a64fd6bf248", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_CCW", "group__group__capsense__macros__gesture.html#ga84ed896903d3820f5493af6b5f2f9dc5", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_IN", "group__group__capsense__macros__gesture.html#ga27d0457e0715a7e74d4224a058897431", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_OUT", "group__group__capsense__macros__gesture.html#gae8f20752c3e95fdb7b9c7f37cce1a646", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_UP", "group__group__capsense__macros__gesture.html#gad81547dd95beb218449d8d209d6f2d90", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_DOWN", "group__group__capsense__macros__gesture.html#gac6a805800ada8e6f499d063f45fb8ba8", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_RIGHT", "group__group__capsense__macros__gesture.html#gabeb98d13bdc3570bca825b5a5d4a4ae0", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_LEFT", "group__group__capsense__macros__gesture.html#ga5660ae39ff90e08e33a71508d3059817", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_UP_RIGHT", "group__group__capsense__macros__gesture.html#ga668fe831e9baa65d0953b1b3c7ac1158", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_DOWN_LEFT", "group__group__capsense__macros__gesture.html#ga2fd34853dba3ebb589cff0809f439a05", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_DOWN_RIGHT", "group__group__capsense__macros__gesture.html#ga77e3a9bb62112a9c735527b339f60069", null ], - [ "CY_CAPSENSE_GESTURE_DIRECTION_UP_LEFT", "group__group__capsense__macros__gesture.html#gab12489738763fb5ace85ba3fffe3b127", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__miscellaneous.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__miscellaneous.html deleted file mode 100644 index 0cb491ef88..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__miscellaneous.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Miscellaneous Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Miscellaneous Macros
    -
    -
    -

    General Description

    -

    Miscellaneous macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_TU_CMD_COMPLETE_BIT   (0x8000u)
     Defines the communication command complete bit mask.
     
    -#define CY_CAPSENSE_STATUS_RESTART_NONE   (0x00u)
     Defines the status if restart was not performed in Cy_CapSense_RunTuner()
     
    -#define CY_CAPSENSE_STATUS_RESTART_DONE   (0x01u)
     Defines the status if restart was done in Cy_CapSense_RunTuner()
     
    -#define CY_CAPSENSE_IDAC_GAIN_NUMBER   (6u)
     Number of supported idac gains.
     
    -#define CY_CAPSENSE_PERCENTAGE_100   (100u)
     100% value
     
    -#define CY_CAPSENSE_SCAN_SCOPE_SNGL_SNS   (0x0u)
     Widget scanning scope is a single sensor.
     
    -#define CY_CAPSENSE_SCAN_SCOPE_ALL_SNS_MASK   (0x01u)
     Sensor scanning scope is a single widget.
     
    -#define CY_CAPSENSE_SCAN_SCOPE_ALL_WD_MASK   (0x02u)
     Widget scanning scope is all widgets.
     
    -#define CY_CAPSENSE_SCAN_SNGL_SLOT   (0x1u)
     Single slot scanning.
     
    -#define CY_CAPSENSE_SCAN_MULTIPLE_SLOT   (0x0u)
     Multiple slot scanning.
     
    -#define CY_CAPSENSE_HW_CONFIG_UNDEFINED   (0u)
     CAPSENSE™ related HW state is undefined.
     
    -#define CY_CAPSENSE_HW_CONFIG_CAPTURED_DEFAULT   (1u)
     CAPSENSE™ related HW is captured and configured to the default state.
     
    -#define CY_CAPSENSE_HW_CONFIG_REGULAR_SCANNING   (2u)
     CAPSENSE™ related HW is configured to the standard regular scanning.
     
    -#define CY_CAPSENSE_HW_CONFIG_BIST_FUNCTIONALITY   (3u)
     CAPSENSE™ related HW is configured to execute the BIST functions.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__miscellaneous.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__miscellaneous.js deleted file mode 100644 index 5b3c45ab20..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__miscellaneous.js +++ /dev/null @@ -1,17 +0,0 @@ -var group__group__capsense__macros__miscellaneous = -[ - [ "CY_CAPSENSE_TU_CMD_COMPLETE_BIT", "group__group__capsense__macros__miscellaneous.html#ga28d833476c3b7b4c16772b4271f50ff4", null ], - [ "CY_CAPSENSE_STATUS_RESTART_NONE", "group__group__capsense__macros__miscellaneous.html#ga14217247882e150c2ac54b09ad64e4d9", null ], - [ "CY_CAPSENSE_STATUS_RESTART_DONE", "group__group__capsense__macros__miscellaneous.html#ga58ba0a06e4c9655932c533924e6e7a1c", null ], - [ "CY_CAPSENSE_IDAC_GAIN_NUMBER", "group__group__capsense__macros__miscellaneous.html#gabf3b4c535607496679a9ba710bcf91ff", null ], - [ "CY_CAPSENSE_PERCENTAGE_100", "group__group__capsense__macros__miscellaneous.html#ga413e16caaf9cf67a365931831f50dc81", null ], - [ "CY_CAPSENSE_SCAN_SCOPE_SNGL_SNS", "group__group__capsense__macros__miscellaneous.html#ga831218f9e477cbc86ec2dd5c93cad28a", null ], - [ "CY_CAPSENSE_SCAN_SCOPE_ALL_SNS_MASK", "group__group__capsense__macros__miscellaneous.html#gacd65048b34a1113483afa364bc29ba8d", null ], - [ "CY_CAPSENSE_SCAN_SCOPE_ALL_WD_MASK", "group__group__capsense__macros__miscellaneous.html#ga30f24465785ec18a44f133af2e6bc693", null ], - [ "CY_CAPSENSE_SCAN_SNGL_SLOT", "group__group__capsense__macros__miscellaneous.html#ga5e2a060594b75e2194c2e8aa6d2cc10e", null ], - [ "CY_CAPSENSE_SCAN_MULTIPLE_SLOT", "group__group__capsense__macros__miscellaneous.html#ga70d9d6d9da53d379d54ab139c008c66c", null ], - [ "CY_CAPSENSE_HW_CONFIG_UNDEFINED", "group__group__capsense__macros__miscellaneous.html#ga89da6f538e6a6586c08ab4e931e9175a", null ], - [ "CY_CAPSENSE_HW_CONFIG_CAPTURED_DEFAULT", "group__group__capsense__macros__miscellaneous.html#ga8fbb89b3542508dbd26b4913b759d6a1", null ], - [ "CY_CAPSENSE_HW_CONFIG_REGULAR_SCANNING", "group__group__capsense__macros__miscellaneous.html#ga6c3e686fab6dd48c1747cac52decc43b", null ], - [ "CY_CAPSENSE_HW_CONFIG_BIST_FUNCTIONALITY", "group__group__capsense__macros__miscellaneous.html#ga97c2fc478587a5b0d5856e03b491c06e", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__mw__state.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__mw__state.html deleted file mode 100644 index 3cde47de21..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__mw__state.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Middleware State Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Middleware State Macros
    -
    -
    -

    General Description

    -

    Middleware state macros.

    - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_MW_STATE_BIST_MASK   (0x800u)
     The BIST is currently in progress.
     
    -#define CY_CAPSENSE_MW_STATE_CALIBRATION_SINGLE_MASK   (0x1000u)
     The auto-calibration in Single CDAC mode.
     
    -#define CY_CAPSENSE_MW_STATE_CALIBRATION_MASK   (0x2000u)
     The auto-calibration is currently in progress.
     
    -#define CY_CAPSENSE_MW_STATE_SMARTSENSE_MASK   (0x4000u)
     The smart sensing algorithm is currently in progress.
     
    -#define CY_CAPSENSE_MW_STATE_INITIALIZATION_MASK   (0x8000u)
     The middleware initialization is currently in progress.
     
    -#define CY_CAPSENSE_MW_STATE_SCAN_SLOT_MASK   (0xFFFF0000u)
     The currently active or last scanned slot ID mask.
     
    -#define CY_CAPSENSE_MW_STATE_SCAN_SLOT_POS   (16u)
     Current scan slot position in status.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__mw__state.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__mw__state.js deleted file mode 100644 index 6cbd14407c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__mw__state.js +++ /dev/null @@ -1,10 +0,0 @@ -var group__group__capsense__macros__mw__state = -[ - [ "CY_CAPSENSE_MW_STATE_BIST_MASK", "group__group__capsense__macros__mw__state.html#ga77644fbd95cb2c428d72941891a90e9f", null ], - [ "CY_CAPSENSE_MW_STATE_CALIBRATION_SINGLE_MASK", "group__group__capsense__macros__mw__state.html#ga6300d3c18f5ba220c0fb30d7ebdd32ae", null ], - [ "CY_CAPSENSE_MW_STATE_CALIBRATION_MASK", "group__group__capsense__macros__mw__state.html#ga812bfd422afd4cd3112299e51d6e3c5e", null ], - [ "CY_CAPSENSE_MW_STATE_SMARTSENSE_MASK", "group__group__capsense__macros__mw__state.html#gafe79cdb3ceadd371c655ea6be028a700", null ], - [ "CY_CAPSENSE_MW_STATE_INITIALIZATION_MASK", "group__group__capsense__macros__mw__state.html#gafdfbe771bb88d2d91cc0b8ecefb2ad03", null ], - [ "CY_CAPSENSE_MW_STATE_SCAN_SLOT_MASK", "group__group__capsense__macros__mw__state.html#gab68b2414d00242e827e8f068db3a766a", null ], - [ "CY_CAPSENSE_MW_STATE_SCAN_SLOT_POS", "group__group__capsense__macros__mw__state.html#gade52f7114b1a748b17c4f404ea522b44", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__pin.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__pin.html deleted file mode 100644 index 93d3fef5e2..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__pin.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Pin-related Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Pin-related Macros
    -
    -
    -

    General Description

    -

    Pin-related macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_GROUND   (0u)
     Connection of pin to ground.
     
    -#define CY_CAPSENSE_HIGHZ   (1u)
     Connection of pin to High-Z.
     
    -#define CY_CAPSENSE_SHIELD   (2u)
     Configuring of pin as a shield.
     
    -#define CY_CAPSENSE_SENSOR   (3u)
     Configuring of pin as a CSD sensor.
     
    -#define CY_CAPSENSE_TX_PIN   (4u)
     Configuring of pin as a Tx.
     
    -#define CY_CAPSENSE_RX_PIN   (5u)
     Configuring of pin as a Rx.
     
    #define CY_CAPSENSE_NEGATIVE_TX_PIN   (6u)
     Configuring of pin as a negative Tx. More...
     
    -#define CY_CAPSENSE_SNS_DISCONNECTED   (0u)
     Pin is not connected to scanning bus.
     
    -#define CY_CAPSENSE_SNS_CONNECTED   (1u)
     Pin is connected to scanning bus.
     
    -

    Macro Definition Documentation

    - -

    ◆ CY_CAPSENSE_NEGATIVE_TX_PIN

    - -
    -
    - - - - -
    #define CY_CAPSENSE_NEGATIVE_TX_PIN   (6u)
    -
    - -

    Configuring of pin as a negative Tx.

    -
    Note
    This macro is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__pin.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__pin.js deleted file mode 100644 index 2a9fb08236..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__pin.js +++ /dev/null @@ -1,12 +0,0 @@ -var group__group__capsense__macros__pin = -[ - [ "CY_CAPSENSE_GROUND", "group__group__capsense__macros__pin.html#gad966154287c77eb6cc738db7f4d1da08", null ], - [ "CY_CAPSENSE_HIGHZ", "group__group__capsense__macros__pin.html#gaead707fb888468852d35412af119f66e", null ], - [ "CY_CAPSENSE_SHIELD", "group__group__capsense__macros__pin.html#ga704cf1446755dd90a8d31bba205b24a6", null ], - [ "CY_CAPSENSE_SENSOR", "group__group__capsense__macros__pin.html#ga2ce24899858a4620467617d1e359f20e", null ], - [ "CY_CAPSENSE_TX_PIN", "group__group__capsense__macros__pin.html#ga18014a9f7faa11af20e25ecb1d0398ae", null ], - [ "CY_CAPSENSE_RX_PIN", "group__group__capsense__macros__pin.html#ga88e0c991fdb3149ab458780f2ca640e8", null ], - [ "CY_CAPSENSE_NEGATIVE_TX_PIN", "group__group__capsense__macros__pin.html#ga3a0f2292f0e440a54cd9eb0fe3bb5c06", null ], - [ "CY_CAPSENSE_SNS_DISCONNECTED", "group__group__capsense__macros__pin.html#gaca5ba34915743447053b5cd138db74de", null ], - [ "CY_CAPSENSE_SNS_CONNECTED", "group__group__capsense__macros__pin.html#ga2a7574920a5983ab0fb93e68284200f0", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__process.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__process.html deleted file mode 100644 index f7a205d0a3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__process.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Processing Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Processing Macros
    -
    -
    -

    General Description

    -

    Processing macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_PROCESS_FILTER   (0x01u)
     Applies all enabled filters in the default order to the raw counts.
     
    -#define CY_CAPSENSE_PROCESS_BASELINE   (0x02u)
     Updates baselines using current raw count values for the widget/sensor.
     
    -#define CY_CAPSENSE_PROCESS_DIFFCOUNTS   (0x04u)
     Calculates differences for the widget/sensor.
     
    -#define CY_CAPSENSE_PROCESS_CALC_NOISE   (0x08u)
     Runs the noise envelope filter to measure noise magnitude for the widget/sensor.
     
    -#define CY_CAPSENSE_PROCESS_THRESHOLDS   (0x10u)
     Updates widget thresholds based on raw counts noise magnitude.
     
    -#define CY_CAPSENSE_PROCESS_STATUS   (0x20u)
     Runs the widget-specific processing algorithms and updates it status.
     
    -#define CY_CAPSENSE_PROCESS_MFS_FILTER   (0x40u)
     Applies median filter for MFS widget raw counts (applicable only for fifth-generation CAPSENSE™)
     
    #define CY_CAPSENSE_PROCESS_ALL
     Definition that combines all possible processing tasks. More...
     
    -#define CY_CAPSENSE_MPTX_MIN_ORDER   (4u)
     Multi-phase TX min order.
     
    -#define CY_CAPSENSE_MPTX_MAX_ORDER   (32u)
     Multi-phase TX max order.
     
    -

    Macro Definition Documentation

    - -

    ◆ CY_CAPSENSE_PROCESS_ALL

    - -
    -
    - - - - -
    #define CY_CAPSENSE_PROCESS_ALL
    -
    -Value:
    CY_CAPSENSE_PROCESS_BASELINE | \
    CY_CAPSENSE_PROCESS_DIFFCOUNTS | \
    CY_CAPSENSE_PROCESS_CALC_NOISE | \
    CY_CAPSENSE_PROCESS_THRESHOLDS | \
    CY_CAPSENSE_PROCESS_STATUS | \
    CY_CAPSENSE_PROCESS_MFS_FILTER)
    #define CY_CAPSENSE_PROCESS_FILTER
    Applies all enabled filters in the default order to the raw counts.
    Definition: cy_capsense_common.h:640
    -
    -

    Definition that combines all possible processing tasks.

    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__process.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__process.js deleted file mode 100644 index 5d31911fbf..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__process.js +++ /dev/null @@ -1,13 +0,0 @@ -var group__group__capsense__macros__process = -[ - [ "CY_CAPSENSE_PROCESS_FILTER", "group__group__capsense__macros__process.html#gaa3b890d5a6646b1c990093614f904b7c", null ], - [ "CY_CAPSENSE_PROCESS_BASELINE", "group__group__capsense__macros__process.html#ga459185fc700d0afc4556d995730f6052", null ], - [ "CY_CAPSENSE_PROCESS_DIFFCOUNTS", "group__group__capsense__macros__process.html#ga69cbf309ed5306c0845fbef6d31ba3e8", null ], - [ "CY_CAPSENSE_PROCESS_CALC_NOISE", "group__group__capsense__macros__process.html#gaaab6d36224e09594d6eb784584e56a63", null ], - [ "CY_CAPSENSE_PROCESS_THRESHOLDS", "group__group__capsense__macros__process.html#gab3ad76b311ce75be0bb1a66cdadc3b27", null ], - [ "CY_CAPSENSE_PROCESS_STATUS", "group__group__capsense__macros__process.html#ga1575721ebbdd600b13f843e068dbf282", null ], - [ "CY_CAPSENSE_PROCESS_MFS_FILTER", "group__group__capsense__macros__process.html#ga44f2cd15a1ad1da162249da40ac12570", null ], - [ "CY_CAPSENSE_PROCESS_ALL", "group__group__capsense__macros__process.html#gaa84b286a4e106b5eeed0141339f7ab6b", null ], - [ "CY_CAPSENSE_MPTX_MIN_ORDER", "group__group__capsense__macros__process.html#ga6dfc332e06a74a6932bedaba71700071", null ], - [ "CY_CAPSENSE_MPTX_MAX_ORDER", "group__group__capsense__macros__process.html#ga0ce8f40602fa2d1adac3e8aadda2afe0", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__settings.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__settings.html deleted file mode 100644 index e97f8ae0b3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__settings.html +++ /dev/null @@ -1,718 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Settings Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Settings Macros
    -
    -
    -

    General Description

    -

    Settings macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_SCAN_MODE_INT_DRIVEN   (0u)
     Interrupt Driven scanning mode.
     
    -#define CY_CAPSENSE_SCAN_MODE_DMA_DRIVEN   (1u)
     DMA Driven scanning mode.
     
    -#define CY_CAPSENSE_AMUX_SENSOR_CONNECTION_METHOD   (0u)
     Sensor connection method through analog mux bus.
     
    -#define CY_CAPSENSE_CTRLMUX_SENSOR_CONNECTION_METHOD   (1u)
     Sensor connection method through control mux switches.
     
    -#define CY_CAPSENSE_CIC_FILTER   (0u)
     CIC filter mode.
     
    -#define CY_CAPSENSE_CIC2_FILTER   (1u)
     CIC2 filter mode.
     
    -#define CY_CAPSENSE_COUNTER_MODE_SATURATE   (0u)
     Raw count counter mode saturate.
     
    -#define CY_CAPSENSE_COUNTER_MODE_OVERFLOW   (1u)
     Raw count counter mode overflow.
     
    -#define CY_CAPSENSE_SYNC_MODE_OFF   (0u)
     Synchronization mode is disabled.
     
    -#define CY_CAPSENSE_SYNC_EXTERNAL   (1u)
     Synchronization is external.
     
    -#define CY_CAPSENSE_SYNC_INTERNAL   (2u)
     Synchronization is internal.
     
    -#define CY_CAPSENSE_UNDEFINED_GROUP   (0u)
     Sensing group undefined used at initialization.
     
    -#define CY_CAPSENSE_CSD_GROUP   (1u)
     CSD sensing group.
     
    -#define CY_CAPSENSE_CSX_GROUP   (2u)
     CSX sensing group.
     
    -#define CY_CAPSENSE_BIST_GROUP   (3u)
     BIST group.
     
    -#define CY_CAPSENSE_BIST_CSD_GROUP   (4u)
     BIST CSD sensor capacitance measurement group.
     
    -#define CY_CAPSENSE_BIST_CSX_GROUP   (5u)
     BIST CSX sensor capacitance measurement group.
     
    -#define CY_CAPSENSE_BIST_SHIELD_GROUP   (6u)
     BIST shield capacitance measurement group.
     
    -#define CY_CAPSENSE_REG_MODE_UNDEFINED   (255u)
     Sensing mode undefined.
     
    -#define CY_CAPSENSE_REG_MODE_CSD   (0u)
     CSD sense mode configuration index.
     
    -#define CY_CAPSENSE_REG_MODE_CSX   (1u)
     CSX sense mode configuration index.
     
    -#define CY_CAPSENSE_REG_MODE_CSD_DITHERING   (2u)
     CSD sense mode configuration index with CapDAC dithering enabled.
     
    -#define CY_CAPSENSE_REG_MODE_CSX_DITHERING   (3u)
     CSX sense mode configuration index with CapDAC dithering enabled.
     
    -#define CY_CAPSENSE_REG_MODE_DITHERING   (CY_CAPSENSE_REG_MODE_CSD_DITHERING)
     First mode index with CapDAC dithering enabled.
     
    -#define CY_CAPSENSE_REG_MODE_NUMBER   (4u)
     Total number of modes.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_GND   (0u)
     Control mux switch state is ground.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_HIGH_Z   (1u)
     Control mux switch state is High-Z.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_TX   (2u)
     Control mux switch state defined as CSX Tx electrode.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_TX_NEGATIVE   (4u)
     Control mux switch state defined as CSX Negative Tx electrode.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_RX   (3u)
     Control mux switch state defined as CSX Rx electrode.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_SNS   (5u)
     Control mux switch state defined as CSD sensor.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_SHIELD   (6u)
     Control mux switch state defined as connection to shield signal.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_VDDA2   (7u)
     Control mux switch state defined as CSDBUSC connected electrode.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_NUMBER   (8u)
     Number of CTRLMUX Pin State.
     
    -#define CY_CAPSENSE_CTRLMUX_PIN_STATE_MASK_NUMBER   (3u)
     Number of CTRLMUX Pin State MASK registers.
     
    -#define CY_CAPSENSE_CSD_SS_DIS   (0x00u)
     Manual tuning mode.
     
    -#define CY_CAPSENSE_CSD_SS_HW_EN   (0x01u)
     Hardware auto-tune mask.
     
    -#define CY_CAPSENSE_CSD_SS_TH_EN   (0x02u)
     Threshold auto-tune mask.
     
    -#define CY_CAPSENSE_CSD_SS_HWTH_EN   (CY_CAPSENSE_CSD_SS_HW_EN | CY_CAPSENSE_CSD_SS_TH_EN)
     Full auto-tune is enabled.
     
    -#define CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM   (3u)
     Number of multi-frequency scan channels.
     
    -#define CY_CAPSENSE_CONFIGURED_FREQ_NUM   (3u)
     Total number of multi-frequency scan channels.
     
    -#define CY_CAPSENSE_MFS_CH0_INDEX   (0u)
     Multi-frequency channel 0 constant.
     
    -#define CY_CAPSENSE_MFS_CH1_INDEX   (1u)
     Multi-frequency channel 1 constant.
     
    -#define CY_CAPSENSE_MFS_CH2_INDEX   (2u)
     Multi-frequency channel 2 constant.
     
    -#define CY_CAPSENSE_SNS_CONNECTION_UNDEFINED   (0u)
     Inactive sensor connection undefined.
     
    -#define CY_CAPSENSE_SNS_CONNECTION_GROUND   (1u)
     Inactive sensor connection to ground.
     
    -#define CY_CAPSENSE_SNS_CONNECTION_HIGHZ   (2u)
     Inactive sensor connection to High-Z.
     
    -#define CY_CAPSENSE_SNS_CONNECTION_SHIELD   (4u)
     Inactive sensor connection to shield.
     
    #define CY_CAPSENSE_SNS_CONNECTION_VDDA_BY_2   (5u)
     Inactive CSX sensor connection to VDDA/2 voltage driven bus. More...
     
    -#define CY_CAPSENSE_SH_DELAY_0NS   (0u)
     No shield signal delay.
     
    -#define CY_CAPSENSE_SH_DELAY_5NS   (1u)
     Shield signal delay > 5 ns.
     
    -#define CY_CAPSENSE_SH_DELAY_10NS   (2u)
     Shield signal delay > 10 ns.
     
    -#define CY_CAPSENSE_SH_DELAY_20NS   (3u)
     Shield signal delay > 20 ns.
     
    -#define CY_CAPSENSE_IDAC_SOURCING   (0u)
     Idac sourcing.
     
    -#define CY_CAPSENSE_IDAC_SINKING   (1u)
     Idac sinking.
     
    -#define CY_CAPSENSE_CSH_PRECHARGE_VREF   (0u)
     Shield tank capacitor pre-charge from Vref.
     
    -#define CY_CAPSENSE_CSH_PRECHARGE_IO_BUF   (1u)
     Shield tank capacitor pre-charge from IO buffer.
     
    -#define CY_CAPSENSE_CLK_SOURCE_AUTO_MASK   (0x80u)
     Auto-mode of clock source selection mask.
     
    -#define CY_CAPSENSE_CLK_SOURCE_MASK   (0x0Fu)
     Clock source selection mask.
     
    -#define CY_CAPSENSE_CLK_SOURCE_DIRECT   (0x00u)
     Clock source direct.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SSC6   (0x01u)
     Clock source SSC6.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SSC7   (0x02u)
     Clock source SSC7.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SSC9   (0x03u)
     Clock source SSC9.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SSC10   (0x04u)
     Clock source SSC10.
     
    -#define CY_CAPSENSE_CLK_SOURCE_PRS8   (0x05u)
     Clock source PRS8.
     
    -#define CY_CAPSENSE_CLK_SOURCE_PRS12   (0x06u)
     Clock source PRS12.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SMARTSENSE_MASK   (0xF0u)
     Smart sensing algorithm Clock Source reserved bits.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SMARTSENSE_POS   (4u)
     Smart sensing algorithm Clock Source reserved bits position.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SSC   (0x01u)
     Clock source SSC.
     
    -#define CY_CAPSENSE_CLK_SOURCE_PRS   (0x02u)
     Clock source PRS.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SSC_AUTO_MASK   (0x04u)
     Clock source SSC auto-selection mask.
     
    -#define CY_CAPSENSE_CLK_SOURCE_SSC_AUTO   (CY_CAPSENSE_CLK_SOURCE_SSC_AUTO_MASK)
     Clock source SSC auto-selection.
     
    -#define CY_CAPSENSE_CLK_SOURCE_PRS_AUTO_MASK   (0x08u)
     Clock source PRS auto-selection mask.
     
    -#define CY_CAPSENSE_CLK_SOURCE_PRS_AUTO   (CY_CAPSENSE_CLK_SOURCE_PRS_AUTO_MASK)
     Clock source PRS auto-selection.
     
    -#define CY_CAPSENSE_LFSR_BITS_AUTO_MASK   (0x80u)
     LFSR range auto-selection mask.
     
    -#define CY_CAPSENSE_LFSR_BITS_RANGE_MASK   (0x03u)
     LFSR range mask.
     
    -#define CY_CAPSENSE_LFSR_BITS_AUTO   (CY_CAPSENSE_LFSR_BITS_AUTO_MASK)
     LFSR range auto-selection.
     
    -#define CY_CAPSENSE_LFSR_BITS_RANGE_0   (0x00u)
     LFSR range for LFSR_BITS=0.
     
    -#define CY_CAPSENSE_LFSR_BITS_RANGE_1   (0x01u)
     LFSR range for LFSR_BITS=1.
     
    -#define CY_CAPSENSE_LFSR_BITS_RANGE_2   (0x02u)
     LFSR range for LFSR_BITS=2.
     
    -#define CY_CAPSENSE_LFSR_BITS_RANGE_3   (0x03u)
     LFSR range for LFSR_BITS=3.
     
    #define CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_STRONG   (0x00u)
     This mode implements checking the following rules: More...
     
    #define CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_MEDIUM   (0x01u)
     This mode implements checking the following rules: More...
     
    #define CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_WEAK   (0x02u)
     This mode implements checking the following rules: More...
     
    -#define CY_CAPSENSE_INIT_SW_RES_LOW   (0x00u)
     Low switch resistance at initialization.
     
    -#define CY_CAPSENSE_INIT_SW_RES_MEDIUM   (0x01u)
     Medium switch resistance at initialization.
     
    -#define CY_CAPSENSE_INIT_SW_RES_HIGH   (0x02u)
     High switch resistance at initialization.
     
    -#define CY_CAPSENSE_SCAN_SW_RES_LOW   (0x00u)
     Low switch resistance at scanning.
     
    -#define CY_CAPSENSE_SCAN_SW_RES_MEDIUM   (0x01u)
     Medium switch resistance at scanning.
     
    -#define CY_CAPSENSE_SCAN_SW_RES_HIGH   (0x02u)
     High switch resistance at scanning.
     
    -#define CY_CAPSENSE_SHIELD_SW_RES_LOW   (0x00u)
     Low shield switch resistance.
     
    -#define CY_CAPSENSE_SHIELD_SW_RES_MEDIUM   (0x01u)
     Medium shield switch resistance.
     
    -#define CY_CAPSENSE_SHIELD_SW_RES_HIGH   (0x02u)
     High shield switch resistance.
     
    -#define CY_CAPSENSE_SHIELD_SW_RES_LOW_EMI   (0x03u)
     Low-EMI shield switch resistance.
     
    -#define CY_CAPSENSE_SHIELD_DISABLED   (0u)
     Shield disabled.
     
    -#define CY_CAPSENSE_SHIELD_ACTIVE   (1u)
     Active shield mode.
     
    -#define CY_CAPSENSE_SHIELD_PASSIVE   (2u)
     Passive shield mode.
     
    -#define CY_CAPSENSE_VREF_SRSS   (0x00u)
     Vref source is taken from SRSS.
     
    -#define CY_CAPSENSE_VREF_PASS   (0x01u)
     Vref source is taken from PASS.
     
    -#define CY_CAPSENSE_IREF_SRSS   (0x00u)
     Iref source is taken from SRSS.
     
    -#define CY_CAPSENSE_IREF_PASS   (0x01u)
     Iref source is taken from PASS.
     
    -#define CY_CAPSENSE_LOW_VOLTAGE_LIMIT   (2000u)
     Voltage limit to switch to low-voltage configuration.
     
    -#define CY_CAPSENSE_POSITION_FILTERS_MASK   (0x000000FFu)
     Mask of all filters enabling.
     
    -#define CY_CAPSENSE_POSITION_MED_MASK   (0x00000001u)
     Median position filter enable mask.
     
    -#define CY_CAPSENSE_POSITION_IIR_MASK   (0x00000002u)
     IIR position filter enable mask.
     
    -#define CY_CAPSENSE_POSITION_AIIR_MASK   (0x00000004u)
     Adaptive IIR position filter enable mask.
     
    -#define CY_CAPSENSE_POSITION_AVG_MASK   (0x00000008u)
     Average position filter enable mask.
     
    -#define CY_CAPSENSE_POSITION_JIT_MASK   (0x00000010u)
     Jitter position filter enable mask.
     
    -#define CY_CAPSENSE_POSITION_FILTERS_SIZE_MASK   (0x0000FF00u)
     Mask of position filters history size.
     
    -#define CY_CAPSENSE_POSITION_FILTERS_SIZE_OFFSET   (8u)
     Offset of position filters history size.
     
    -#define CY_CAPSENSE_POSITION_IIR_COEFF_MASK   (0x00FF0000u)
     Mask of IIR coefficient of position filter.
     
    -#define CY_CAPSENSE_POSITION_IIR_COEFF_OFFSET   (16u)
     Offset of IIR coefficient of position filter.
     
    -#define CY_CAPSENSE_RC_FILTER_SNS_HISTORY_SIZE_OFFSET   (0u)
     Offset of raw count filter history size.
     
    -#define CY_CAPSENSE_RC_FILTER_MEDIAN_EN_OFFSET   (4u)
     Offset of raw count median filter enable mask.
     
    -#define CY_CAPSENSE_RC_FILTER_MEDIAN_MODE_OFFSET   (5u)
     Offset of raw count median filter mode mask.
     
    -#define CY_CAPSENSE_RC_FILTER_IIR_EN_OFFSET   (7u)
     Offset of raw count IIR filter enable mask.
     
    -#define CY_CAPSENSE_RC_FILTER_IIR_MODE_OFFSET   (8u)
     Offset of raw count IIR filter mode mask.
     
    -#define CY_CAPSENSE_RC_FILTER_AVERAGE_EN_OFFSET   (10u)
     Offset of raw count average filter enable mask.
     
    -#define CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_OFFSET   (11u)
     Offset of raw count average filter mode mask.
     
    -#define CY_CAPSENSE_RC_FILTER_SNS_HISTORY_SIZE_MASK   ((uint16_t)((uint16_t)0x000Fu << CY_CAPSENSE_RC_FILTER_SNS_HISTORY_SIZE_OFFSET))
     Mask of raw count filter history size.
     
    -#define CY_CAPSENSE_RC_FILTER_MEDIAN_EN_MASK   ((uint16_t)((uint16_t)0x0001u << CY_CAPSENSE_RC_FILTER_MEDIAN_EN_OFFSET))
     Median raw count filter enable mask.
     
    -#define CY_CAPSENSE_RC_FILTER_MEDIAN_MODE_MASK   ((uint16_t)((uint16_t)0x0003u << CY_CAPSENSE_RC_FILTER_MEDIAN_MODE_OFFSET))
     Median raw count filter mode mask.
     
    -#define CY_CAPSENSE_RC_FILTER_IIR_EN_MASK   ((uint16_t)((uint16_t)0x0001u << CY_CAPSENSE_RC_FILTER_IIR_EN_OFFSET))
     IIR raw count filter enable mask.
     
    -#define CY_CAPSENSE_RC_FILTER_IIR_MODE_MASK   ((uint16_t)((uint16_t)0x0003u << CY_CAPSENSE_RC_FILTER_IIR_MODE_OFFSET))
     IIR raw count filter mode mask.
     
    -#define CY_CAPSENSE_RC_FILTER_AVERAGE_EN_MASK   ((uint16_t)((uint16_t)0x0001u << CY_CAPSENSE_RC_FILTER_AVERAGE_EN_OFFSET))
     Average raw count filter enable mask.
     
    -#define CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_MASK   ((uint16_t)((uint16_t)0x0003u << CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_OFFSET))
     Average raw count filter mode mask.
     
    #define CY_CAPSENSE_RC_FILTER_ALL_EN_MASK
     All raw count filters enable mask. More...
     
    -#define CY_CAPSENSE_IIR_FILTER_STANDARD   ((uint16_t)((uint16_t)1u << CY_CAPSENSE_RC_FILTER_IIR_MODE_OFFSET))
     Raw count IIR filter mode standard.
     
    -#define CY_CAPSENSE_IIR_FILTER_PERFORMANCE   ((uint16_t)((uint16_t)2u << CY_CAPSENSE_RC_FILTER_IIR_MODE_OFFSET))
     Raw count IIR filter mode performance.
     
    -#define CY_CAPSENSE_AVERAGE_FILTER_LEN_4   ((uint16_t)((uint16_t)2u << CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_OFFSET))
     Raw count average filter mode.
     
    -

    Macro Definition Documentation

    - -

    ◆ CY_CAPSENSE_SNS_CONNECTION_VDDA_BY_2

    - -
    -
    - - - - -
    #define CY_CAPSENSE_SNS_CONNECTION_VDDA_BY_2   (5u)
    -
    - -

    Inactive CSX sensor connection to VDDA/2 voltage driven bus.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_STRONG

    - -
    -
    - - - - -
    #define CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_STRONG   (0x00u)
    -
    - -

    This mode implements checking the following rules:

    -
      -
    • An LFSR value should be selected so that the max clock dither is limited with the value, specified by the LFSR Dither Limit parameter.
    • -
    • At least one full spread spectrum polynomial should pass during the scan time.
    • -
    • The value of the number of conversions should be an integer multiple of the repeat period of the polynomial, that is specified by the Sense Clock LFSR Polynomial parameter.
    • -
    - -
    -
    - -

    ◆ CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_MEDIUM

    - -
    -
    - - - - -
    #define CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_MEDIUM   (0x01u)
    -
    - -

    This mode implements checking the following rules:

    -
      -
    • An LFSR value should be selected so that the max clock dither is limited with the value, specified by the LFSR Dither Limit parameter.
    • -
    • At least one full spread spectrum polynomial should pass during the scan time.
    • -
    - -
    -
    - -

    ◆ CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_WEAK

    - -
    -
    - - - - -
    #define CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_WEAK   (0x02u)
    -
    - -

    This mode implements checking the following rules:

    -
      -
    • An LFSR value should be selected so that the max clock dither is limited with the value, specified by the LFSR Dither Limit parameter.
    • -
    - -
    -
    - -

    ◆ CY_CAPSENSE_RC_FILTER_ALL_EN_MASK

    - -
    -
    - - - - -
    #define CY_CAPSENSE_RC_FILTER_ALL_EN_MASK
    -
    -Value:
    CY_CAPSENSE_RC_FILTER_IIR_EN_MASK |\
    CY_CAPSENSE_RC_FILTER_AVERAGE_EN_OFFSET)
    #define CY_CAPSENSE_RC_FILTER_MEDIAN_EN_MASK
    Median raw count filter enable mask.
    Definition: cy_capsense_common.h:544
    -
    -

    All raw count filters enable mask.

    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__settings.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__settings.js deleted file mode 100644 index 67c0ca0b2e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__settings.js +++ /dev/null @@ -1,133 +0,0 @@ -var group__group__capsense__macros__settings = -[ - [ "CY_CAPSENSE_SCAN_MODE_INT_DRIVEN", "group__group__capsense__macros__settings.html#gab20389338f16662a302d202f3ceb69d4", null ], - [ "CY_CAPSENSE_SCAN_MODE_DMA_DRIVEN", "group__group__capsense__macros__settings.html#gaff0750ee44bdc26126f2ceea52e00e7f", null ], - [ "CY_CAPSENSE_AMUX_SENSOR_CONNECTION_METHOD", "group__group__capsense__macros__settings.html#ga75da5dfb126a061b9cef05cb39f3284d", null ], - [ "CY_CAPSENSE_CTRLMUX_SENSOR_CONNECTION_METHOD", "group__group__capsense__macros__settings.html#ga710ffc1088e141d81d6068b6d106983e", null ], - [ "CY_CAPSENSE_CIC_FILTER", "group__group__capsense__macros__settings.html#ga46477d13f648065d22ef743b1f0cfb2a", null ], - [ "CY_CAPSENSE_CIC2_FILTER", "group__group__capsense__macros__settings.html#gaf5100eb9ad525c7553ad3f6a91af6bee", null ], - [ "CY_CAPSENSE_COUNTER_MODE_SATURATE", "group__group__capsense__macros__settings.html#ga85f8ad7f7022754b73801f601659d722", null ], - [ "CY_CAPSENSE_COUNTER_MODE_OVERFLOW", "group__group__capsense__macros__settings.html#ga0e8549fe9b874c6ccce9dfd43d848fb7", null ], - [ "CY_CAPSENSE_SYNC_MODE_OFF", "group__group__capsense__macros__settings.html#gad4cf55a5b7ef6e46a91f36a0a7c756c1", null ], - [ "CY_CAPSENSE_SYNC_EXTERNAL", "group__group__capsense__macros__settings.html#gae5b20e3cee87b98ba570651a2eccba16", null ], - [ "CY_CAPSENSE_SYNC_INTERNAL", "group__group__capsense__macros__settings.html#ga0cd06b1f46952635db71d0ec0452400c", null ], - [ "CY_CAPSENSE_UNDEFINED_GROUP", "group__group__capsense__macros__settings.html#gae86010c9d7c2b34d3825aed42c3bdb55", null ], - [ "CY_CAPSENSE_CSD_GROUP", "group__group__capsense__macros__settings.html#ga3047d6d3cbb3fad846ebd1c446c14906", null ], - [ "CY_CAPSENSE_CSX_GROUP", "group__group__capsense__macros__settings.html#ga53b14865512480c26078a3348f2d73a1", null ], - [ "CY_CAPSENSE_BIST_GROUP", "group__group__capsense__macros__settings.html#ga6344d0ea9b9310a6651f5275c7ccb0c9", null ], - [ "CY_CAPSENSE_BIST_CSD_GROUP", "group__group__capsense__macros__settings.html#gab494555fb44eede371e067b9064175f5", null ], - [ "CY_CAPSENSE_BIST_CSX_GROUP", "group__group__capsense__macros__settings.html#gae0519681d6139d746d3b7a457c132869", null ], - [ "CY_CAPSENSE_BIST_SHIELD_GROUP", "group__group__capsense__macros__settings.html#ga9e6c7de68c2b6eff071f394c3c9666cf", null ], - [ "CY_CAPSENSE_REG_MODE_UNDEFINED", "group__group__capsense__macros__settings.html#ga29629dbc0b292df0e5a93764fa6ace23", null ], - [ "CY_CAPSENSE_REG_MODE_CSD", "group__group__capsense__macros__settings.html#ga6b9ad8a287a28d842f22594a0cd8b1b0", null ], - [ "CY_CAPSENSE_REG_MODE_CSX", "group__group__capsense__macros__settings.html#ga8c6620be646db4182d6c3a7c9f56875d", null ], - [ "CY_CAPSENSE_REG_MODE_CSD_DITHERING", "group__group__capsense__macros__settings.html#ga08fda083a52149ed2328efd490990e51", null ], - [ "CY_CAPSENSE_REG_MODE_CSX_DITHERING", "group__group__capsense__macros__settings.html#ga40ea306903f41e93390f70d3ebc2f733", null ], - [ "CY_CAPSENSE_REG_MODE_DITHERING", "group__group__capsense__macros__settings.html#gab6f9dc016475739d9cefd25e43ad0d59", null ], - [ "CY_CAPSENSE_REG_MODE_NUMBER", "group__group__capsense__macros__settings.html#ga745c3a1ff8ee9fbe299f0383bd15beb9", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_GND", "group__group__capsense__macros__settings.html#gad3ee2ddf819d620ac6dc2018cced82e1", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_HIGH_Z", "group__group__capsense__macros__settings.html#ga82511fe1c0a47b01076ed2ef0bd5497f", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_TX", "group__group__capsense__macros__settings.html#gab78095995442e1acc8644c8267c659a5", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_TX_NEGATIVE", "group__group__capsense__macros__settings.html#ga9f360ec234320f16bbeb005d2329a5cd", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_RX", "group__group__capsense__macros__settings.html#gaa5bc6eeb1f8d838227a82ef1c53aea4a", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_SNS", "group__group__capsense__macros__settings.html#ga5a53232c9bcb9825724a572b085c6bb3", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_SHIELD", "group__group__capsense__macros__settings.html#ga79b682938aec2b5ab3513b28c668640b", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_VDDA2", "group__group__capsense__macros__settings.html#ga34a4335285d2426873746761223f27cb", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_NUMBER", "group__group__capsense__macros__settings.html#ga7d454d6736be00c7652760e2f497c60b", null ], - [ "CY_CAPSENSE_CTRLMUX_PIN_STATE_MASK_NUMBER", "group__group__capsense__macros__settings.html#ga834b15ee89e35f95318837c0053acddc", null ], - [ "CY_CAPSENSE_CSD_SS_DIS", "group__group__capsense__macros__settings.html#gaf789d51e39a68008c203c55c18d66242", null ], - [ "CY_CAPSENSE_CSD_SS_HW_EN", "group__group__capsense__macros__settings.html#gaa34921f5c121a3182c1d6216fe517f50", null ], - [ "CY_CAPSENSE_CSD_SS_TH_EN", "group__group__capsense__macros__settings.html#ga3fa20def75dbad19b7208a63f247234f", null ], - [ "CY_CAPSENSE_CSD_SS_HWTH_EN", "group__group__capsense__macros__settings.html#ga36dde28284f8f8ccb59f7d5167ecf2d8", null ], - [ "CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM", "group__group__capsense__macros__settings.html#ga2e3c548e409ca07aa1376632bbcd6670", null ], - [ "CY_CAPSENSE_CONFIGURED_FREQ_NUM", "group__group__capsense__macros__settings.html#ga3a9e30d05417f1c76b49554455ce0a63", null ], - [ "CY_CAPSENSE_MFS_CH0_INDEX", "group__group__capsense__macros__settings.html#ga68fa8ac4aa0aee147c38ca8d6bf32830", null ], - [ "CY_CAPSENSE_MFS_CH1_INDEX", "group__group__capsense__macros__settings.html#ga35e5670bf245edc9997d33b0243519e2", null ], - [ "CY_CAPSENSE_MFS_CH2_INDEX", "group__group__capsense__macros__settings.html#ga28f28170b727262af4926fbbef35f6e9", null ], - [ "CY_CAPSENSE_SNS_CONNECTION_UNDEFINED", "group__group__capsense__macros__settings.html#gaa1cb325794702c2593a229efdd6423bf", null ], - [ "CY_CAPSENSE_SNS_CONNECTION_GROUND", "group__group__capsense__macros__settings.html#gab9974ad01fbe3917c6267fa699d1076e", null ], - [ "CY_CAPSENSE_SNS_CONNECTION_HIGHZ", "group__group__capsense__macros__settings.html#ga3a5c45da6939f8c983d1b49a1cab892d", null ], - [ "CY_CAPSENSE_SNS_CONNECTION_SHIELD", "group__group__capsense__macros__settings.html#ga8a8853eddb009b86af2a5c81992c0e63", null ], - [ "CY_CAPSENSE_SNS_CONNECTION_VDDA_BY_2", "group__group__capsense__macros__settings.html#gae4481e4b8ea585a9806c48b4633c5a04", null ], - [ "CY_CAPSENSE_SH_DELAY_0NS", "group__group__capsense__macros__settings.html#gac0e5ac299c482dccf2a13deeb711418b", null ], - [ "CY_CAPSENSE_SH_DELAY_5NS", "group__group__capsense__macros__settings.html#ga48749bbea16b0c9a23f88e4f4a366b30", null ], - [ "CY_CAPSENSE_SH_DELAY_10NS", "group__group__capsense__macros__settings.html#ga2a8207ebf7bdfe80cbe61b8c6804d8d7", null ], - [ "CY_CAPSENSE_SH_DELAY_20NS", "group__group__capsense__macros__settings.html#gae4c2670b353797c6926f7bf1873a197a", null ], - [ "CY_CAPSENSE_IDAC_SOURCING", "group__group__capsense__macros__settings.html#gad4b51f2449480c37c0e1e02234dd1ba8", null ], - [ "CY_CAPSENSE_IDAC_SINKING", "group__group__capsense__macros__settings.html#ga2e871273079c7fc156213a7cb2218e93", null ], - [ "CY_CAPSENSE_CSH_PRECHARGE_VREF", "group__group__capsense__macros__settings.html#ga248ee6484453d33e49e7c57127d8ac0a", null ], - [ "CY_CAPSENSE_CSH_PRECHARGE_IO_BUF", "group__group__capsense__macros__settings.html#ga3433492babafa969b79de68000d8351e", null ], - [ "CY_CAPSENSE_CLK_SOURCE_AUTO_MASK", "group__group__capsense__macros__settings.html#ga3c9ca2af91bd2646aac161925848e213", null ], - [ "CY_CAPSENSE_CLK_SOURCE_MASK", "group__group__capsense__macros__settings.html#gafb022afde037da74b2d3950f4530984d", null ], - [ "CY_CAPSENSE_CLK_SOURCE_DIRECT", "group__group__capsense__macros__settings.html#ga51f10327320c57f7d0de670503dc412e", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SSC6", "group__group__capsense__macros__settings.html#ga79a8c9ba302c96412fb4bca29fa04d1a", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SSC7", "group__group__capsense__macros__settings.html#ga9e6b845c5173ca6a94842d000d7e5038", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SSC9", "group__group__capsense__macros__settings.html#gab6f6d25f9a034ce470b8c965aa561b29", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SSC10", "group__group__capsense__macros__settings.html#gae8a4b5b936a963429f169eba340a1bfc", null ], - [ "CY_CAPSENSE_CLK_SOURCE_PRS8", "group__group__capsense__macros__settings.html#gac4d57717a81b64c46682900eb6157628", null ], - [ "CY_CAPSENSE_CLK_SOURCE_PRS12", "group__group__capsense__macros__settings.html#ga095c414d9cf0be7f900dac0fd30d9d33", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SMARTSENSE_MASK", "group__group__capsense__macros__settings.html#ga1b5b9ffad6e3a350201af0099b047c0b", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SMARTSENSE_POS", "group__group__capsense__macros__settings.html#ga13cd953ef4cdedbca608469ef011bb82", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SSC", "group__group__capsense__macros__settings.html#gaf231ca0a07513f2a3bf4b98d089be133", null ], - [ "CY_CAPSENSE_CLK_SOURCE_PRS", "group__group__capsense__macros__settings.html#ga3581ff1b2ecfdfcbf9d5caa1752750da", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SSC_AUTO_MASK", "group__group__capsense__macros__settings.html#gaf1d73a40e03d31089561bbd84ab36afd", null ], - [ "CY_CAPSENSE_CLK_SOURCE_SSC_AUTO", "group__group__capsense__macros__settings.html#ga650ce8b71b6d1bd0bb8ac0c3074092fb", null ], - [ "CY_CAPSENSE_CLK_SOURCE_PRS_AUTO_MASK", "group__group__capsense__macros__settings.html#ga522e4a598e2c119d424d7f70185c99e5", null ], - [ "CY_CAPSENSE_CLK_SOURCE_PRS_AUTO", "group__group__capsense__macros__settings.html#ga7ce62c963a70100f945ae4f27763ef6b", null ], - [ "CY_CAPSENSE_LFSR_BITS_AUTO_MASK", "group__group__capsense__macros__settings.html#gaa56931b822d6c8d45f035666312b37c2", null ], - [ "CY_CAPSENSE_LFSR_BITS_RANGE_MASK", "group__group__capsense__macros__settings.html#gac0e017b84a7ffa622284b52227b552dd", null ], - [ "CY_CAPSENSE_LFSR_BITS_AUTO", "group__group__capsense__macros__settings.html#gae2be0d86bc8b5f22dcfba27c7b962382", null ], - [ "CY_CAPSENSE_LFSR_BITS_RANGE_0", "group__group__capsense__macros__settings.html#gabf74f3e1c4d068696a185543862ce2e2", null ], - [ "CY_CAPSENSE_LFSR_BITS_RANGE_1", "group__group__capsense__macros__settings.html#gae2ec4c944055d3cd8f879d73c0ea2741", null ], - [ "CY_CAPSENSE_LFSR_BITS_RANGE_2", "group__group__capsense__macros__settings.html#ga2fcfc649282a924d6290f6e1e163906e", null ], - [ "CY_CAPSENSE_LFSR_BITS_RANGE_3", "group__group__capsense__macros__settings.html#ga2490abfae288ba9a8583f3e52ab446b5", null ], - [ "CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_STRONG", "group__group__capsense__macros__settings.html#ga662cc8c242a4d7accaf7397a8a5724fc", null ], - [ "CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_MEDIUM", "group__group__capsense__macros__settings.html#ga5e338bbc87bd90711494bf9d9385cbf0", null ], - [ "CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_WEAK", "group__group__capsense__macros__settings.html#ga2a9079680e8aa39d9365a5422ef3fb64", null ], - [ "CY_CAPSENSE_INIT_SW_RES_LOW", "group__group__capsense__macros__settings.html#gaac47b3d6d12e388d97a99d5799bb2b18", null ], - [ "CY_CAPSENSE_INIT_SW_RES_MEDIUM", "group__group__capsense__macros__settings.html#gab9de749731fcee7333dbdd90586fa31e", null ], - [ "CY_CAPSENSE_INIT_SW_RES_HIGH", "group__group__capsense__macros__settings.html#ga06a28983f42b3fe5a3146bb7e1cd9236", null ], - [ "CY_CAPSENSE_SCAN_SW_RES_LOW", "group__group__capsense__macros__settings.html#gab298825ea19c5944b34cf4843e25f5bd", null ], - [ "CY_CAPSENSE_SCAN_SW_RES_MEDIUM", "group__group__capsense__macros__settings.html#gaf3e12cf8efd216867fa1c284634a3053", null ], - [ "CY_CAPSENSE_SCAN_SW_RES_HIGH", "group__group__capsense__macros__settings.html#ga7065d35473184eb30c3e12606b4fe07c", null ], - [ "CY_CAPSENSE_SHIELD_SW_RES_LOW", "group__group__capsense__macros__settings.html#gac7a63dafd01bec9532ecb51396cdc534", null ], - [ "CY_CAPSENSE_SHIELD_SW_RES_MEDIUM", "group__group__capsense__macros__settings.html#ga867a68d0418a476d6642c43a3d038248", null ], - [ "CY_CAPSENSE_SHIELD_SW_RES_HIGH", "group__group__capsense__macros__settings.html#ga046e981e4d4b4ba396dab5204d7115c6", null ], - [ "CY_CAPSENSE_SHIELD_SW_RES_LOW_EMI", "group__group__capsense__macros__settings.html#gabe85f0f14bf73d8baa6d013dac6a9608", null ], - [ "CY_CAPSENSE_SHIELD_DISABLED", "group__group__capsense__macros__settings.html#gad87aae7630fddcad1b77864e054df2e1", null ], - [ "CY_CAPSENSE_SHIELD_ACTIVE", "group__group__capsense__macros__settings.html#ga67fb2d649cc7951cd343a7f90b97ba60", null ], - [ "CY_CAPSENSE_SHIELD_PASSIVE", "group__group__capsense__macros__settings.html#ga6c46716f429184b52d970b687094d384", null ], - [ "CY_CAPSENSE_VREF_SRSS", "group__group__capsense__macros__settings.html#ga07a0b01219871be66bd32242d678f82f", null ], - [ "CY_CAPSENSE_VREF_PASS", "group__group__capsense__macros__settings.html#gab2666ce40783ce2b0259f7fd581cb400", null ], - [ "CY_CAPSENSE_IREF_SRSS", "group__group__capsense__macros__settings.html#gaf8db866012c77ad000f75d3174938c2c", null ], - [ "CY_CAPSENSE_IREF_PASS", "group__group__capsense__macros__settings.html#gafcf80ee9c55e11ea09864f8a32de99b6", null ], - [ "CY_CAPSENSE_LOW_VOLTAGE_LIMIT", "group__group__capsense__macros__settings.html#gaeaa0712bb3ceba12e47d1d216f600e01", null ], - [ "CY_CAPSENSE_POSITION_FILTERS_MASK", "group__group__capsense__macros__settings.html#gaee14d46514f114db4fe4bf404b237b66", null ], - [ "CY_CAPSENSE_POSITION_MED_MASK", "group__group__capsense__macros__settings.html#gaacf8aace37a046c707ea2d97c8de5f49", null ], - [ "CY_CAPSENSE_POSITION_IIR_MASK", "group__group__capsense__macros__settings.html#ga72f475a33ff67f2a5b9a60fbafbc92f3", null ], - [ "CY_CAPSENSE_POSITION_AIIR_MASK", "group__group__capsense__macros__settings.html#gae54e6c4d9b4bca9ce91633c48665e40a", null ], - [ "CY_CAPSENSE_POSITION_AVG_MASK", "group__group__capsense__macros__settings.html#gaf46055ebd3cc5feebeb135c6fff2359a", null ], - [ "CY_CAPSENSE_POSITION_JIT_MASK", "group__group__capsense__macros__settings.html#ga6a3806a58df624a29a754e923d2e7710", null ], - [ "CY_CAPSENSE_POSITION_FILTERS_SIZE_MASK", "group__group__capsense__macros__settings.html#gadbb42060f9944831159e076a333a1fb3", null ], - [ "CY_CAPSENSE_POSITION_FILTERS_SIZE_OFFSET", "group__group__capsense__macros__settings.html#ga7e37264e471d9d7872a7f1f0e30799c0", null ], - [ "CY_CAPSENSE_POSITION_IIR_COEFF_MASK", "group__group__capsense__macros__settings.html#ga7d951b1fc406e58a1fbf1e235ebf1260", null ], - [ "CY_CAPSENSE_POSITION_IIR_COEFF_OFFSET", "group__group__capsense__macros__settings.html#gaffc57c972683ab82bdff25b2d99880d6", null ], - [ "CY_CAPSENSE_RC_FILTER_SNS_HISTORY_SIZE_OFFSET", "group__group__capsense__macros__settings.html#gaafa561fa291e8239e60ea07331c030b7", null ], - [ "CY_CAPSENSE_RC_FILTER_MEDIAN_EN_OFFSET", "group__group__capsense__macros__settings.html#gad350cf05ada3dec1cf92390d6441a88e", null ], - [ "CY_CAPSENSE_RC_FILTER_MEDIAN_MODE_OFFSET", "group__group__capsense__macros__settings.html#ga1d4da07726bc7d1580f67f7256f341b2", null ], - [ "CY_CAPSENSE_RC_FILTER_IIR_EN_OFFSET", "group__group__capsense__macros__settings.html#gae61870b2d6fc717d367b85d01bac84ac", null ], - [ "CY_CAPSENSE_RC_FILTER_IIR_MODE_OFFSET", "group__group__capsense__macros__settings.html#ga854ce708831c871a8164c438285eaefb", null ], - [ "CY_CAPSENSE_RC_FILTER_AVERAGE_EN_OFFSET", "group__group__capsense__macros__settings.html#gaaf71706bd4bd17bb93af43a78753608c", null ], - [ "CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_OFFSET", "group__group__capsense__macros__settings.html#ga8e7641569c46bb1434a6579fe32d4050", null ], - [ "CY_CAPSENSE_RC_FILTER_SNS_HISTORY_SIZE_MASK", "group__group__capsense__macros__settings.html#ga8fd2bbafe7efdc8027d506adb4972ad0", null ], - [ "CY_CAPSENSE_RC_FILTER_MEDIAN_EN_MASK", "group__group__capsense__macros__settings.html#ga185086b797ceeefb572cc080f9f5b4c7", null ], - [ "CY_CAPSENSE_RC_FILTER_MEDIAN_MODE_MASK", "group__group__capsense__macros__settings.html#ga87105898371665476f90611647b3de08", null ], - [ "CY_CAPSENSE_RC_FILTER_IIR_EN_MASK", "group__group__capsense__macros__settings.html#ga2631432965424bda0453e73812136f32", null ], - [ "CY_CAPSENSE_RC_FILTER_IIR_MODE_MASK", "group__group__capsense__macros__settings.html#ga2ac1f3d201f821bb6ba685cf79b088d7", null ], - [ "CY_CAPSENSE_RC_FILTER_AVERAGE_EN_MASK", "group__group__capsense__macros__settings.html#ga5c0abe400102f37a1be197271feb2e0f", null ], - [ "CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_MASK", "group__group__capsense__macros__settings.html#ga5b7bc9d392343d69ad7a06d11d84530a", null ], - [ "CY_CAPSENSE_RC_FILTER_ALL_EN_MASK", "group__group__capsense__macros__settings.html#gaebc0fb6bfe7bc94a2c49da92907130ca", null ], - [ "CY_CAPSENSE_IIR_FILTER_STANDARD", "group__group__capsense__macros__settings.html#gaafbef04e2b320d8ccf1567015932bd95", null ], - [ "CY_CAPSENSE_IIR_FILTER_PERFORMANCE", "group__group__capsense__macros__settings.html#ga0574f749bb3bdcd3759cbd0bd634a25a", null ], - [ "CY_CAPSENSE_AVERAGE_FILTER_LEN_4", "group__group__capsense__macros__settings.html#gad8593b7368f45b7383b44788ce1c9dd9", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__status.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__status.html deleted file mode 100644 index a3471cfcd0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__status.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Status Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Status Macros
    -
    -
    -

    General Description

    -

    Status macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_STATUS_SUCCESS   (0x00u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Successfully.
     
    -#define CY_CAPSENSE_STATUS_BAD_PARAM   (0x01u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Bad input parameter.
     
    -#define CY_CAPSENSE_STATUS_BAD_DATA   (0x02u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Received wrong data.
     
    -#define CY_CAPSENSE_STATUS_TIMEOUT   (0x04u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Timeout.
     
    -#define CY_CAPSENSE_STATUS_INVALID_STATE   (0x08u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Invalid state.
     
    -#define CY_CAPSENSE_STATUS_BAD_CONFIG   (0x10u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Bad configuration.
     
    -#define CY_CAPSENSE_STATUS_CONFIG_OVERFLOW   (0x20u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Overflow.
     
    -#define CY_CAPSENSE_STATUS_HW_BUSY   (0x40u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: HW is busy.
     
    -#define CY_CAPSENSE_STATUS_HW_LOCKED   (0x80u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: HW is locked.
     
    -#define CY_CAPSENSE_STATUS_CALIBRATION_FAIL   (0x100u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Unable to perform calibration.
     
    -#define CY_CAPSENSE_STATUS_CALIBRATION_OVERFLOW   (0x200u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Calibration scan with the maximum CDAC code is saturated.
     
    -#define CY_CAPSENSE_STATUS_CALIBRATION_CHECK_FAIL   (0x400u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Unable to perform calibration.
     
    -#define CY_CAPSENSE_STATUS_BAD_CLOCK_CONFIG   (0x800u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Sense Clock Divider is out of the valid range for the specified Clock source configuration.
     
    -#define CY_CAPSENSE_STATUS_UNKNOWN   (0x80000000u)
     Return status cy_capsense_status_t of CAPSENSE™ operation: Unknown.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__status.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__status.js deleted file mode 100644 index 68eb2fa079..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__status.js +++ /dev/null @@ -1,17 +0,0 @@ -var group__group__capsense__macros__status = -[ - [ "CY_CAPSENSE_STATUS_SUCCESS", "group__group__capsense__macros__status.html#ga83824bf450f79f26a70da2b619cd07c7", null ], - [ "CY_CAPSENSE_STATUS_BAD_PARAM", "group__group__capsense__macros__status.html#ga8497b8b090398be7d1550d31946c6013", null ], - [ "CY_CAPSENSE_STATUS_BAD_DATA", "group__group__capsense__macros__status.html#ga69dbd94aeeefeb6c62a06b1a34c6b11b", null ], - [ "CY_CAPSENSE_STATUS_TIMEOUT", "group__group__capsense__macros__status.html#ga7800a171ed68032494c947af37eb7c6c", null ], - [ "CY_CAPSENSE_STATUS_INVALID_STATE", "group__group__capsense__macros__status.html#ga2e717d44f520fcd5b7c344c907c2279a", null ], - [ "CY_CAPSENSE_STATUS_BAD_CONFIG", "group__group__capsense__macros__status.html#ga27ac8f9b094a592b8485c770801201dc", null ], - [ "CY_CAPSENSE_STATUS_CONFIG_OVERFLOW", "group__group__capsense__macros__status.html#ga3da0177d5b3646efb3823f32a32e8706", null ], - [ "CY_CAPSENSE_STATUS_HW_BUSY", "group__group__capsense__macros__status.html#gaedbe037a646fceb93087fb5737d9477a", null ], - [ "CY_CAPSENSE_STATUS_HW_LOCKED", "group__group__capsense__macros__status.html#gae73ebe440322cda669c2cdecd2296445", null ], - [ "CY_CAPSENSE_STATUS_CALIBRATION_FAIL", "group__group__capsense__macros__status.html#ga1dc4b760862d830170ca6a7a0f3847c4", null ], - [ "CY_CAPSENSE_STATUS_CALIBRATION_OVERFLOW", "group__group__capsense__macros__status.html#ga0efb73a86bce0609b8d1a0046ed01abe", null ], - [ "CY_CAPSENSE_STATUS_CALIBRATION_CHECK_FAIL", "group__group__capsense__macros__status.html#ga9f3803d22196b2817b13876dc40235e7", null ], - [ "CY_CAPSENSE_STATUS_BAD_CLOCK_CONFIG", "group__group__capsense__macros__status.html#ga481480b9c9d3b3ac244342cc3b6a3fb3", null ], - [ "CY_CAPSENSE_STATUS_UNKNOWN", "group__group__capsense__macros__status.html#ga6af4b561b0252573ec898b34624db5be", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__touch.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__touch.html deleted file mode 100644 index 4d1bc23b55..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__touch.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Touch-related Macros - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    Touch-related Macros
    -
    -
    -

    General Description

    -

    Touch-related macros.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_CAPSENSE_POSITION_NONE   (0x00u)
     No touch detected.
     
    -#define CY_CAPSENSE_POSITION_ONE   (0x01u)
     One finger touch detected.
     
    -#define CY_CAPSENSE_POSITION_TWO   (0x02u)
     Two finger touches detected.
     
    -#define CY_CAPSENSE_POSITION_THREE   (0x03u)
     Three finger touches detected.
     
    -#define CY_CAPSENSE_POSITION_MULTIPLE   (0xFFu)
     Multiple touches detected that exceed number of supported touches.
     
    -#define CY_CAPSENSE_MAX_CENTROIDS   (3u)
     Maximum possible centroid number.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS   (5u)
     Maximum number of peaks in CSX Touchpad.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_MAX_AGE   (0xFFu)
     Maximum age of a touch.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_ID_UNDEFINED   (0x80u)
     Undefined ID.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_ID_ABSENT   (0x40u)
     Non-assigned ID.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_ID_ON_FAIL   (0x20u)
     Touch below threshold ID.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_ID_MIN   (0u)
     Minimum ID.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_ID_MAX   (7u)
     Maximum ID.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_ID_MASK   (0x00FFu)
     ID mask.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_Z_MASK   (0x00FFu)
     Touch power mask.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_AGE_MASK   (0xFF00u)
     Age mask.
     
    -#define CY_CAPSENSE_CSX_TOUCHPAD_DEBOUNCE_MASK   (0xFF00u)
     Debounce mask.
     
    -#define CY_CAPSENSE_ADVANCED_CENTROID_NO_TOUCHES   (0x00u)
     No touch detected.
     
    -#define CY_CAPSENSE_ADVANCED_CENTROID_POSITION_ERROR   (0xFFu)
     An error in touch calculation or number of detected touches is above supported touches.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__touch.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__touch.js deleted file mode 100644 index 56f0ef0245..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__macros__touch.js +++ /dev/null @@ -1,22 +0,0 @@ -var group__group__capsense__macros__touch = -[ - [ "CY_CAPSENSE_POSITION_NONE", "group__group__capsense__macros__touch.html#ga72bcd596f6407f2c35cfe8d92a2a1f6d", null ], - [ "CY_CAPSENSE_POSITION_ONE", "group__group__capsense__macros__touch.html#ga00e138168b824ee9c4ecf2fa10e648a0", null ], - [ "CY_CAPSENSE_POSITION_TWO", "group__group__capsense__macros__touch.html#gaa448ccb1551eb0f38f12b1554c5287c4", null ], - [ "CY_CAPSENSE_POSITION_THREE", "group__group__capsense__macros__touch.html#ga84fe184256d5a95975dbdd25b7388f63", null ], - [ "CY_CAPSENSE_POSITION_MULTIPLE", "group__group__capsense__macros__touch.html#gaeda92492a42b009327153c1751a030c3", null ], - [ "CY_CAPSENSE_MAX_CENTROIDS", "group__group__capsense__macros__touch.html#ga4841683021756c1260950771ed54c841", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS", "group__group__capsense__macros__touch.html#ga3858658519030890061b252946477cd8", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_MAX_AGE", "group__group__capsense__macros__touch.html#ga3d55593bb10be928a44a179df5338cf1", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_ID_UNDEFINED", "group__group__capsense__macros__touch.html#gaec66ce283c819f7aaa44cf3886578e81", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_ID_ABSENT", "group__group__capsense__macros__touch.html#gabf7e655ae8cf71bb01a138f55718007c", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_ID_ON_FAIL", "group__group__capsense__macros__touch.html#ga41f9db75b066c5d862d822bea199fe2f", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_ID_MIN", "group__group__capsense__macros__touch.html#gaf79c640a09ef3915083d857011d9c70c", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_ID_MAX", "group__group__capsense__macros__touch.html#ga26736659b0a4f78ffb1dce945b232c04", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_ID_MASK", "group__group__capsense__macros__touch.html#gaa7c78d7d49c6c4e4ce668580f8f1a304", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_Z_MASK", "group__group__capsense__macros__touch.html#ga0649c5861207fdc959f5dc4b05ecfb97", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_AGE_MASK", "group__group__capsense__macros__touch.html#ga7666446ef2e080e96ad3583bb2a83391", null ], - [ "CY_CAPSENSE_CSX_TOUCHPAD_DEBOUNCE_MASK", "group__group__capsense__macros__touch.html#gaff1a4c6b9875c4c66cb1922952997f7b", null ], - [ "CY_CAPSENSE_ADVANCED_CENTROID_NO_TOUCHES", "group__group__capsense__macros__touch.html#ga357d64c36840893809b9fa325f9ad6d5", null ], - [ "CY_CAPSENSE_ADVANCED_CENTROID_POSITION_ERROR", "group__group__capsense__macros__touch.html#ga7178f206572f3066be919024efcd824f", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__structures.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__structures.html deleted file mode 100644 index 8e6398165a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__structures.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: Structures - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - - -
    -

    General Description

    -

    The CAPSENSE™ structures.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Structures

    struct  cy_stc_capsense_adaptive_filter_config_t
     Declares Adaptive Filter configuration parameters. More...
     
    struct  cy_stc_capsense_advanced_centroid_config_t
     Declares Advanced Centroid configuration parameters. More...
     
    struct  cy_stc_capsense_position_t
     Declares position structure that keep information of a single touch. More...
     
    struct  cy_stc_capsense_touch_t
     Declares touch structure used to store positions of Touchpad, Matrix buttons and Slider widgets. More...
     
    struct  cy_stc_capsense_auto_tune_config_t
     Declares HW smart sensing algorithm data structure for CSD widgets for fourth-generation CAPSENSE™. More...
     
    struct  cy_stc_capsense_hw_smartsense_config_t
     Declares HW smart sensing algorithm data structure for CSD widgets for fifth-generation CAPSENSE™. More...
     
    struct  cy_stc_capsense_smartsense_csd_noise_envelope_t
     Declares Noise envelope data structure for CSD widgets when smart sensing algorithm is enabled. More...
     
    struct  cy_stc_capsense_smartsense_update_thresholds_t
     Declares Update Thresholds structure. More...
     
    struct  cy_stc_capsense_ballistic_config_t
     Declares Ballistics Multiplier Configuration data structure. More...
     
    struct  cy_stc_capsense_ballistic_context_t
     Declares Ballistics Multiplier Configuration data structure. More...
     
    struct  cy_stc_capsense_ballistic_delta_t
     Declares Ballistic Displacement structure. More...
     
    struct  cy_stc_capsense_sensor_context_t
     Sensor context structure. More...
     
    struct  cy_stc_capsense_csx_touch_history_t
     CSX Touchpad touch tracking history. More...
     
    struct  cy_stc_capsense_csx_touch_buffer_t
     Internal CSX Touchpad buffer structure for CSX for Touchpads' processing. More...
     
    struct  cy_stc_capsense_widget_context_t
     Widget context structure. More...
     
    struct  cy_stc_capsense_pin_config_t
     Legacy mode pin configuration structure. More...
     
    struct  cy_stc_capsense_electrode_config_t
     Electrode objects configuration structure. More...
     
    struct  cy_stc_capsense_advanced_touchpad_config_t
     Configuration structure of advanced touchpad. More...
     
    struct  cy_stc_capsense_mptx_table_t
     Multi-phase TX table for de-convolution structure. More...
     
    struct  cy_stc_capsense_widget_config_t
     Widget configuration structure. More...
     
    struct  cy_stc_capsense_idac_gain_table_t
     Declares the IDAC gain table. More...
     
    struct  cy_stc_capsense_scan_slot_t
     Declares the scan order of widget and sensor. More...
     
    struct  cy_stc_msc_channel_config_t
     Declares MSC channel (HW block) configuration. More...
     
    struct  cy_stc_capsense_common_config_t
     Common configuration structure. More...
     
    struct  cy_stc_capsense_bist_context_t
     Declares BIST Context Data Structure. More...
     
    struct  cy_stc_capsense_bist_custom_parameters_t
     Declares the BIST structure with custom scan parameters. More...
     
    struct  cy_stc_active_scan_sns_t
     Declares active sensor details. More...
     
    struct  cy_stc_capsense_internal_context_t
     Declares internal Context Data Structure. More...
     
    struct  cy_stc_capsense_widget_crc_data_t
     Declares the structure that is intended to store the cy_stc_capsense_widget_context_t data structure fields, the CRC checking should be applied for. More...
     
    struct  cy_stc_capsense_common_context_t
     Declares top-level Context Data Structure. More...
     
    struct  cy_stc_capsense_context_t
     Declares top-level CAPSENSE™ context data structure. More...
     
    - - - - - - - - - - - - - - - - - - - -

    -Typedefs

    typedef uint32_t cy_capsense_status_t
     Unified return status of CAPSENSE™ operation: More...
     
    typedef uint32_t cy_capsense_mw_state_t
     Unified return state of CAPSENSE™ Middleware: More...
     
    -typedef void(* cy_capsense_callback_t) (cy_stc_active_scan_sns_t *ptrActiveScan)
     Provides the typedef for the callback function that is intended to be called when the cy_en_capsense_callback_event_t events occurs.
     
    typedef void(* cy_capsense_ds_init_callback_t) (void *context)
     Provides the typedef for the callback function that is called by the Cy_CapSense_Enable() function to change the CAPSENSE™ configuration from the default configuration to the user's specific use cases. More...
     
    typedef void(* cy_capsense_tuner_send_callback_t) (void *context)
     Provides the typedef for the callback function that is called by the Cy_CapSense_RunTuner() function to establish communication with the CAPSENSE™ Tuner tool to monitor CAPSENSE™ operation. More...
     
    typedef void(* cy_capsense_tuner_receive_callback_t) (uint8_t **commandPacket, uint8_t **tunerPacket, void *context)
     Provides the typedef for the callback function that is called by the Cy_CapSense_RunTuner() function to establish communication with the CAPSENSE™ Tuner tool to support life-time tuning. More...
     
    -

    Typedef Documentation

    - -

    ◆ cy_capsense_status_t

    - -
    -
    - - - - -
    typedef uint32_t cy_capsense_status_t
    -
    - -

    Unified return status of CAPSENSE™ operation:

    -
      -
    • CY_CAPSENSE_STATUS_SUCCESS
    • -
    • CY_CAPSENSE_STATUS_BAD_PARAM
    • -
    • CY_CAPSENSE_STATUS_BAD_DATA
    • -
    • CY_CAPSENSE_STATUS_TIMEOUT
    • -
    • CY_CAPSENSE_STATUS_INVALID_STATE
    • -
    • CY_CAPSENSE_STATUS_BAD_CONFIG
    • -
    • CY_CAPSENSE_STATUS_CONFIG_OVERFLOW
    • -
    • CY_CAPSENSE_STATUS_HW_BUSY
    • -
    • CY_CAPSENSE_STATUS_UNKNOWN
    • -
    - -
    -
    - -

    ◆ cy_capsense_mw_state_t

    - -
    -
    - - - - -
    typedef uint32_t cy_capsense_mw_state_t
    -
    - -

    Unified return state of CAPSENSE™ Middleware:

    -
      -
    • CY_CAPSENSE_MW_STATE_BIST_MASK - The BIST is in progress. The next scan frame cannot be started.
    • -
    • CY_CAPSENSE_MW_STATE_CALIBRATION_MASK - The auto-calibration is in progress. The next scan frame cannot be started.
    • -
    • CY_CAPSENSE_MW_STATE_SMARTSENSE_MASK - The smart sensing algorithm is in progress. The next scan frame cannot be started.
    • -
    • CY_CAPSENSE_MW_STATE_INITIALIZATION_MASK - Middleware initialization is in progress and a next scan frame can be initiated.
    • -
    • CY_CAPSENSE_MW_STATE_SCAN_SLOT_MASK[x] - The set [x] number of the result means that the previously initiated scan for the [x] slot is completed or in progress. In CS-DMA mode, this field is set only for the first scanned slot.
    • -
    - -
    -
    - -

    ◆ cy_capsense_ds_init_callback_t

    - -
    -
    - - - - -
    typedef void(* cy_capsense_ds_init_callback_t) (void *context)
    -
    - -

    Provides the typedef for the callback function that is called by the Cy_CapSense_Enable() function to change the CAPSENSE™ configuration from the default configuration to the user's specific use cases.

    -

    Refer to Callbacks section.

    -
    Note
    This callback function is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cy_capsense_tuner_send_callback_t

    - -
    -
    - - - - -
    typedef void(* cy_capsense_tuner_send_callback_t) (void *context)
    -
    - -

    Provides the typedef for the callback function that is called by the Cy_CapSense_RunTuner() function to establish communication with the CAPSENSE™ Tuner tool to monitor CAPSENSE™ operation.

    -

    Refer to Callbacks section.

    - -
    -
    - -

    ◆ cy_capsense_tuner_receive_callback_t

    - -
    -
    - - - - -
    typedef void(* cy_capsense_tuner_receive_callback_t) (uint8_t **commandPacket, uint8_t **tunerPacket, void *context)
    -
    - -

    Provides the typedef for the callback function that is called by the Cy_CapSense_RunTuner() function to establish communication with the CAPSENSE™ Tuner tool to support life-time tuning.

    -

    Refer to Callbacks section.

    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__structures.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__structures.js deleted file mode 100644 index 60e9857cb9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/group__group__capsense__structures.js +++ /dev/null @@ -1,602 +0,0 @@ -var group__group__capsense__structures = -[ - [ "cy_stc_capsense_adaptive_filter_config_t", "structcy__stc__capsense__adaptive__filter__config__t.html", [ - [ "maxK", "structcy__stc__capsense__adaptive__filter__config__t.html#a917e444f748280dc2e325f062600e878", null ], - [ "minK", "structcy__stc__capsense__adaptive__filter__config__t.html#a8202d5f56b17bd01a1957a05bea2f489", null ], - [ "noMovTh", "structcy__stc__capsense__adaptive__filter__config__t.html#ab838a235c299b6d9ea57bd3fc41568d8", null ], - [ "littleMovTh", "structcy__stc__capsense__adaptive__filter__config__t.html#abee594ea7f9a29ee29651de847e43f86", null ], - [ "largeMovTh", "structcy__stc__capsense__adaptive__filter__config__t.html#a61cd3ed526985b0b9d6c2a8a10e15c45", null ], - [ "divVal", "structcy__stc__capsense__adaptive__filter__config__t.html#a9a1c907add092d6754cb3d5669b26b19", null ], - [ "reserved0", "structcy__stc__capsense__adaptive__filter__config__t.html#aeac367c4efeec355b75e991a523dfba1", null ], - [ "reserved1", "structcy__stc__capsense__adaptive__filter__config__t.html#a7b4b8bb5ec1ed763d04cea68627b33f8", null ] - ] ], - [ "cy_stc_capsense_advanced_centroid_config_t", "structcy__stc__capsense__advanced__centroid__config__t.html", [ - [ "fingerTh", "structcy__stc__capsense__advanced__centroid__config__t.html#ab7f5ac133fa009e0999779d34ee0c59e", null ], - [ "penultimateTh", "structcy__stc__capsense__advanced__centroid__config__t.html#a72dadc2970371bea639b29a91a7f4ff5", null ], - [ "virtualSnsTh", "structcy__stc__capsense__advanced__centroid__config__t.html#a99998bdcb8adfc186748f5e8ecff0724", null ], - [ "resolutionX", "structcy__stc__capsense__advanced__centroid__config__t.html#af68f4b04172c275b6be6e12768dc7991", null ], - [ "resolutionY", "structcy__stc__capsense__advanced__centroid__config__t.html#a41e2b2272353ff198fca4fbe4397d9bd", null ], - [ "crossCouplingTh", "structcy__stc__capsense__advanced__centroid__config__t.html#a09416d6547439c3fd7ec944f3aa7893f", null ], - [ "snsCountX", "structcy__stc__capsense__advanced__centroid__config__t.html#a6516dd861d60a16f4542edd695e6411a", null ], - [ "snsCountY", "structcy__stc__capsense__advanced__centroid__config__t.html#a3ca2e3fdf2d68035f14bd1f67c50f9bd", null ], - [ "edgeCorrectionEn", "structcy__stc__capsense__advanced__centroid__config__t.html#a5101330723664b0878203d70729b0f81", null ], - [ "twoFingersEn", "structcy__stc__capsense__advanced__centroid__config__t.html#a541c1a949ee1bb818933bbb95f153ada", null ] - ] ], - [ "cy_stc_capsense_position_t", "structcy__stc__capsense__position__t.html", [ - [ "x", "structcy__stc__capsense__position__t.html#aaa333fb1aa5285e28ffdf6cc47248741", null ], - [ "y", "structcy__stc__capsense__position__t.html#a29b1ad8aeb8ab133b7696273fbdfa6cf", null ], - [ "z", "structcy__stc__capsense__position__t.html#a9a62c41da414fc72932fd1bcd8fbfc96", null ], - [ "id", "structcy__stc__capsense__position__t.html#ab5fb803657d04c35adc32a2685905e67", null ] - ] ], - [ "cy_stc_capsense_touch_t", "structcy__stc__capsense__touch__t.html", [ - [ "ptrPosition", "structcy__stc__capsense__touch__t.html#a41f4181caf21c8cc60825a4c88a952c6", null ], - [ "numPosition", "structcy__stc__capsense__touch__t.html#a06915bc608b7177c425659ab61d38513", null ] - ] ], - [ "cy_stc_capsense_auto_tune_config_t", "structcy__stc__capsense__auto__tune__config__t.html", [ - [ "sensorCap", "structcy__stc__capsense__auto__tune__config__t.html#a1d0e22bde6cc10e84ce2e37524486fc1", null ], - [ "iDacGain", "structcy__stc__capsense__auto__tune__config__t.html#aaa6b7ff2794e44d8f333ecf6048dd6f6", null ], - [ "ptrSenseClk", "structcy__stc__capsense__auto__tune__config__t.html#ad6aa32b14c98f74107b4230446e35fed", null ], - [ "sigPFC", "structcy__stc__capsense__auto__tune__config__t.html#a02620f92d5236d731cfd30c52b3881c5", null ], - [ "snsClkConstantR", "structcy__stc__capsense__auto__tune__config__t.html#a6ec095fe5aeb9289f98829815219ea37", null ], - [ "vRef", "structcy__stc__capsense__auto__tune__config__t.html#a50522d0350068cbfba0aeebaff115d9c", null ], - [ "fingerCap", "structcy__stc__capsense__auto__tune__config__t.html#a1cfd6c229a3feee37da2016b69128be8", null ], - [ "snsClkInputClock", "structcy__stc__capsense__auto__tune__config__t.html#a104c0df5a13ed859885dd8be3d274dc2", null ], - [ "calTarget", "structcy__stc__capsense__auto__tune__config__t.html#a48acefee1f92f23853cc7d58511327a2", null ], - [ "iDacMod", "structcy__stc__capsense__auto__tune__config__t.html#adbec8688c917a7a25a7cc4b14b1e49ed", null ], - [ "iDacComp", "structcy__stc__capsense__auto__tune__config__t.html#a7c937fca893ce53a81dd29d5541c2b75", null ] - ] ], - [ "cy_stc_capsense_hw_smartsense_config_t", "structcy__stc__capsense__hw__smartsense__config__t.html", [ - [ "snsCapacitance", "structcy__stc__capsense__hw__smartsense__config__t.html#ab468c0e00fd96979d2a47cadcb8d0d4c", null ], - [ "modClock", "structcy__stc__capsense__hw__smartsense__config__t.html#a79876e7ae4c8fd5941ba81d55f5dbcf1", null ], - [ "nSub0", "structcy__stc__capsense__hw__smartsense__config__t.html#a560e8916b9705aadf8e40ada836d20b1", null ], - [ "nSub1", "structcy__stc__capsense__hw__smartsense__config__t.html#a2a98613f09584619d05d12e233f6b7db", null ], - [ "raw", "structcy__stc__capsense__hw__smartsense__config__t.html#a1bd2b732a41c3fc740cc0ec395e7da69", null ], - [ "snsResistance", "structcy__stc__capsense__hw__smartsense__config__t.html#a2f7adbc38868c74a94f36b97e62e9827", null ], - [ "kRef0", "structcy__stc__capsense__hw__smartsense__config__t.html#ac994abd06182304e0f7b719d6227045c", null ], - [ "kRef1", "structcy__stc__capsense__hw__smartsense__config__t.html#aaa311c6f97cd552002d089d0cbee73c8", null ], - [ "fingerCap", "structcy__stc__capsense__hw__smartsense__config__t.html#a04fc4c86b50f4e4cde839b048b484b25", null ], - [ "sigPFC", "structcy__stc__capsense__hw__smartsense__config__t.html#a9df8e2b2dad78e69b5e78bc2a0451e62", null ], - [ "refCdac", "structcy__stc__capsense__hw__smartsense__config__t.html#a8112761c4d7f4e5b9b9ff988013a5b7c", null ], - [ "correctionCoeff", "structcy__stc__capsense__hw__smartsense__config__t.html#a8eaf48cf9b439edec69d4a1928789cf7", null ] - ] ], - [ "cy_stc_capsense_smartsense_csd_noise_envelope_t", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html", [ - [ "param0", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a05b74489afc68fe873e70519784f8763", null ], - [ "param1", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#aa946864ff892df81a594e217ceba1d55", null ], - [ "param2", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#abd13d4d25441135f993b97aa47e2c230", null ], - [ "param3", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a366c60ce71fcb0fce32659a16fa09e45", null ], - [ "param4", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a836e0975942aa929fabd0e74a8628e33", null ], - [ "param5", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#aa10ef391278327840a384056d062ae41", null ], - [ "param6", "structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a45d5c40b50ac10537e35b7e55dcc88f4", null ] - ] ], - [ "cy_stc_capsense_smartsense_update_thresholds_t", "structcy__stc__capsense__smartsense__update__thresholds__t.html", [ - [ "fingerTh", "structcy__stc__capsense__smartsense__update__thresholds__t.html#a87e1518bbd9d2c9745c1e51aee9e1380", null ], - [ "noiseTh", "structcy__stc__capsense__smartsense__update__thresholds__t.html#a6278afa4506e0f81410444bc8bd4ef6e", null ], - [ "nNoiseTh", "structcy__stc__capsense__smartsense__update__thresholds__t.html#a0e03cc2b5dcfb072e46e2d4a6afb2ef6", null ], - [ "hysteresis", "structcy__stc__capsense__smartsense__update__thresholds__t.html#a958e9740d154803f7fbf750862d8713c", null ] - ] ], - [ "cy_stc_capsense_ballistic_config_t", "structcy__stc__capsense__ballistic__config__t.html", [ - [ "accelCoeff", "structcy__stc__capsense__ballistic__config__t.html#af168ee9cd6deb06a3dd59c63cd63be27", null ], - [ "speedCoeff", "structcy__stc__capsense__ballistic__config__t.html#ad5992e4bc35b511b1d49699ead2d5d18", null ], - [ "divisorValue", "structcy__stc__capsense__ballistic__config__t.html#a847c20119361422daf67ca877c6ef456", null ], - [ "speedThresholdX", "structcy__stc__capsense__ballistic__config__t.html#ab4deccb79d0803f081e1283ee7006acd", null ], - [ "speedThresholdY", "structcy__stc__capsense__ballistic__config__t.html#adb09b97cfc40452a62b7cc4c92dda9a3", null ], - [ "reserved0", "structcy__stc__capsense__ballistic__config__t.html#af99a6dbf493de76f2c44a7e001075cd8", null ], - [ "reserved1", "structcy__stc__capsense__ballistic__config__t.html#a69d7a152771429f807f0fb2e3e34998b", null ], - [ "reserved2", "structcy__stc__capsense__ballistic__config__t.html#a51724cd248eff5076374e145950157d7", null ] - ] ], - [ "cy_stc_capsense_ballistic_context_t", "structcy__stc__capsense__ballistic__context__t.html", [ - [ "currentTimestamp", "structcy__stc__capsense__ballistic__context__t.html#a1bc85f04ebaefcabd217c5cd6edcd701", null ], - [ "oldTimestamp", "structcy__stc__capsense__ballistic__context__t.html#a38d8589f93a3bc5fa8fb53e5076d6da6", null ], - [ "deltaXfrac", "structcy__stc__capsense__ballistic__context__t.html#a8fe77855d41716420ecb5b8a6a4726d5", null ], - [ "deltaYfrac", "structcy__stc__capsense__ballistic__context__t.html#ada5af6548b412a22be7317001ceafa1d", null ], - [ "x", "structcy__stc__capsense__ballistic__context__t.html#ae07addb7a565119d5b2244a5bd64dde6", null ], - [ "y", "structcy__stc__capsense__ballistic__context__t.html#abadcc7e1af463b1668eb93183cb87252", null ], - [ "touchNumber", "structcy__stc__capsense__ballistic__context__t.html#a8b2a6fe6bc8bf68463bf94a93c7e3a2b", null ], - [ "oldTouchNumber", "structcy__stc__capsense__ballistic__context__t.html#a74a898f524e561622e4fb8d5b302fa77", null ], - [ "reserved0", "structcy__stc__capsense__ballistic__context__t.html#aaf3e7d3b18b2ecf51031b644db4292a3", null ], - [ "reserved1", "structcy__stc__capsense__ballistic__context__t.html#accd9ff41ad610ac269d04e3065af52c2", null ] - ] ], - [ "cy_stc_capsense_ballistic_delta_t", "structcy__stc__capsense__ballistic__delta__t.html", [ - [ "deltaX", "structcy__stc__capsense__ballistic__delta__t.html#a454e97190a56ea9075d1764b214203d9", null ], - [ "deltaY", "structcy__stc__capsense__ballistic__delta__t.html#a469d02345ffee521218243a7d2e61fb4", null ] - ] ], - [ "cy_stc_capsense_sensor_context_t", "structcy__stc__capsense__sensor__context__t.html", [ - [ "raw", "structcy__stc__capsense__sensor__context__t.html#a54bbaaded1ac1a6857ce84a996224ccc", null ], - [ "bsln", "structcy__stc__capsense__sensor__context__t.html#ae70bc85c4ea36acf3f7f24083ee12358", null ], - [ "diff", "structcy__stc__capsense__sensor__context__t.html#ae3a77556515876cf00e178ccc7cbd606", null ], - [ "status", "structcy__stc__capsense__sensor__context__t.html#ac0c3267b406b40d89fb8219b75536eee", null ], - [ "negBslnRstCnt", "structcy__stc__capsense__sensor__context__t.html#a0dfea7d7b4a9b3858a203a54df8bc3fc", null ], - [ "idacComp", "structcy__stc__capsense__sensor__context__t.html#a242877120ccdac585a0f001736fe7be2", null ], - [ "bslnExt", "structcy__stc__capsense__sensor__context__t.html#a00e13c949413eec88791b6b89215dc67", null ], - [ "cdacComp", "structcy__stc__capsense__sensor__context__t.html#ae79c13f9386a3a7e995dc63857eaa63c", null ] - ] ], - [ "cy_stc_capsense_csx_touch_history_t", "structcy__stc__capsense__csx__touch__history__t.html", [ - [ "velocity", "structcy__stc__capsense__csx__touch__history__t.html#a5a32e8b0644a7bc98f45a4b345188810", null ], - [ "oldPeak", "structcy__stc__capsense__csx__touch__history__t.html#a9cd73499eb9138949da6bd8812a654d1", null ], - [ "oldPeakNumber", "structcy__stc__capsense__csx__touch__history__t.html#aad62c7d9b921294d3caff02bcca10734", null ], - [ "oldActiveIdsMask", "structcy__stc__capsense__csx__touch__history__t.html#a673eaa945ec772627c954df63b42a89e", null ] - ] ], - [ "cy_stc_capsense_csx_touch_buffer_t", "structcy__stc__capsense__csx__touch__buffer__t.html", [ - [ "distanceMap", "structcy__stc__capsense__csx__touch__buffer__t.html#aea8ff4b04a46ed06f2e05ebdb85d2e7a", null ], - [ "colMap", "structcy__stc__capsense__csx__touch__buffer__t.html#a53be7999d05b8199561fad7160b0ff8a", null ], - [ "rowMap", "structcy__stc__capsense__csx__touch__buffer__t.html#a2235820c150af3e6594730e9031066de", null ], - [ "minsMap", "structcy__stc__capsense__csx__touch__buffer__t.html#a4478e1addf6cd6f858c74a742a76f79f", null ], - [ "newPeak", "structcy__stc__capsense__csx__touch__buffer__t.html#a8ede0076f02b01e43bdf7d01a90e5d8b", null ], - [ "fingerPosIndexMap", "structcy__stc__capsense__csx__touch__buffer__t.html#af4749658a6668c77f5ed0c326cf6308e", null ], - [ "linksMap", "structcy__stc__capsense__csx__touch__buffer__t.html#a7046ab5dc8799356f0cc4730c855ed4a", null ], - [ "visitedMap", "structcy__stc__capsense__csx__touch__buffer__t.html#a0c72b5063ccfa7e97c086c06d943ffc9", null ], - [ "markIndicesMap", "structcy__stc__capsense__csx__touch__buffer__t.html#a895f5397bf9d29ad2c0cbd4fadb111fe", null ], - [ "newPeakNumber", "structcy__stc__capsense__csx__touch__buffer__t.html#a497b8e96e84f765fc258f34f071aa999", null ], - [ "newActiveIdsMask", "structcy__stc__capsense__csx__touch__buffer__t.html#a9267df7cd343b44ee9dddfdf64a4e210", null ] - ] ], - [ "cy_stc_capsense_widget_context_t", "structcy__stc__capsense__widget__context__t.html", [ - [ "fingerCap", "structcy__stc__capsense__widget__context__t.html#aaddfea3cc416d040629708d1723c12f6", null ], - [ "sigPFC", "structcy__stc__capsense__widget__context__t.html#a818a66cb212ab10f9e4fb4f25a5b8a14", null ], - [ "resolution", "structcy__stc__capsense__widget__context__t.html#a68e0c56527b8e16513c149bfc5adb623", null ], - [ "maxRawCount", "structcy__stc__capsense__widget__context__t.html#a5bacc4b698a7982c3fb687a22b9e3287", null ], - [ "maxRawCountRow", "structcy__stc__capsense__widget__context__t.html#a8539aedfd64eb185aa738e8f7db03547", null ], - [ "fingerTh", "structcy__stc__capsense__widget__context__t.html#ab1730b817a861922f4375527d7a1d3b4", null ], - [ "proxTh", "structcy__stc__capsense__widget__context__t.html#ac28a8ad287f401bde36886e1995ebd5d", null ], - [ "lowBslnRst", "structcy__stc__capsense__widget__context__t.html#abcf89959f49d28d2d396d8beaae05710", null ], - [ "snsClk", "structcy__stc__capsense__widget__context__t.html#ac2c184d4476a32763d29fd3c1813d533", null ], - [ "rowSnsClk", "structcy__stc__capsense__widget__context__t.html#a2dd4e90d01407e1c2a0ed33f637e3b4f", null ], - [ "gestureDetected", "structcy__stc__capsense__widget__context__t.html#a1abcf6d1b22d6cc09006eb81576f81f6", null ], - [ "gestureDirection", "structcy__stc__capsense__widget__context__t.html#a1bd21ada41343af3e4102b85ab62edab", null ], - [ "xDelta", "structcy__stc__capsense__widget__context__t.html#a723b1a11630c801ad30546fd35cec715", null ], - [ "yDelta", "structcy__stc__capsense__widget__context__t.html#a869b23837236045aba13b4fbde082e95", null ], - [ "noiseTh", "structcy__stc__capsense__widget__context__t.html#abc7ea702d95e07827cb3f8b6d97aed8d", null ], - [ "nNoiseTh", "structcy__stc__capsense__widget__context__t.html#adc6e85b229b16fe88fed03b576f213cd", null ], - [ "hysteresis", "structcy__stc__capsense__widget__context__t.html#aa68dc0f3bc6719620eb8b98b0b8c9e43", null ], - [ "onDebounce", "structcy__stc__capsense__widget__context__t.html#a594bf2fb432dbeaa9b23545a9ff3d55a", null ], - [ "snsClkSource", "structcy__stc__capsense__widget__context__t.html#ab9a639859b9bb45518c041e37bfca15a", null ], - [ "idacMod", "structcy__stc__capsense__widget__context__t.html#a0af701de0ec391286d2df0ba67299b9d", null ], - [ "idacGainIndex", "structcy__stc__capsense__widget__context__t.html#aca335177119844084a40aab5a8e4022e", null ], - [ "rowIdacMod", "structcy__stc__capsense__widget__context__t.html#aa420c590b3aaccc2ba2666b5a75390f7", null ], - [ "bslnCoeff", "structcy__stc__capsense__widget__context__t.html#abc22672d34d27dc281a8401b7b94544f", null ], - [ "status", "structcy__stc__capsense__widget__context__t.html#ad7b0478d50436b8f1cdb982b5d731a68", null ], - [ "wdTouch", "structcy__stc__capsense__widget__context__t.html#a8278c09fe62e33e5e460f3064b90e614", null ], - [ "numSubConversions", "structcy__stc__capsense__widget__context__t.html#a722c7050783603a3796dc6e3ea6ed994", null ], - [ "cdacRef", "structcy__stc__capsense__widget__context__t.html#a1ca9544ef549d7fc214f7703efc596c7", null ], - [ "rowCdacRef", "structcy__stc__capsense__widget__context__t.html#a86df00e59d6d922a0e229694d24f7288", null ], - [ "cicRate", "structcy__stc__capsense__widget__context__t.html#ad9f98bd3c96b57f8da2246dbf30c697d", null ], - [ "cdacDitherEn", "structcy__stc__capsense__widget__context__t.html#a82a04a4c0dbb4de9fc2d5ae21ce943f3", null ], - [ "cdacDitherValue", "structcy__stc__capsense__widget__context__t.html#ab6edaa841fd57f6e920b1f796d7f8cf4", null ], - [ "coarseInitBypassEn", "structcy__stc__capsense__widget__context__t.html#af748f831b4efb44e9d1be8fb5242de7d", null ], - [ "cdacCompDivider", "structcy__stc__capsense__widget__context__t.html#a9af84926eb2b426096323ccb6bea68f8", null ], - [ "lfsrBits", "structcy__stc__capsense__widget__context__t.html#a722806ceec62995188beb928c08fa6f2", null ] - ] ], - [ "cy_stc_capsense_pin_config_t", "structcy__stc__capsense__pin__config__t.html", [ - [ "pcPtr", "structcy__stc__capsense__pin__config__t.html#a6e73d425b113f359b2d0911e44b36e62", null ], - [ "pinNumber", "structcy__stc__capsense__pin__config__t.html#a87a0da3c8c5c9f372c4bbfbdbf3498d7", null ], - [ "padNumber", "structcy__stc__capsense__pin__config__t.html#a6b042ec5a99e78c058418213b60621f5", null ], - [ "chId", "structcy__stc__capsense__pin__config__t.html#aa174ebb6a2d3ef3b8918b1065320599b", null ] - ] ], - [ "cy_stc_capsense_electrode_config_t", "structcy__stc__capsense__electrode__config__t.html", [ - [ "ptrPin", "structcy__stc__capsense__electrode__config__t.html#a2cdfd659151f2fc6d9e0f49aaa2058f7", null ], - [ "type", "structcy__stc__capsense__electrode__config__t.html#a3f987328f5df9cd9fe4f6b4daf80ec8e", null ], - [ "numPins", "structcy__stc__capsense__electrode__config__t.html#a2ff8c3a5d8d8bd2fe260cf353064f54e", null ], - [ "chId", "structcy__stc__capsense__electrode__config__t.html#a05da24520b2abe15d7d03d63f0590650", null ] - ] ], - [ "cy_stc_capsense_advanced_touchpad_config_t", "structcy__stc__capsense__advanced__touchpad__config__t.html", [ - [ "penultimateTh", "structcy__stc__capsense__advanced__touchpad__config__t.html#a990aa2b11b9bf7779a3de1eff80ded85", null ], - [ "virtualSnsTh", "structcy__stc__capsense__advanced__touchpad__config__t.html#ade2331205a63402295830fb1ed8bd3a7", null ], - [ "crossCouplingTh", "structcy__stc__capsense__advanced__touchpad__config__t.html#ad86060f2b4310c6150e555277c209791", null ], - [ "reserved0", "structcy__stc__capsense__advanced__touchpad__config__t.html#a76405d828e3531855ab1ae70668d76a6", null ], - [ "reserved1", "structcy__stc__capsense__advanced__touchpad__config__t.html#a64845aacc58c2a1007eace4832b5a362", null ], - [ "reserved2", "structcy__stc__capsense__advanced__touchpad__config__t.html#ab3ff0d6932c836ccb0b0e005578ef00c", null ] - ] ], - [ "cy_stc_capsense_mptx_table_t", "structcy__stc__capsense__mptx__table__t.html", [ - [ "vector", "structcy__stc__capsense__mptx__table__t.html#a98c4201904ce3acae1128bf0dffa8476", null ], - [ "deconvCoef", "structcy__stc__capsense__mptx__table__t.html#ae8ac82d905314c32e7ef37ab51def597", null ] - ] ], - [ "cy_stc_capsense_widget_config_t", "structcy__stc__capsense__widget__config__t.html", [ - [ "ptrWdContext", "structcy__stc__capsense__widget__config__t.html#adb558f384dcfa5fe3701f6c377b94da3", null ], - [ "ptrSnsContext", "structcy__stc__capsense__widget__config__t.html#aace32d41062b136d802d346231967ad5", null ], - [ "ptrEltdConfig", "structcy__stc__capsense__widget__config__t.html#a88a5166ff86cf001344434b0bb84d799", null ], - [ "ptrEltdCapacitance", "structcy__stc__capsense__widget__config__t.html#aeb69ac183634b05ecb92ab57e1b8feb9", null ], - [ "ptrSnsCapacitance", "structcy__stc__capsense__widget__config__t.html#a872610c19b274d4daa48c9d29990f7cc", null ], - [ "ptrBslnInv", "structcy__stc__capsense__widget__config__t.html#aa246164662305a0152b2736f56b67e5a", null ], - [ "ptrNoiseEnvelope", "structcy__stc__capsense__widget__config__t.html#a8cbf228dd4ae8a901c911c162c70b30a", null ], - [ "ptrRawFilterHistory", "structcy__stc__capsense__widget__config__t.html#a3b1c56df207169c04a05b7fa8833b0fc", null ], - [ "ptrRawFilterHistoryLow", "structcy__stc__capsense__widget__config__t.html#a9c3303699258fdb9e0a1c51ac8542370", null ], - [ "iirCoeff", "structcy__stc__capsense__widget__config__t.html#a3837d9686917c0fdfc96cadb261dbc03", null ], - [ "ptrDebounceArr", "structcy__stc__capsense__widget__config__t.html#aa353e792734db1ff3873175bb8e832b9", null ], - [ "ptrDiplexTable", "structcy__stc__capsense__widget__config__t.html#a6224ab7605e28404d786633b2c1c1f6b", null ], - [ "centroidConfig", "structcy__stc__capsense__widget__config__t.html#ad2825a42c272b5c46dbcb15a21ec913f", null ], - [ "xResolution", "structcy__stc__capsense__widget__config__t.html#adfae2ef0d4316555d1e3c54e39c4aeb5", null ], - [ "yResolution", "structcy__stc__capsense__widget__config__t.html#ae527a11d29c8deb400a6c2a58d677aee", null ], - [ "numSns", "structcy__stc__capsense__widget__config__t.html#ae61718f5e9f507beaff5d105e03659a0", null ], - [ "numCols", "structcy__stc__capsense__widget__config__t.html#af281dfdef5176c9db5e88cf162686ad4", null ], - [ "numRows", "structcy__stc__capsense__widget__config__t.html#a93e1fecbb0649d67dee102b1ef2cd1b8", null ], - [ "ptrPosFilterHistory", "structcy__stc__capsense__widget__config__t.html#a6136eead3f476c9c0d1d3fa1dfd8c189", null ], - [ "ptrCsxTouchHistory", "structcy__stc__capsense__widget__config__t.html#ac662c2d9016717ff89a9fd8c26c97c02", null ], - [ "ptrCsxTouchBuffer", "structcy__stc__capsense__widget__config__t.html#a35afcfaedb37e24127fa5642bab59b45", null ], - [ "ptrCsdTouchBuffer", "structcy__stc__capsense__widget__config__t.html#a8da5973b3062723df1b1ebf6b7f5bd86", null ], - [ "ptrGestureConfig", "structcy__stc__capsense__widget__config__t.html#a0f4c0e442a86b761a8a00cd76ecc83b5", null ], - [ "ptrGestureContext", "structcy__stc__capsense__widget__config__t.html#ad60be1a14aded108976eb2d66daac7f1", null ], - [ "ballisticConfig", "structcy__stc__capsense__widget__config__t.html#a5fc7dffe9f218833d42b73769d0e6965", null ], - [ "ptrBallisticContext", "structcy__stc__capsense__widget__config__t.html#ad510b796c693e08b4f4b8bf8f76c3fb5", null ], - [ "aiirConfig", "structcy__stc__capsense__widget__config__t.html#a44c45fc836a80c8fe858ab3d5133d751", null ], - [ "advConfig", "structcy__stc__capsense__widget__config__t.html#a94b1400ac7cf425e79664f4e19f54d0b", null ], - [ "posFilterConfig", "structcy__stc__capsense__widget__config__t.html#a477c8db37f2ff589fa1967272d1f5260", null ], - [ "rawFilterConfig", "structcy__stc__capsense__widget__config__t.html#a67d55b8afd94b5ff3de3587a4241c628", null ], - [ "senseMethod", "structcy__stc__capsense__widget__config__t.html#a417a8786dfe62d3940fd7d5e265b9e2e", null ], - [ "wdType", "structcy__stc__capsense__widget__config__t.html#a78fb9e1d1b8c8cdad2d4257f5881ddc2", null ], - [ "ptrMptxTable", "structcy__stc__capsense__widget__config__t.html#ab41fcb29baa28b2e59b25c2fb30f9e9c", null ], - [ "firstSlotId", "structcy__stc__capsense__widget__config__t.html#a87a81dc03b7e5a64d58ed7286765bd63", null ], - [ "numSlots", "structcy__stc__capsense__widget__config__t.html#a474207c2ce55e017800877298895cf53", null ], - [ "numChopCycles", "structcy__stc__capsense__widget__config__t.html#a4b355886a6abacc4fa1aa77423d092e6", null ], - [ "mptxOrder", "structcy__stc__capsense__widget__config__t.html#a4e01e290b3e719d1511464cc166466e9", null ], - [ "lfsrDitherLimit", "structcy__stc__capsense__widget__config__t.html#a445ca73990cf5d8d7eabf37dd3411267", null ], - [ "snsClkSourceAutoSelMode", "structcy__stc__capsense__widget__config__t.html#ad6f1c79005cc909bf91dc5f18ef9c695", null ], - [ "mfsConfig", "structcy__stc__capsense__widget__config__t.html#aa3e4f9fe91ed0dd44f74246ea10ad98e", null ] - ] ], - [ "cy_stc_capsense_idac_gain_table_t", "structcy__stc__capsense__idac__gain__table__t.html", [ - [ "gainReg", "structcy__stc__capsense__idac__gain__table__t.html#ad44c7d56219cb4db0e7aaaba7821fb40", null ], - [ "gainValue", "structcy__stc__capsense__idac__gain__table__t.html#ae0e27b2d2c7a17bde0d7ed7c00bd0074", null ] - ] ], - [ "cy_stc_capsense_scan_slot_t", "structcy__stc__capsense__scan__slot__t.html", [ - [ "wdId", "structcy__stc__capsense__scan__slot__t.html#af62581a007e94d23a25ecf891e2347af", null ], - [ "snsId", "structcy__stc__capsense__scan__slot__t.html#aa15549f34439186a6a055f883995c51d", null ] - ] ], - [ "cy_stc_msc_channel_config_t", "structcy__stc__msc__channel__config__t.html", [ - [ "ptrMscBase", "structcy__stc__msc__channel__config__t.html#a387172bfd70280a49f0fac22a1dec27a", null ], - [ "ptrMscContext", "structcy__stc__msc__channel__config__t.html#a905adbf5a145e25b55c922f39bcd66ed", null ], - [ "portCmod1", "structcy__stc__msc__channel__config__t.html#acaed92f654157ab395ea312cf85ce0af", null ], - [ "pinCmod1", "structcy__stc__msc__channel__config__t.html#ae838d730d95428e14496890968eabd09", null ], - [ "portCmod2", "structcy__stc__msc__channel__config__t.html#a5c874221db44d7f08ca2e659c4025e7d", null ], - [ "pinCmod2", "structcy__stc__msc__channel__config__t.html#a606d05fcbddc870daab3dc5d0e7b4f5c", null ], - [ "dmaWrChIndex", "structcy__stc__msc__channel__config__t.html#ac86892509bd5574480a67d459cdb9f8b", null ], - [ "dmaChainWrChIndex", "structcy__stc__msc__channel__config__t.html#a88bf57540e88d8a4fdf81e8ae19d952d", null ], - [ "dmaRdChIndex", "structcy__stc__msc__channel__config__t.html#ac8026a90b58820b2e621496847d83591", null ], - [ "dmaChainRdChIndex", "structcy__stc__msc__channel__config__t.html#a033754c3c8cbe3ef754684056f7f7154", null ] - ] ], - [ "cy_stc_capsense_common_config_t", "structcy__stc__capsense__common__config__t.html", [ - [ "cpuClkHz", "structcy__stc__capsense__common__config__t.html#a53051c09692058cebfe2d5a4faa935c8", null ], - [ "periClkHz", "structcy__stc__capsense__common__config__t.html#a885d6f703d5687e6585b929f61265f9c", null ], - [ "vdda", "structcy__stc__capsense__common__config__t.html#a04857de80018693091a81dce3b19bd66", null ], - [ "numPin", "structcy__stc__capsense__common__config__t.html#af1b66d5becece2209af864547ac16c65", null ], - [ "numSns", "structcy__stc__capsense__common__config__t.html#a21d3bc1dab9651fed220ebdfead85453", null ], - [ "numWd", "structcy__stc__capsense__common__config__t.html#a4b2745560f410d1a0dc70797aeec3fab", null ], - [ "csdEn", "structcy__stc__capsense__common__config__t.html#a7fddda182e82215e18769618b498357c", null ], - [ "csxEn", "structcy__stc__capsense__common__config__t.html#a816a9d211280fa1541cb9d79e790926d", null ], - [ "positionFilterEn", "structcy__stc__capsense__common__config__t.html#a0ff07b677d89662e56814ba7ef8d550f", null ], - [ "bistEn", "structcy__stc__capsense__common__config__t.html#a945e057e66cff3bcae327e897f3ef1a8", null ], - [ "periDividerType", "structcy__stc__capsense__common__config__t.html#ab1171e77b08743ec9cb1a0751f3a8a24", null ], - [ "periDividerIndex", "structcy__stc__capsense__common__config__t.html#af4c7933702ebe6de8d7a51ead347f8dc", null ], - [ "analogWakeupDelay", "structcy__stc__capsense__common__config__t.html#a625ca1e473af912530d0da3225e0ca40", null ], - [ "ssIrefSource", "structcy__stc__capsense__common__config__t.html#a0c80e26b5fe28518248152c5c9c6681a", null ], - [ "ssVrefSource", "structcy__stc__capsense__common__config__t.html#a9d4938569f715d511d5a92c65337903a", null ], - [ "proxTouchCoeff", "structcy__stc__capsense__common__config__t.html#af700535efc4ea5d745cad94153d1d9a6", null ], - [ "swSensorAutoResetEn", "structcy__stc__capsense__common__config__t.html#a16001bf367c6118143ff1ec3511646fb", null ], - [ "portCmodPadNum", "structcy__stc__capsense__common__config__t.html#a4176f5f4c3a0674e8db380c1cd53b077", null ], - [ "pinCmodPad", "structcy__stc__capsense__common__config__t.html#a5115d84073d7d01cb4885798dcd8e0eb", null ], - [ "portCshPadNum", "structcy__stc__capsense__common__config__t.html#a6f12b37bfb79c92ac49be9d9a10e1c85", null ], - [ "pinCshPad", "structcy__stc__capsense__common__config__t.html#affacfb2ff9e57a616462f673603d2da9", null ], - [ "portShieldPadNum", "structcy__stc__capsense__common__config__t.html#a0757058df63bf046d385f86f141235f2", null ], - [ "pinShieldPad", "structcy__stc__capsense__common__config__t.html#a408b1a89c4eb3f5aec4a24ba2d9942d2", null ], - [ "portVrefExtPadNum", "structcy__stc__capsense__common__config__t.html#acd41888daad97f1aa24dfbca213431a6", null ], - [ "pinVrefExtPad", "structcy__stc__capsense__common__config__t.html#aff2a6b86b567e1b1c7328dae74aa4c0d", null ], - [ "portCmodNum", "structcy__stc__capsense__common__config__t.html#ae11a796b0265b7de228505259d4b8a98", null ], - [ "idacGainTable", "structcy__stc__capsense__common__config__t.html#aa420b265a50ab175b9a0902bcc3a0b08", null ], - [ "ptrCsdBase", "structcy__stc__capsense__common__config__t.html#a314b8ab78e6a189daeb4d150d3f51512", null ], - [ "ptrCsdContext", "structcy__stc__capsense__common__config__t.html#a633cc2ca6a5528f5a82074e889287b1c", null ], - [ "portCmod", "structcy__stc__capsense__common__config__t.html#ab76476aba113baea0f471f559a36a99c", null ], - [ "portCsh", "structcy__stc__capsense__common__config__t.html#ab8b3fc9607ea9d6a5902e69f6fa555eb", null ], - [ "portCintA", "structcy__stc__capsense__common__config__t.html#a325bae184f92fdb4eface75f45491a0a", null ], - [ "portCintB", "structcy__stc__capsense__common__config__t.html#ae8e8c568ea38fc8fde93b2dadc5e83f9", null ], - [ "pinCmod", "structcy__stc__capsense__common__config__t.html#a552e76fb483b1aef4e079c6a08343622", null ], - [ "portCshNum", "structcy__stc__capsense__common__config__t.html#a72dcc792179198a2c8a7a92b38c5af15", null ], - [ "pinCsh", "structcy__stc__capsense__common__config__t.html#a1894d1621d3d0b85dcecb541580086b2", null ], - [ "pinCintA", "structcy__stc__capsense__common__config__t.html#a511bdf3dac96f6d21a99570a0d631a18", null ], - [ "pinCintB", "structcy__stc__capsense__common__config__t.html#ae19eb70caeeb497808e72757c4dc4d97", null ], - [ "csdShieldEn", "structcy__stc__capsense__common__config__t.html#ad8fa7f6bb76ee337e4c8650a105e30f4", null ], - [ "csdInactiveSnsConnection", "structcy__stc__capsense__common__config__t.html#abe52b6e2f195fc5f638808538c0c0df5", null ], - [ "csxInactiveSnsConnection", "structcy__stc__capsense__common__config__t.html#ab12b62511a5127255fe4c24775f5eaca", null ], - [ "csdShieldDelay", "structcy__stc__capsense__common__config__t.html#ae4bc5430219c2d2613941168464acc96", null ], - [ "csdVref", "structcy__stc__capsense__common__config__t.html#ab982977927531f92c5ac748fa316c06f", null ], - [ "csdRConst", "structcy__stc__capsense__common__config__t.html#a3023ed9a75800748f3af86571b42a5b0", null ], - [ "csdCTankShieldEn", "structcy__stc__capsense__common__config__t.html#a74c2e88f6c338ad404e26b6e11e5bbc7", null ], - [ "csdShieldNumPin", "structcy__stc__capsense__common__config__t.html#add23287dd34a8fdbf49d4e4bfaf9600a", null ], - [ "csdShieldSwRes", "structcy__stc__capsense__common__config__t.html#a9d116265ff9d889b1b76fa80ff292e32", null ], - [ "csdInitSwRes", "structcy__stc__capsense__common__config__t.html#adc75f58a3536e80f4aeddbd1b749ff7b", null ], - [ "csdChargeTransfer", "structcy__stc__capsense__common__config__t.html#a5e64ba40e4bc04161f1cfff08365b55b", null ], - [ "csdRawTarget", "structcy__stc__capsense__common__config__t.html#ab21e95353a8fa1abae498d2a110db030", null ], - [ "csdAutotuneEn", "structcy__stc__capsense__common__config__t.html#a46dabab191776af278a263e931f0c77b", null ], - [ "csdIdacAutocalEn", "structcy__stc__capsense__common__config__t.html#a2ba2ca9a903e0f7414351629b25f0e92", null ], - [ "csdIdacGainInitIndex", "structcy__stc__capsense__common__config__t.html#a50f450472fd4ff69bbfcc992cd1e0a03", null ], - [ "csdIdacAutoGainEn", "structcy__stc__capsense__common__config__t.html#a5302a149824787161c2695232b32c9fa", null ], - [ "csdCalibrationError", "structcy__stc__capsense__common__config__t.html#a83913223b272b76642a87af8b4e78153", null ], - [ "csdIdacMin", "structcy__stc__capsense__common__config__t.html#a4fbf20312d5350474cd3b1c6c90c1ce8", null ], - [ "csdIdacCompEn", "structcy__stc__capsense__common__config__t.html#a437d937b2f790a23c4009af497bd3e35", null ], - [ "csdFineInitTime", "structcy__stc__capsense__common__config__t.html#a937ca9a7b6a86c4eb8969b4ea1b9fa8f", null ], - [ "csdIdacRowColAlignEn", "structcy__stc__capsense__common__config__t.html#a3abde8bd7d00d217b698b202dcd2bb34", null ], - [ "csdMfsDividerOffsetF1", "structcy__stc__capsense__common__config__t.html#a2086ec7840bcff2a38a1f4dbc96297ee", null ], - [ "csdMfsDividerOffsetF2", "structcy__stc__capsense__common__config__t.html#ae84b54901b2a622357902f34444502ca", null ], - [ "csxRawTarget", "structcy__stc__capsense__common__config__t.html#aa5656822ae92239213960e8c8e8e5d8e", null ], - [ "csxIdacGainInitIndex", "structcy__stc__capsense__common__config__t.html#a0cd8747f6c21cb813ecd18edf9d54229", null ], - [ "csxRefGain", "structcy__stc__capsense__common__config__t.html#ac5354e52ee64d8d1afac351a9d8a0428", null ], - [ "csxIdacAutocalEn", "structcy__stc__capsense__common__config__t.html#a0bb810d87bef97c73582aeb5e44f86cc", null ], - [ "csxCalibrationError", "structcy__stc__capsense__common__config__t.html#a0be983572fd16014ccef16c90b3521e7", null ], - [ "csxFineInitTime", "structcy__stc__capsense__common__config__t.html#a5fc5e888dc56992a0c194b4c425a8a5d", null ], - [ "csxInitSwRes", "structcy__stc__capsense__common__config__t.html#aaa99b5e4cc5ed3211dc14941064a082a", null ], - [ "csxScanSwRes", "structcy__stc__capsense__common__config__t.html#a01c2adce03bd2616b2d1c7acd13a158d", null ], - [ "csxInitShieldSwRes", "structcy__stc__capsense__common__config__t.html#afde18fd9f1dfb9d859cd24ec0814a57c", null ], - [ "csxScanShieldSwRes", "structcy__stc__capsense__common__config__t.html#aa6917c3c8a71cb3c44e47cbe32742de5", null ], - [ "csxMfsDividerOffsetF1", "structcy__stc__capsense__common__config__t.html#a07e6050b71ba83dd4a5baf3e1380956f", null ], - [ "csxMfsDividerOffsetF2", "structcy__stc__capsense__common__config__t.html#a9b7eca3dd5ff0f135ce8785fa3fd4f2f", null ], - [ "ptrMscChConfig", "structcy__stc__capsense__common__config__t.html#ae5f422b32a1f49b3a3331f8705f90a08", null ], - [ "ptrDmacBase", "structcy__stc__capsense__common__config__t.html#aee1c6dd599cbc74658de7bdb4cf8290a", null ], - [ "ptrDmaWrChSnsCfgAddr", "structcy__stc__capsense__common__config__t.html#a43213bf328f0802f801aacfe4364b6af", null ], - [ "ptrDmaRdChSnsCfgAddr", "structcy__stc__capsense__common__config__t.html#a2281327eb63df5b14de55bec05f2bf42", null ], - [ "numEpiCycles", "structcy__stc__capsense__common__config__t.html#a2f0d703959ecf591d93fead29797ef0b", null ], - [ "numCoarseInitChargeCycles", "structcy__stc__capsense__common__config__t.html#aca02d6ad7d90825996c9c07a1c7e5656", null ], - [ "numCoarseInitSettleCycles", "structcy__stc__capsense__common__config__t.html#a3b5b13d1df8ccf3ee3cda514b76a1e2c", null ], - [ "numSlots", "structcy__stc__capsense__common__config__t.html#a9f6966abfdbf32eee5caa1ab8f69dc04", null ], - [ "csdShieldMode", "structcy__stc__capsense__common__config__t.html#abb79c58604dc20c98dcebda8ae1d9a1e", null ], - [ "sensorConnection", "structcy__stc__capsense__common__config__t.html#af1ac09b694a33a673b6212ff746e1405", null ], - [ "csdCdacAutocalEn", "structcy__stc__capsense__common__config__t.html#af753b92540958a90dc07a2056bf550e4", null ], - [ "csdRefCdacAutoEn", "structcy__stc__capsense__common__config__t.html#a90837672b37f5f4e86b553c4d53010b4", null ], - [ "csdCdacCompEn", "structcy__stc__capsense__common__config__t.html#a442673001f67deb01b06f0cc643bc8e5", null ], - [ "csdCdacCompDivAutoEn", "structcy__stc__capsense__common__config__t.html#a0e144be45499b5bcd7eb38261a6ee745", null ], - [ "csdCdacAutoCalibMin", "structcy__stc__capsense__common__config__t.html#a9b8bcc292bb98791b20cec38114b40bb", null ], - [ "csdRefCdacRowColumnAlignEn", "structcy__stc__capsense__common__config__t.html#ab311773c2afdf9dcf1fc58af15a0477d", null ], - [ "csxCdacAutocalEn", "structcy__stc__capsense__common__config__t.html#a419df7ab15c165f2f873aba9b16b227b", null ], - [ "csxRefCdacAutoEn", "structcy__stc__capsense__common__config__t.html#a8fbd6eca9f5700de8ebb37d349713c1b", null ], - [ "csxCdacCompEn", "structcy__stc__capsense__common__config__t.html#addb1546d6cdff43117f4da0929734756", null ], - [ "csxCdacCompDivAutoEn", "structcy__stc__capsense__common__config__t.html#af9ba05d0be74df2e9cf11fd2afb88670", null ], - [ "csxCdacAutoCalibMin", "structcy__stc__capsense__common__config__t.html#a545223c0a8916866fd9b00303112315e", null ], - [ "csxAutotuneEn", "structcy__stc__capsense__common__config__t.html#a9735de5888736467f085c85e66751366", null ], - [ "numProOffsetCycles", "structcy__stc__capsense__common__config__t.html#a4bf21a13ce2b0961682f6c4a27e2cab8", null ], - [ "proOffsetCdacComp", "structcy__stc__capsense__common__config__t.html#ac54e06d38473566cafcf6e7a735eafe4", null ], - [ "scanningMode", "structcy__stc__capsense__common__config__t.html#a24d346b99ac5c013f41b3189a2972a99", null ], - [ "mptxEn", "structcy__stc__capsense__common__config__t.html#a2232960a59428e457f1e8a6157aa76af", null ], - [ "chopPolarity", "structcy__stc__capsense__common__config__t.html#aaa7080d2cfb50d41a453421d668f5f7b", null ], - [ "cicFilterMode", "structcy__stc__capsense__common__config__t.html#aef1b0103bfeee576e0254d72a9ad0ab7", null ], - [ "numBadScans", "structcy__stc__capsense__common__config__t.html#ab8710c21be1223cfc8b6caf158bd50ff", null ], - [ "counterMode", "structcy__stc__capsense__common__config__t.html#a61b95b2bc4ed8eee7ba9f8e02aded59d", null ], - [ "syncFrameStartEn", "structcy__stc__capsense__common__config__t.html#a81f8d65e5d8e38368a8c8afd643a1f5b", null ], - [ "syncClockEn", "structcy__stc__capsense__common__config__t.html#a1a7933f4724093478a9434d5a7442aac", null ], - [ "syncMode", "structcy__stc__capsense__common__config__t.html#aec6656386d576886a6f2d1d1b6c3f681", null ], - [ "masterChannelId", "structcy__stc__capsense__common__config__t.html#a83193308eed26797a1ea8c9316a1614a", null ], - [ "numChips", "structcy__stc__capsense__common__config__t.html#a20803ca9cbfacbfe4c29e604e4b2721f", null ], - [ "numChannels", "structcy__stc__capsense__common__config__t.html#a192101f96101897abb7ab8a0767532ad", null ], - [ "channelOffset", "structcy__stc__capsense__common__config__t.html#af4ae13ecd0378411c29e1c611f7a1adc", null ] - ] ], - [ "cy_stc_capsense_bist_context_t", "structcy__stc__capsense__bist__context__t.html", [ - [ "hwConfig", "structcy__stc__capsense__bist__context__t.html#a9bbdef6eb05a232f7086011dbea72715", null ], - [ "currentISC", "structcy__stc__capsense__bist__context__t.html#a5ec842573f2642d54e2d76c26556d674", null ], - [ "shieldCapISC", "structcy__stc__capsense__bist__context__t.html#a8e6f44610a21e97402349e14d6c090d1", null ], - [ "eltdCapCsdISC", "structcy__stc__capsense__bist__context__t.html#a22d5181fd636a7ff20a47559140e1e39", null ], - [ "eltdCapCsxISC", "structcy__stc__capsense__bist__context__t.html#a6370446fb7f72be84768cb8fb68c7375", null ], - [ "intrEltdCapShieldISC", "structcy__stc__capsense__bist__context__t.html#af75d6d1eea62a6f89d6d812cd6488252", null ], - [ "intrEltdCapCsdISC", "structcy__stc__capsense__bist__context__t.html#ac61c103d20cb691984135ab15b7c7a24", null ], - [ "intrEltdCapCsxISC", "structcy__stc__capsense__bist__context__t.html#a5f7f79777ce7fb2bcd270d1001a7f932", null ], - [ "testResultMask", "structcy__stc__capsense__bist__context__t.html#a85203f9070ae007e98d8e86b716ea971", null ], - [ "shieldCap", "structcy__stc__capsense__bist__context__t.html#ad9d7572ae68f02fff90133e676cc1bdb", null ], - [ "ptrChShieldCap", "structcy__stc__capsense__bist__context__t.html#a613da7b7df71cbc3d2405eaf4d4df3e9", null ], - [ "eltdCapSnsClkFreqHz", "structcy__stc__capsense__bist__context__t.html#a3fecccd03e56148f208e64836aa070b4", null ], - [ "ptrWdgtCrc", "structcy__stc__capsense__bist__context__t.html#af1dcb8fad4599fa893c49f69abac5724", null ], - [ "wdgtCrcCalc", "structcy__stc__capsense__bist__context__t.html#a21a8e2f2c74ad54372244ad94f9245b5", null ], - [ "eltdCapModClk", "structcy__stc__capsense__bist__context__t.html#a331645cdb0494af471f9bdd735ede166", null ], - [ "eltdCapSnsClk", "structcy__stc__capsense__bist__context__t.html#a6b8b7d2d90ea3d1dde78f8cea3f7f40c", null ], - [ "eltdCapSenseGroup", "structcy__stc__capsense__bist__context__t.html#a0c9e63a331fdb827a3eae43e735aa3cb", null ], - [ "crcWdgtId", "structcy__stc__capsense__bist__context__t.html#a8a26753c42ea1a7f25a5018246c6d941", null ], - [ "snsIntgShortSettlingTime", "structcy__stc__capsense__bist__context__t.html#a5b5122344f3fac96dd7ba538eff80298", null ], - [ "shortedWdId", "structcy__stc__capsense__bist__context__t.html#a4d106f872eeea02719e146b4427c1d18", null ], - [ "shortedSnsId", "structcy__stc__capsense__bist__context__t.html#aefc11745803885a1b87cc4017288d7fa", null ], - [ "regSwHsPSelScan", "structcy__stc__capsense__bist__context__t.html#ae9b8e85cb52436b653b5e7d1fb1e5133", null ], - [ "regSwHsPSelCmodInit", "structcy__stc__capsense__bist__context__t.html#a8e341ec1a291ce5bc030fcf60610fca9", null ], - [ "regSwHsPSelCtankInit", "structcy__stc__capsense__bist__context__t.html#a338ca675ef90b7fdb80ab9a95eba5f8d", null ], - [ "regSwDsiSel", "structcy__stc__capsense__bist__context__t.html#ac8babb76107f68ffc3b92736fb5f3a72", null ], - [ "regSwShieldSelScan", "structcy__stc__capsense__bist__context__t.html#af8eeec145da8af1555e3bea62c8a2b6a", null ], - [ "regSwResInit", "structcy__stc__capsense__bist__context__t.html#a20d613bddf0e9ea1dcb6196a579ce414", null ], - [ "regSwResScan", "structcy__stc__capsense__bist__context__t.html#ade86e6ef5b7e98386370aa2c567ee60e", null ], - [ "regSwBypSel", "structcy__stc__capsense__bist__context__t.html#a3aeb8661cd85b1aa2f266cee60be0240", null ], - [ "regSwAmuxbufSel", "structcy__stc__capsense__bist__context__t.html#a8e0f79069bf4362e97a1fb82d0166bb6", null ], - [ "regAmbuf", "structcy__stc__capsense__bist__context__t.html#ae8f8770f51182beb960139917bceb6e3", null ], - [ "regHscmpScan", "structcy__stc__capsense__bist__context__t.html#ac44249ae8e20f8dfb19e42566fad97d0", null ], - [ "regSwRefgenSel", "structcy__stc__capsense__bist__context__t.html#a8d0e2a3ef5a233e8da6471eedd227f08", null ], - [ "regConfig", "structcy__stc__capsense__bist__context__t.html#ae5f47666b04bc546cc716cd77c00446b", null ], - [ "regIoSel", "structcy__stc__capsense__bist__context__t.html#aad9f6bc6d2d8f7e2e9843a0013c43f55", null ], - [ "regAmbufShield", "structcy__stc__capsense__bist__context__t.html#a2ab8cac868956282420db3b54a7e0978", null ], - [ "regHscmpScanShield", "structcy__stc__capsense__bist__context__t.html#ad6fcce2910023a51b7f479a62d0b12ce", null ], - [ "regSwShieldSelScanShield", "structcy__stc__capsense__bist__context__t.html#ac1503ac45a53e4be199d38ed77fee26f", null ], - [ "regSwHsPSelScanShield", "structcy__stc__capsense__bist__context__t.html#a25926bffe9b5af767f6db69988b7a506", null ], - [ "regSwBypSelShield", "structcy__stc__capsense__bist__context__t.html#a68ebea3b267bf015d1e9e9802693a1c7", null ], - [ "regSwAmuxbufSelShield", "structcy__stc__capsense__bist__context__t.html#a82f8b8b8d650377c292bd35b4188f070", null ], - [ "regConfigShield", "structcy__stc__capsense__bist__context__t.html#a1ab075dfb6504435139ec6b7bf68a42b", null ], - [ "regIoSelShield", "structcy__stc__capsense__bist__context__t.html#a20a4beb0abe24168be77ad9072590b57", null ], - [ "extCapIdacPa", "structcy__stc__capsense__bist__context__t.html#a02ec16251b0f3ad575db0d179f879c87", null ], - [ "extCapModClk", "structcy__stc__capsense__bist__context__t.html#a8ffe130298947c266c56ddfdd64f8420", null ], - [ "extCapSnsClk", "structcy__stc__capsense__bist__context__t.html#a35acc7ff82625d0f4ddd9e3c020ee406", null ], - [ "extCapWDT", "structcy__stc__capsense__bist__context__t.html#a71c6e39161ae61c940eb57c948efbf3c", null ], - [ "extCapVrefMv", "structcy__stc__capsense__bist__context__t.html#a64ff2a0e0441bb1d7c9c1062283e897b", null ], - [ "cModCap", "structcy__stc__capsense__bist__context__t.html#a5456d1702855400f82a5e896cf426583", null ], - [ "cIntACap", "structcy__stc__capsense__bist__context__t.html#a0844067d1e2f03296d01c0946542673f", null ], - [ "cIntBCap", "structcy__stc__capsense__bist__context__t.html#a5c87c14d0ef2d932eeb01a53eb77501b", null ], - [ "cShieldCap", "structcy__stc__capsense__bist__context__t.html#ad6d854327c533a7e1c2eb625a02dd8cb", null ], - [ "capacitorSettlingTime", "structcy__stc__capsense__bist__context__t.html#a2adb7abe65479371b8474bed393b719b", null ], - [ "vddaVoltage", "structcy__stc__capsense__bist__context__t.html#acae5fb65a370e8e1c14d13c2da578f12", null ], - [ "vddaModClk", "structcy__stc__capsense__bist__context__t.html#aa97a347c3230f3b8227df50a734e487c", null ], - [ "vddaVrefMv", "structcy__stc__capsense__bist__context__t.html#a596d6e49bff364072a0ab877e14c90d5", null ], - [ "eltdCapVrefMv", "structcy__stc__capsense__bist__context__t.html#a00a9b297c1710c64237e41cf65b52dd4", null ], - [ "eltdCapResolution", "structcy__stc__capsense__bist__context__t.html#a234d9c4330bd5e4f6eaf0241d9b7da01", null ], - [ "vddaIdacDefault", "structcy__stc__capsense__bist__context__t.html#aa06208613dd9f24d6e61d762b57b7d5a", null ], - [ "vddaAzCycles", "structcy__stc__capsense__bist__context__t.html#a069d1684c20cb8b73c04c4c5c109773e", null ], - [ "vddaAcqCycles", "structcy__stc__capsense__bist__context__t.html#a5d877d6bd67e8cf57bcb411cbf684abe", null ], - [ "fineInitTime", "structcy__stc__capsense__bist__context__t.html#a5fc71d7b28788af5ec71a5e45c8ccf8e", null ], - [ "eltdCapVrefGain", "structcy__stc__capsense__bist__context__t.html#a2acbf7fcbd54f316d5ed0cd6f0be6748", null ], - [ "vddaVrefGain", "structcy__stc__capsense__bist__context__t.html#ada60c4a93a43cb77e509556a97962655", null ], - [ "extCapVrefGain", "structcy__stc__capsense__bist__context__t.html#af41b354a7c567232a7572a73ed0bc5b9", null ], - [ "curPtrEltdCfg", "structcy__stc__capsense__bist__context__t.html#a76db306b09b761ca50592ed7bda6d703", null ], - [ "eltdInactiveDm", "structcy__stc__capsense__bist__context__t.html#a7d5b5f1ee829b5f6efb84087d85c52f7", null ], - [ "eltdInactiveHsiom", "structcy__stc__capsense__bist__context__t.html#a5216364c35b222d89751930d8eec0050", null ], - [ "curBistSlotId", "structcy__stc__capsense__bist__context__t.html#aa4ca425d2df888cd993350dad4508068", null ], - [ "eltdCapSubConvNum", "structcy__stc__capsense__bist__context__t.html#a870579effe976006517e80af1bcc477d", null ], - [ "eltdCapNumEpiCycles", "structcy__stc__capsense__bist__context__t.html#ad088d340194dd87d2bf6eedbb35704c3", null ], - [ "eltdCapNumCoarseInitChargeCycles", "structcy__stc__capsense__bist__context__t.html#a55e98b35113dc48452e9abfb141630fb", null ], - [ "eltdCapNumCoarseInitSettleCycles", "structcy__stc__capsense__bist__context__t.html#a328937ede13f24976b5da9cbfd199850", null ], - [ "eltdCapNumFineInitWaitCycles", "structcy__stc__capsense__bist__context__t.html#a318f6d95e0876a729148b7329afb133b", null ], - [ "eltdCapNumFineInitCycles", "structcy__stc__capsense__bist__context__t.html#ad94089c4e62e6ea3eba8083fd7153e71", null ], - [ "eltdCapRefCdac", "structcy__stc__capsense__bist__context__t.html#a2216e6fded31e9f57f46da1ea33f2502", null ], - [ "curBistChId", "structcy__stc__capsense__bist__context__t.html#aa8ba6858f7d0f4b24360398e483a1042", null ], - [ "skipChannelMask", "structcy__stc__capsense__bist__context__t.html#a14373485d1d094cce5897260b380d3a1", null ], - [ "eltdCapScanMode", "structcy__stc__capsense__bist__context__t.html#a68f923d9a58298b9df352b6a275425ae", null ] - ] ], - [ "cy_stc_capsense_bist_custom_parameters_t", "structcy__stc__capsense__bist__custom__parameters__t.html", [ - [ "modClk", "structcy__stc__capsense__bist__custom__parameters__t.html#aafb50e8ce6fad46c3a8b0224ce1714b6", null ], - [ "snsClk", "structcy__stc__capsense__bist__custom__parameters__t.html#aa9db7044638f1e6ee7a56a850f31d67d", null ], - [ "convNum", "structcy__stc__capsense__bist__custom__parameters__t.html#a064aef0add09fe3405402613b9195060", null ], - [ "customISC", "structcy__stc__capsense__bist__custom__parameters__t.html#a0454367cc4a77a7e20a1864fa3d3e5f3", null ], - [ "reserved0", "structcy__stc__capsense__bist__custom__parameters__t.html#a1891b4360a526d25c2b6d2966fdba5be", null ], - [ "vrefGain", "structcy__stc__capsense__bist__custom__parameters__t.html#aa24f7a01ccebf1ad20e600ca27565eac", null ], - [ "idacMod", "structcy__stc__capsense__bist__custom__parameters__t.html#ada4f2a1109cc40af7ad1455e67252153", null ], - [ "idacGainIndex", "structcy__stc__capsense__bist__custom__parameters__t.html#a60c9a9e518194f83bd0bba955066474f", null ], - [ "fineInitTime", "structcy__stc__capsense__bist__custom__parameters__t.html#a73d52513a1573f6fe1ad64ed47956660", null ] - ] ], - [ "cy_stc_active_scan_sns_t", "structcy__stc__active__scan__sns__t.html", [ - [ "ptrWdConfig", "structcy__stc__active__scan__sns__t.html#ab57fc4e1bdf74350bf3c6a701ad3c56a", null ], - [ "ptrWdContext", "structcy__stc__active__scan__sns__t.html#a81beffc93033c90901da1f8debfbd59c", null ], - [ "scanScope", "structcy__stc__active__scan__sns__t.html#a6ad0b697f5e856d2436d402f085fbd86", null ], - [ "mfsChannelIndex", "structcy__stc__active__scan__sns__t.html#abb24deb10dc9b5f7e654cdcd0916938b", null ], - [ "rxIndex", "structcy__stc__active__scan__sns__t.html#a35dbb63147b6c493bed49f7bdfc7819d", null ], - [ "txIndex", "structcy__stc__active__scan__sns__t.html#aef1caed388c9d1fb076e710ab7db49a4", null ], - [ "ptrEltdConfig", "structcy__stc__active__scan__sns__t.html#abc6f5af6f05f765faaca0aa5f4d9da40", null ], - [ "ptrRxConfig", "structcy__stc__active__scan__sns__t.html#ada5061a0a2b46e3bff3553d98644c041", null ], - [ "ptrTxConfig", "structcy__stc__active__scan__sns__t.html#a9cceebad50f0ca6d92bbfc2408d2c21a", null ], - [ "ptrSnsContext", "structcy__stc__active__scan__sns__t.html#aeb8898be429a7205311694ac340b0d2e", null ], - [ "currentChannelSlotIndex", "structcy__stc__active__scan__sns__t.html#ab8243ea0223f5e51f7466138dcf83f76", null ], - [ "sensorIndex", "structcy__stc__active__scan__sns__t.html#af779789a94df30c50548991176f02a10", null ], - [ "widgetIndex", "structcy__stc__active__scan__sns__t.html#a3976b21c01b88709fb4c641d147a95ba", null ], - [ "currentSenseMethod", "structcy__stc__active__scan__sns__t.html#a623c26b8d6deb2025f4a4ae186bdb8b5", null ], - [ "connectedSnsState", "structcy__stc__active__scan__sns__t.html#a2bdf357c40aa4a699ed2c3dc929a32d3", null ] - ] ], - [ "cy_stc_capsense_internal_context_t", "structcy__stc__capsense__internal__context__t.html", [ - [ "intrCsdInactSnsConn", "structcy__stc__capsense__internal__context__t.html#ac5af80cd4336ff0a3ca1e4b3a94c2343", null ], - [ "intrCsxInactSnsConn", "structcy__stc__capsense__internal__context__t.html#a1b23217340d393196be42de9c458aec8", null ], - [ "csdInactiveSnsDm", "structcy__stc__capsense__internal__context__t.html#a2f898bf4518847f17b47956a335f6353", null ], - [ "csdInactiveSnsHsiom", "structcy__stc__capsense__internal__context__t.html#a911c7ad42212f5ebc0d82849c27b6e04", null ], - [ "csxInactiveSnsDm", "structcy__stc__capsense__internal__context__t.html#aea56a94ce27860b10e2aa32ccd52df2c", null ], - [ "csxInactiveSnsHsiom", "structcy__stc__capsense__internal__context__t.html#aeb5c1fe75ad52183139cae88db666c6f", null ], - [ "ptrSSCallback", "structcy__stc__capsense__internal__context__t.html#a616c1452d2ed85c13614910d63a9a513", null ], - [ "ptrEOSCallback", "structcy__stc__capsense__internal__context__t.html#afc29de83d66b588443581455aaf5c2de", null ], - [ "ptrTunerSendCallback", "structcy__stc__capsense__internal__context__t.html#a76c03a3f16ce28d70d2cfe61a6fcb459", null ], - [ "ptrTunerReceiveCallback", "structcy__stc__capsense__internal__context__t.html#a84250135c81d689ac1d977faafb37f49", null ], - [ "ptrISRCallback", "structcy__stc__capsense__internal__context__t.html#a686901c142a968b7e0cc0299839fefef", null ], - [ "csdRegConfig", "structcy__stc__capsense__internal__context__t.html#a904304439ab60e08be051b7f3d41e44d", null ], - [ "csdRegSwHsPSelScan", "structcy__stc__capsense__internal__context__t.html#a589c74e9be04b3416fadad444150da66", null ], - [ "csdRegSwHsPSelCmodInit", "structcy__stc__capsense__internal__context__t.html#af19d498cb29cbaa134653395eafd7ec6", null ], - [ "csdRegSwHsPSelCtankInit", "structcy__stc__capsense__internal__context__t.html#ad2aeacf04ec2d90fa491b0eef451010a", null ], - [ "csdRegSwBypSel", "structcy__stc__capsense__internal__context__t.html#a41e9700e4d9869a223efa4fb8c208011", null ], - [ "csdRegSwResScan", "structcy__stc__capsense__internal__context__t.html#a85cb2b96016d55f3df77b52e9f8a326f", null ], - [ "csdRegSwResInit", "structcy__stc__capsense__internal__context__t.html#aa6a2613fbe056600e359d10d3865c723", null ], - [ "csdRegSwDsiSel", "structcy__stc__capsense__internal__context__t.html#a988ff22fa06616b19a39c39d169a02f0", null ], - [ "csdRegAmuxbufInit", "structcy__stc__capsense__internal__context__t.html#a6c28b93814ffaa55e6fb872700b4ca39", null ], - [ "csdRegSwAmuxbufSel", "structcy__stc__capsense__internal__context__t.html#a19d99d39617a9c0e0282028ddd1ba2fe", null ], - [ "csdRegSwShieldSelScan", "structcy__stc__capsense__internal__context__t.html#a0319bc9875f2c2f7cd7eea16cd17b8c2", null ], - [ "csdRegHscmpInit", "structcy__stc__capsense__internal__context__t.html#a449bf02b29d79cf2a38e8681041d5552", null ], - [ "csdRegHscmpScan", "structcy__stc__capsense__internal__context__t.html#a9b8255706a4d3e0206a7afdbd4373c94", null ], - [ "csdIdacAConfig", "structcy__stc__capsense__internal__context__t.html#aa322ece65334e5f6bdc305e196c174e4", null ], - [ "csdIdacBConfig", "structcy__stc__capsense__internal__context__t.html#a60ad882d18e3b4c5ce1137b158ad3676", null ], - [ "csdRegSwCmpPSel", "structcy__stc__capsense__internal__context__t.html#a67205084e46e007d0a6d4c8811047845", null ], - [ "csdRegSwCmpNSel", "structcy__stc__capsense__internal__context__t.html#a14ee87b414f48d9a8c70c11032c823f0", null ], - [ "csdRegIoSel", "structcy__stc__capsense__internal__context__t.html#a69a75b1f9b0b9ee96d91fec2150e0b2e", null ], - [ "csdRegRefgen", "structcy__stc__capsense__internal__context__t.html#aea1919ff206aa3b96e18e0f584b41e23", null ], - [ "csdRegSwRefGenSel", "structcy__stc__capsense__internal__context__t.html#afc2655e619b06ba8b961a434b14d30d1", null ], - [ "csxRegConfigInit", "structcy__stc__capsense__internal__context__t.html#a4769ef311a77513a99e8aa77ae0be92e", null ], - [ "csxRegConfigScan", "structcy__stc__capsense__internal__context__t.html#a6af1dd5754837d8be8da11a72241cc15", null ], - [ "csxRegSwResInit", "structcy__stc__capsense__internal__context__t.html#a1f11ddec8ecd0a2aed8347d237e5495f", null ], - [ "csxRegSwResPrech", "structcy__stc__capsense__internal__context__t.html#a0c1d55db8fd5b06a7f94d7ce8fa74966", null ], - [ "csxRegSwResScan", "structcy__stc__capsense__internal__context__t.html#a4a22eb64852220cd5ca1197e384dd737", null ], - [ "csxRegAMuxBuf", "structcy__stc__capsense__internal__context__t.html#a930ea5e7b3a0ab55e3d245a4c7fcaa44", null ], - [ "csxRegRefgen", "structcy__stc__capsense__internal__context__t.html#a43ebfc2e417b5727b9968f3a9f9d5446", null ], - [ "csxRegRefgenSel", "structcy__stc__capsense__internal__context__t.html#a1aae8b3da9ccfdc7af195dc760390588", null ], - [ "csxRegSwCmpNSel", "structcy__stc__capsense__internal__context__t.html#afdca09ebf3e847d35b4175a20761b09b", null ], - [ "csxRegSwRefGenSel", "structcy__stc__capsense__internal__context__t.html#af4fab337c4d3a776ad5aacf47da8c31f", null ], - [ "csdCmodConnection", "structcy__stc__capsense__internal__context__t.html#a52536fed664d3fc02213044a637d9d80", null ], - [ "csdCshConnection", "structcy__stc__capsense__internal__context__t.html#a3a30b3c133e73edbb7247dde94b8cfd9", null ], - [ "csdVrefGain", "structcy__stc__capsense__internal__context__t.html#a4973e3bb2c5cf514f7950d7bf44268cc", null ], - [ "csdVrefVoltageMv", "structcy__stc__capsense__internal__context__t.html#a30c3792b5d6a3df45fe801712fae87d4", null ], - [ "ptrEODsInitCallback", "structcy__stc__capsense__internal__context__t.html#afb45bb27c6e9ad4f0dc543e3ef55f688", null ], - [ "snsCtlReg", "structcy__stc__capsense__internal__context__t.html#a28352e11f481d2a39d6a4b0cd5ba5da9", null ], - [ "numEpiCycles", "structcy__stc__capsense__internal__context__t.html#afb832cb1027389199a0a623eac3af95a", null ], - [ "numCoarseInitChargeCycles", "structcy__stc__capsense__internal__context__t.html#a8039192ef3f4f1c6b01788d8a5aeb460", null ], - [ "numCoarseInitSettleCycles", "structcy__stc__capsense__internal__context__t.html#a950bbe3fc6f914895044e6dd83833340", null ], - [ "numFineInitWaitCycles", "structcy__stc__capsense__internal__context__t.html#a00823e55b0473a93b8fd46048472bcd9", null ], - [ "currentSlotIndex", "structcy__stc__capsense__internal__context__t.html#a5896555e734e28ca9c0c59624c05ad7b", null ], - [ "endSlotIndex", "structcy__stc__capsense__internal__context__t.html#a0bb5e146f355a51b8bffced67bf1c4a8", null ], - [ "scanSingleSlot", "structcy__stc__capsense__internal__context__t.html#a369e954564bb658a81176a8e343a8e52", null ], - [ "numSenseMethod", "structcy__stc__capsense__internal__context__t.html#a97d29c46669cb5004cdb5d468a8bee61", null ], - [ "mapSenseMethod", "structcy__stc__capsense__internal__context__t.html#a399b90e9f0e47a18b2fa5ea534490669", null ], - [ "numProOffsetCycles", "structcy__stc__capsense__internal__context__t.html#a979ee649383bb985c7d1c153cccf80af", null ], - [ "proOffsetCdacComp", "structcy__stc__capsense__internal__context__t.html#a3b896d96a2684a887210bae5de46bfa8", null ], - [ "hwConfigState", "structcy__stc__capsense__internal__context__t.html#ae3fb1a265c11df1cab525e6ba7149110", null ], - [ "slotAutoCalibrMode", "structcy__stc__capsense__internal__context__t.html#ab0829c3076d68da791c664969585b54d", null ], - [ "intrCsdRawTarget", "structcy__stc__capsense__internal__context__t.html#a3e4d3c24280c56169f481c91db5928e7", null ], - [ "intrCsxRawTarget", "structcy__stc__capsense__internal__context__t.html#aa567c9166072174f081d982b47246c47", null ] - ] ], - [ "cy_stc_capsense_widget_crc_data_t", "structcy__stc__capsense__widget__crc__data__t.html", [ - [ "fingerThVal", "structcy__stc__capsense__widget__crc__data__t.html#a373d9ef4767624a402f7b5212474c2e7", null ], - [ "proxThVal", "structcy__stc__capsense__widget__crc__data__t.html#ae33b026cd3a82c07e0dcdc80723b0e77", null ], - [ "fingerCapVal", "structcy__stc__capsense__widget__crc__data__t.html#a2c02fa3c77712c71160208f61b1d7f66", null ], - [ "sigPFCVal", "structcy__stc__capsense__widget__crc__data__t.html#a2742dd33a65b5791a4aca1dd86f60910", null ], - [ "resolutionVal", "structcy__stc__capsense__widget__crc__data__t.html#a74ffdaa191f9c9bd3d17ff3170200bac", null ], - [ "lowBslnRstVal", "structcy__stc__capsense__widget__crc__data__t.html#a1b9cf99918a603703887386a91037fcb", null ], - [ "snsClkVal", "structcy__stc__capsense__widget__crc__data__t.html#a888a88ed2d857e30e18b5240731fafb7", null ], - [ "rowSnsClkVal", "structcy__stc__capsense__widget__crc__data__t.html#af9f145585e1986461ae4ba26927bbe3c", null ], - [ "noiseThVal", "structcy__stc__capsense__widget__crc__data__t.html#a8e0385e6387e58cdedfb31ea60628420", null ], - [ "nNoiseThVal", "structcy__stc__capsense__widget__crc__data__t.html#a3673f2332d36b3f3ed60dfcd46f88e6a", null ], - [ "hysteresisVal", "structcy__stc__capsense__widget__crc__data__t.html#aed1891221adb2937e8de946ef4b2d02d", null ], - [ "onDebounceVal", "structcy__stc__capsense__widget__crc__data__t.html#a656e5777ec25c6e3a3b5b64ba54fc4dc", null ], - [ "snsClkSourceVal", "structcy__stc__capsense__widget__crc__data__t.html#a56160b9d3867b8b59fda1ebface25359", null ], - [ "idacModVal", "structcy__stc__capsense__widget__crc__data__t.html#a7377454579441d2f33c2d96b458e5bba", null ], - [ "idacGainIndexVal", "structcy__stc__capsense__widget__crc__data__t.html#a16b1ee33055b4f7d5c1d9c6ff0cdade2", null ], - [ "rowIdacModVal", "structcy__stc__capsense__widget__crc__data__t.html#a0959fffcf46f6de97e132d4246767b96", null ], - [ "cdacCompDivider", "structcy__stc__capsense__widget__crc__data__t.html#a5ff43b7bc1a7a6356e421a580a189645", null ], - [ "cdacRef", "structcy__stc__capsense__widget__crc__data__t.html#ada53db417307cc1d13caf7987244cfe1", null ], - [ "rowCdacRef", "structcy__stc__capsense__widget__crc__data__t.html#ac77f44aed58de14a95c07a817211ee67", null ], - [ "cicRate", "structcy__stc__capsense__widget__crc__data__t.html#a29965512e099c71169b5413d3e7f8f05", null ], - [ "lfsrBits", "structcy__stc__capsense__widget__crc__data__t.html#acb3c7a99f4ee1d0d3fbeda0b4b213f7e", null ] - ] ], - [ "cy_stc_capsense_common_context_t", "structcy__stc__capsense__common__context__t.html", [ - [ "configId", "structcy__stc__capsense__common__context__t.html#aa9d6aeaa1e73aac634d4ca090d353af2", null ], - [ "tunerCmd", "structcy__stc__capsense__common__context__t.html#afae9853b830d6549b35bafc214acc040", null ], - [ "scanCounter", "structcy__stc__capsense__common__context__t.html#a6406229ffd99b912c09ca0c80ea3f4ee", null ], - [ "tunerSt", "structcy__stc__capsense__common__context__t.html#a26f741c17c454d43f6a07dbf87d8154e", null ], - [ "initDone", "structcy__stc__capsense__common__context__t.html#a0181ebd06d8e03e3b18ac5c08ca14742", null ], - [ "status", "structcy__stc__capsense__common__context__t.html#ae823664536f36878278584c2e8967035", null ], - [ "timestampInterval", "structcy__stc__capsense__common__context__t.html#a6178b4758bc7095bbafe2bf8bc62783a", null ], - [ "timestamp", "structcy__stc__capsense__common__context__t.html#a770a1fafdbe45e1e3355abca3caa859c", null ], - [ "modCsdClk", "structcy__stc__capsense__common__context__t.html#a867653a126683191970d79f8b6005926", null ], - [ "modCsxClk", "structcy__stc__capsense__common__context__t.html#a7284658d282945e1ed7f624683677829", null ], - [ "tunerCnt", "structcy__stc__capsense__common__context__t.html#ac6502f0565b37d6ba97cce1c81a773b3", null ], - [ "numFineInitCycles", "structcy__stc__capsense__common__context__t.html#a77232b6c0e10717e7ae1af4353a03bcd", null ], - [ "numFineInitWaitCycles", "structcy__stc__capsense__common__context__t.html#acbfaf0d277487c7b7d4c29373a0c1c28", null ], - [ "lfsrPoly", "structcy__stc__capsense__common__context__t.html#a6de81bf892d8f25e7cd5ea1428d9a2c9", null ], - [ "lfsrScale", "structcy__stc__capsense__common__context__t.html#a971f5a3a5454addde057e0f9179e77e8", null ], - [ "cdacDitherSeed", "structcy__stc__capsense__common__context__t.html#a4ea8ee5aae4993e4f86a9d2cd05b537c", null ], - [ "cdacDitherPoly", "structcy__stc__capsense__common__context__t.html#a75c97af43dbcd9a4553d556bd8c454d7", null ], - [ "modClk", "structcy__stc__capsense__common__context__t.html#a5468b6895f747291aeb4225a66ff2ccd", null ] - ] ], - [ "cy_stc_capsense_context_t", "structcy__stc__capsense__context__t.html", [ - [ "ptrCommonConfig", "structcy__stc__capsense__context__t.html#a7e55b9983341848b270166d72d9b50ac", null ], - [ "ptrCommonContext", "structcy__stc__capsense__context__t.html#a2f4f7d25d0816cf7fe6f04103c4d647e", null ], - [ "ptrInternalContext", "structcy__stc__capsense__context__t.html#a9b84076b589b363d35097eb12420fd4b", null ], - [ "ptrWdConfig", "structcy__stc__capsense__context__t.html#a9b12863ecde08d94f68285a852e6f69b", null ], - [ "ptrWdContext", "structcy__stc__capsense__context__t.html#a1686259414950156dca1818d0db45922", null ], - [ "ptrPinConfig", "structcy__stc__capsense__context__t.html#a9f676c61d0088ba82b3d7adaea8459e0", null ], - [ "ptrShieldPinConfig", "structcy__stc__capsense__context__t.html#a2a2bab67c44107594f5c43c785b0cb2e", null ], - [ "ptrActiveScanSns", "structcy__stc__capsense__context__t.html#a2719dc3e059d012106c5f4476faec66d", null ], - [ "ptrBistContext", "structcy__stc__capsense__context__t.html#a92125bdfe35272f254fcc58d857670ce", null ], - [ "ptrBaseFrameContext", "structcy__stc__capsense__context__t.html#a638028282143ad3653b80671da17da72", null ], - [ "ptrSensorFrameContext", "structcy__stc__capsense__context__t.html#aac6608bbe9e738a5de77a047ecace2f1", null ], - [ "ptrScanSlots", "structcy__stc__capsense__context__t.html#a701dc256c0227c806b5907061625ab43", null ] - ] ], - [ "cy_capsense_status_t", "group__group__capsense__structures.html#gadb42bb859316b21e708ad01184fba9c7", null ], - [ "cy_capsense_mw_state_t", "group__group__capsense__structures.html#gaae9a4f12c83f84c5a02079bb0eeeb3c9", null ], - [ "cy_capsense_callback_t", "group__group__capsense__structures.html#ga908447ccc2720f31c861d9eb79ff75d2", null ], - [ "cy_capsense_ds_init_callback_t", "group__group__capsense__structures.html#gaeebeea548d4c2235b14aba63f1dd4bcf", null ], - [ "cy_capsense_tuner_send_callback_t", "group__group__capsense__structures.html#gabf58e6ce283cb73f9b8a398abf6bad17", null ], - [ "cy_capsense_tuner_receive_callback_t", "group__group__capsense__structures.html#gade1f00c852892b0fc498c9a3b9d28594", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/index.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/index.html deleted file mode 100644 index 36366e3309..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/index.html +++ /dev/null @@ -1,588 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: CAPSENSE™ Middleware Library 3.0 - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    -

    CAPSENSE™ is a CYPRESS™ capacitive sensing solution from Infineon.Capacitive sensing can be used in a variety of applications and products where conventional mechanical buttons can be replaced with sleek human interfaces to transform the way users interact with electronic systems. These include home appliances, and automotive, IoT, and industrial applications. CAPSENSE™ supports multiple interfaces (widgets) using both CSX and CSD sensing methods with robust performance.

    -

    CAPSENSE™ has become a popular technology to replace conventional mechanical- and optical-based user interfaces. There are fewer parts involved, which saves cost and increases reliability with no wear-and-tear. The main advantages of CAPSENSE™ compared with other solutions are: robust performance in harsh environmental conditions and rejection of a wide range of external noise sources.

    -

    Use CAPSENSE™ for:

      -
    • Touch and gesture detection for various interfaces
    • -
    • Proximity detection for innovative user experiences and low-power optimization
    • -
    • Contactless liquid-level sensing in a variety of applications
    • -
    • Touch-free operations in hazardous materials
    • -
    -

    -General Description

    -

    The CAPSENSE™ middleware Library supports operation with fourth-generation and fifth-generation of CAPSENSE™ HW. CAPSENSE™ HW enables multiple sensing capabilities on PSoC™ devices including the self-cap (CSD) and mutual-cap (CSX) capacitive touch sensing solutions, inductive sensing, impedance measurement, and other features.

    -

    Middleware access available the CAPSENSE™ HW block through the corresponding peripheral Driver:

      -
    • CSD (CAPSENSE™ Sigma-Delta) driver for the forth-generation of the CAPSENSE™ HW;
    • -
    • MSC (Multi-Sensor Converter) driver for the fifth-generation of the CAPSENSE™ HW;
    • -
    -

    The CAPSENSE™ peripheral driver does not provide any system-level functions. It only implements the interface to the CAPSENSE™ HW resource.

    -

    The supported CAPSENSE™ HW blocks can perform only one function at a time. However, all supported functionality (like CAPSENSE™, CSDADC, etc.) can be time-multiplexed in a design. I.e. you can save the existing state of the CAPSENSE™ middleware, restore the state of the the CSDADC middleware, perform CSDADC measurements, and then switch back to the CAPSENSE™ functionality. For details and code examples, refer to the description of the Cy_CapSense_Save() and Cy_CapSense_Restore() functions.

    -
    -capsense_solution.png -
    -CAPSENSE™ Solution
    -

    This section describes only the CAPSENSE™ middleware. Refer to the corresponding sections of documentation for other middleware supported by the CAPSENSE™ HW.

    -

    A CAPSENSE™ solution includes:

      -
    • The CAPSENSE™ Configurator to create and configure CAPSENSE™ widgets. It can be launched in ModusToolbox™ from the CAPSENSE™ superblock personality and in Stand-alone mode. It contains a separate document about how to create and configure widgets, parameters and algorithm descriptions.
    • -
    • API to control the design from the application program. This documentation describes API with code snippets of how to use them.
    • -
    • The CAPSENSE™ Tuner tool for real-time tuning, testing, and debugging, for easy and smooth designing of human interfaces on customer products. The Tuner tool communicates with a device through a HW bridge and communication drivers (EzI2C, UART, etc.) and allows to monitor widget statuses, sensor signals, detected touch positions, gestures, etc. The application program does not need to interact with the CSD driver and/or other drivers such as GPIO, SysClk directly. All of that is configured and managed by middleware.
    • -
    -

    Include cy_capsense.h to get access to all functions and other declarations in this library. If you are using the ModusToolbox™ CAPSENSE™ Configurator tool, you can include cycfg_capsense.h only.

    -

    -Features

    -
      -
    • Offers best-in-class signal-to-noise ratio (SNR)
    • -
    • Supports Self-Capacitance (CSD) and Mutual-Capacitance (CSX) sensing methods
    • -
    • Supports various Widgets, such as Buttons, Matrix Buttons, Sliders, Touchpads, and Proximity Sensors
    • -
    • Provides ultra-low power consumption and liquid-tolerant capacitive sensing technology
    • -
    • Contains the integrated graphical CAPSENSE™ Tuner tool for real-time tuning, testing, and debugging
    • -
    • Provides superior immunity against external noise and low-radiated emission
    • -
    • Offers best-in-class liquid tolerance
    • -
    • Supports one-finger and two-finger gestures
    • -
    -

    -Quick Start Guide

    -

    The quickest way to get started with CAPSENSE™ is using code examples. Infineon Technologies continuously extends their portfolio of code examples at the Infineon Technologies and at the Infineon Technologies GitHub. The following are the links to code examples for different PSoC™ families presented on GitHub.

    -

    -Code Examples for PSoCâ„¢ 4 Devices with fourth-generation CAPSENSEâ„¢

    - -

    -Code Examples for PSoCâ„¢ 4 Devices with fifth-generation CAPSENSEâ„¢

    - -

    -Code Examples for PSoCâ„¢ 6 Devices with fourth-generation CAPSENSEâ„¢

    - -

    The CAPSENSE™ middleware can be used in various development environments such as ModusToolbox™, MBED, etc. Refer to the Supported Software and Tools. The following are the configuration considerations for the different environments.

    -

    -ModusToolboxâ„¢ Configuration Considerations

    -

    This quick start guide assumes that the environment is configured:

    -
    Note
    Ensure to set up the device power voltages correctly to the proper operation of the device power domains. The Setup is on the System Tab of the Device Configurator. Enable the Power check box and set up the voltages as they are red-outlined in the picture below.
    -
    -check_power.png -
    -Power Setup
    -

    -MBED OS Configuration Considerations

    -

    You can immediately start with the following MBED OS code example available at the Cypress Semiconductor GitHub:

    -

    If you are doing your own project, remember to include cycfg.h file:

    #include "cycfg.h"

    and call the resource initialization functions in main() at the beginning:

    init_cycfg_all();

    -Summary of Application Programming Interface (API)

    -

    The CAPSENSE™ middleware operates on the top of the MSC/CSD HW driver. Refer to the PDL API Reference Manual.

    -

    This document provides descriptions of the functions in the CAPSENSE™ middleware library, and descriptions of the data structures (register map) used by the middleware library.

    -

    The Application Programming Interface (API) routines allow controlling and executing specific tasks using the CAPSENSE™ middleware. The CAPSENSE™ API is described in the following sections:

    -

    -Supported Software and Tools

    -

    This version of the CAPSENSE™ middleware was validated for compatibility with the following Software and Tools:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Software and Tools Version
    ModusToolbox™ Software Environment 2.4
    - ModusToolbox™ Device Configurator 3.10.0
    - ModusToolbox™ MSC Superblock Personality for for PSoC™ 4 devices in the Device Configurator 1.0
    - ModusToolbox™ MSC Personality for PSoC™ 4 devices in the Device Configurator 1.1
    - ModusToolbox™ CSD Personality for PSoC™ 4 devices in the Device Configurator 1.1
    - ModusToolbox™ CSD Personality for PSoC™ 6 devices in the Device Configurator 2.0
    - ModusToolbox™ CAPSENSE™ Configurator tool 4.0.0
    - ModusToolbox™ CAPSENSE™ Tuner tool 4.0.0
    CAT1 Peripheral Driver Library (PDL) 2.3.0
    CAT2 Peripheral Driver Library (PDL) 1.4.0
    GCC Compiler 9.3.1
    IAR Compiler 8.42.1
    Arm Compiler 6 (Note 1) 6.13
    MBED OS (only for PSoC™ 6) 5.15.8
    FreeRTOS 10.4.5
    -

    Note 1 The CAPSENSE™ middleware includes the pre-compiled libraries for Arm Compiler 6. They are built with the following options to be compatible with ModusToolbox™ and MBED:

    -
      -
    • -fshort-enums - Set the size of an enumeration type to the smallest data type that can hold all enumerator values
    • -
    • -fshort-wchar - Set the size of wchar_t to 2 bytes
    • -
    -

    To operate in custom environments with Arm Compiler 6, apply the above mentioned build options.

    -

    -Update to Newer Versions

    -

    Refer to the Changelog to learn about the design impact of the newer version. Set up your environment in accordance with Supported Software and Tools.

    -

    Ensure:

      -
    • The specified version of the ModusToolbox™ Device Configurator and the Personality are used to re-generate the device configuration.
    • -
    • The specified version of the ModusToolbox™ CAPSENSE™ Configurator is used to re-generate the middleware configuration.
    • -
    • The toolchains are set up properly for your environment per the settings outlined in the Supported Software and Tools.
    • -
    • The project is re-built once the toolchains are configured and the configuration is completed.
    • -
    -

    You might need to re-generate the configuration structures for either the device initialization code or the middleware initialization code.

      -
    • Launch the ModusToolbox™ Device Configurator and perform the File->Save command to re-generate the device initialization code.
    • -
    • From the ModusToolbox™ Device Configurator, launch the ModusToolbox™ CAPSENSE™ Configurator and perform the File->Save command to re-generate the middleware initialization code.
    • -
    -

    -Memory Usage

    -

    The CAPSENSE™ middleware Flash and RAM memory consumption varies:

      -
    • marginally - depending on the compiler and device
    • -
    • significantly - depending on the project CAPSENSE™ configuration and number of APIs called by the application program.
    • -
    -

    The table below provides the middleware total memory consumption for specific CAPSENSE™ configurations. Memory consumption for any custom design/configuration can be determined by analyzing a *.map file generated by the compiler.

    -

    The measurements were done with GCC compiler configured in the Release mode with optimization set for Size.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Configuration:ModeSensor Connection TypeMemory TypeConfiguration 1Configuration 2Configuration 3Configuration 4Configuration 5Configuration 6Configuration 7Configuration 8Configuration 9
    4th GenIntDrvAMUXFlash:< 5.9 kB< 8.5 kB< 11.7 kB< 5.5 kB < 6.8 kB< 7.8 kB< 9.1 kB< 9.4 kB< 18.7 kB
    SRAM:< 0.6 kB< 0.8 kB< 0.8 kB< 0.8 kB< 0.8 kB< 1.1 kB< 1.8 kB< 0.7 kB< 2.4 kB
    5th GenIntDrvAMUXFlash:< 7.3 kB< 10.3 kB< 11.5 kB< 7.4 kB < 8.8 kB< 9.9 kB< 11.0 kB< 11.3 kB< 15.0 kB
    SRAM:< 1.1 kB< 1.2 kB< 1.1 kB< 1.3 kB< 1.3 kB< 1.7 kB< 2.3 kB< 1.7 kB< 3.3 kB
    CTRL_MUXFlash:Flash memory consumption 1000 bytes higher then CTRL_MUX - DMA
    SRAM:SRAM memory consumption is the same as in CTRL_MUX - DMA
    DMACTRL_MUXFlash:< 7.7 kB< 11.0 kB< 11.1 kB< 7.8 kB< 9.6 kB< 10.2 kB< 11.4 kB< 11.7 kB< 15.4 kB
    SRAM:< 1.3 kB< 1.5 kB< 1.4 kB< 2.1 kB< 2.1 kB< 2.6 kB< 3.3 kB< 2.1 kB< 5.4 kB
    Widgets
    CSD Button3(10 sensors)3(10 sensors)3(10 sensors)    1(1 sensor)1(1 sensor)
    CSD Matrix Buttons         
    CSD Slider         
    CSD Touchpad       1(8x8)1(8x8)
    CSD Proximity         
    CSX Button         
    CSX Matrix Buttons   1(4x8)1(4x8)    
    CSX Touchpad     1(9x4)1(9x4) 1(8x8)
    Features
    Gesture         
    Ballistic Multiplier         
    Centroid Type         
    Supported fingers on touchpad         
    Shield       enabledenabled
    SmartSense enabled       
    CSD auto-calibration         
    CSX auto-calibration    enabled    
    Self-test  enabled      
    Raw Count Filters
    IIR      enabledenabledenabled
    Median      enabled  
    Average      enabled  
    Position Filters
    IIR      enabled  
    Median      enabled  
    Average      enabled  
    Adaptive IIR      enabled  
    Jitter      enabled  
    -
    Note
      -
    • To select values for the Scan mode and Sensor connection method parameters (for the fifth-generation of the CAPSENSE™ HW) navigate to the Advanced tab in the CAPSENSE™ Configurator tool, and then select the General settings sub-tab.
    • -
    • For the forth-generation of the CAPSENSE™ HW, the IntDrv mode with the AMUX sensor connection type is available only.
    • -
    -
    -

    -MISRA-C:2012 Compliance

    -

    This page describes MISRA-C:2012 compliance and deviations for the CAPSENSE™ middleware.

    -

    MISRA stands for Motor Industry Software Reliability Association. The MISRA specification covers a set of 10 mandatory rules, 110 required rules and 39 advisory rules that apply to firmware design and has been put together by the Automotive Industry to enhance the quality and robustness of the firmware code embedded in automotive devices.

    -

    -CAPSENSEâ„¢ Middleware Deviation

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Rule ID Rule Description Description of Deviation(s)
    Directive 4.8 If a pointer to a structure or union is never dereferenced within a translation unit, then the implementation of the object should be hidden. Advisory. The middleware library consists of several modules. One of them is CapSense Data Structure. All communication between the other modules is performed through CapSense Data Structure.
    Rule 2.3 A project should not contain unused type declarations. Advisory. The middleware library provides API to the hardware. The type is part of API, which is defined for application-level only.
    Rule 2.5 A project should not contain unused macro declarations. Advisory. The middleware library provides API to the hardware. The macro is part of API, which is defined for application-level only.
    Rule 5.1 External identifiers shall be distinct. Toolchains from Supported Software and Tools documentation section are verified to work with functions, names of which have similar first 31 symbols.
    Rule 5.4 Macro identifiers shall be distinct. Toolchains from Supported Software and Tools documentation section are verified to work with macros, names of which have similar first 31 symbols.
    Rule 5.6 A typedef name shall be a unique identifier. During the code analysis, the same source files are compiled multiple times with device-specific options. All typedef names are unique for each specific run.
    Rule 5.8 Identifiers that define objects or functions with external linkage shall be unique. During the code analysis, the same source files are compiled multiple times with device-specific options. All object and function identifiers are unique for each specific run.
    Rule 5.9 Identifiers that define objects or functions with internal linkage should be unique. Advisory. During the code analysis, the same source files are compiled multiple times with device-specific options. All object and function identifiers are unique for each specific run.
    Rule 8.3 All declarations of an object or function shall use the same names and type qualifiers. During the code analysis, the same source files are compiled multiple times with device-specific options. All object and function identifiers are unique for each specific run.
    Rule 8.5 An external object or function shall be declared once in one and only one file. During the code analysis, the same source files are compiled multiple times with device-specific options. All object and function identifiers are unique for each specific run.
    Rule 8.6 An identifier with external linkage shall have exactly one external definition. During the code analysis, the same source files are compiled multiple times with device-specific options. All object and function identifiers are unique for each specific run.
    Rule 8.7 Functions and objects should not be defined with external linkage if they are referenced in only one translation unit. Advisory. During the code analysis, the same source files are compiled multiple times with device-specific options. All object and function identifiers are unique for each specific run.
    Rule 8.13 A pointer should point to const-qualified type whenever possible. Advisory. During the code analysis, the same source files are compiled multiple times with device-specific options. A function argument can be const for some specific run.
    Rule 11.5 A conversion should not be performed from pointer to void into pointer to object. Advisory. The cast from void pointer to an object pointer does not have any unintended effect, as it is a consequence of the definition of a structure based on function pointers.
    Rule 14.2 A for loop shall be well-formed. The third clause of the for loop is empty to improve execution time.
    Rule 18.4 The +, -, += and -= operators should not be applied to an expression of pointer type. Advisory. There are several instances of pointer arithmetic in drivers. They cannot be avoided, so are manually checked and reviewed to be safe.
    -

    -CAPSENSEâ„¢ Configurator Generated Sources Deviation

    - - - - - - - - - -
    Rule ID Rule Description Description of Deviation(s)
    Rule 3.1 The character sequences / * and / / shall not be used within a comment. Using of the special comment symbols is need for Doxygen comment support, it does not have any impact on functionality.
    Rule 8.4 A compatible declaration shall be visible when an object or function with external linkage is defined. The CAPSENSE™ middleware library consists of several modules. One of them is CapSense Built-in Self Test (BIST). All the BIST variables are used in other data structures and accessed using pointers.
    Rule 11.4 A conversion should not be performed between a pointer to object and an integer type. Advisory. There are several instances of pointer conversions in Generated Source. They are manually checked and reviewed to be safe.
    -

    -Errata

    -

    This section lists the known problems with the CAPSENSE™ middleware.

    - - - - - - - -
    IDKnown IssueWorkaround
    319100 GPIO simultaneous operation with unrestricted strength and frequency creates noise that can affect CAPSENSE™ operation. This issue is applicable for the fourth CAPSENSE™ generation devices. For detail, refer to the errata section of the device datasheet.
    3159 Scanning a sensor with low capacitance (about 8pF and less) with low frequency (around 300kHz and less) might lead to raw count variation from scan to scan. This issue is applicable for the fourth CAPSENSE™ generation devices. There are several possible workarounds:
      -
    1. Increase the Scan resolution.
    2. -
    3. Increase the Sense clock frequency. For the best results, perform scanning with as high as possible Sense clock frequency.
    4. -
    5. If shield is required for a design, enable the shield tank (Csh) capacitor.
    6. -
    7. Increase the sensor capacitance by changing its layout or introduce extra capacitor between the sensor pin and ground.
    8. -
    9. Increase number of Fine initialization cycles. Open the cycfg_capsense.c file and modify the .csdFineInitTime field of the cy_capsense_commonConfig structure.
    10. -
    11. Increase the CSD init switch resistance. Open the cycfg_capsense.c file and update the .csdInitSwRes field of the cy_capsense_commonConfig structure with the CY_CAPSENSE_INIT_SW_RES_HIGH value.
    12. -
    -
    -

    -Changelog

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    VersionChangesReason for Change
    3.0

    This version is not backward compatible with the previous version due to implemented memory consumption optimization. We tried to keep the established API, but your design may need to be updated to operate with CAPSENSE™ middleware v3.0.

    -

    Also, if you use the CAPSENSE™ middleware v3.0 version then you must use the CAPSENSE™ Configurator v4.0 tool or later. This MW version is not compatible with the previous Configurator tool versions.

    -
    Added fifth-generation CAPSENSE™ device support which includes but not limited:
      -
    • Scanning mode: DMA and Interrupt Driven
    • -
    • Sensor connection method: Analog mux bus and Control mux bus
    • -
    • Re-designed multi-frequency scan feature
    • -
    • Multi-phase TX feature
    • -
    • Improved signal-to-noise ratio
    • -
    • Improved refresh rate
    • -
    -
    New CAPSENSE™ MSC platform covering
    The following rows show changes related to fourth-generation CAPSENSE™
    Removed usage of deprecated return error and status codes, cy_status enum was replaced with the cy_capsense_status_t variable Defect fixing
    Removed usage of deprecated types, such as uint32 and uint16 Defect fixing
    Changed the default IDAC gain index for the CSX auto-calibration to the configured one Defect fixing
    The following functions were made obsolete:
      -
    • Cy_CapSense_CSDConnectSns()
    • -
    • Cy_CapSense_CSDDisconnectSns()
    • -
    • Cy_CapSense_CSXConnectRx()
    • -
    • Cy_CapSense_CSXConnectTx()
    • -
    • Cy_CapSense_CSXDisconnectRx()
    • -
    • Cy_CapSense_CSXDisconnectTx()
    • -
    • Cy_CapSense_CalibrateAllCsdWidgets()
    • -
    • Cy_CapSense_CalibrateAllCsxWidgets()
    • -
    -
    User experience improvement
    For fourth-generation CAPSENSE™ devices callbacks were moved from ptrCommonContext to ptrInternalContext structure User experience improvement
    Updated the description of the Cy_CapSense_RunSelfTest() function Documentation defect fixing
    Specified measurement units in the following function descriptions: -Documentation defect fixing
    Added call of the Cy_CapSense_Wakeup() function to the registered callback in the Cy_CapSense_DeepSleepCallback() function Improved robustness of a sensing module
    Added a possibility to enable / disable independent features of BIST module Expanded flexibility
    2.10 Added Built-in Self-test (BIST) library Support Class B (IEC-60730), safety integrity-level compliant design
    Improved the Csh and Cmod coarse initialization functionality. Feature enhancement
    Improved the shield performance when Csh is enabled Feature enhancement
    Fixed Cy_CapSense_ScanExt() operation Defect fixing
    Fixed the bug in the Cy_CapSense_SetPinState() function Defect fixing
    Optimized software watch-dog values used in monitoring CAPSENSE™ scanning duration User experience improvement
    Improved IDAC auto-calibration Operation accuracy increasing
    Added the following functions: -Feature enhancement
    Changed the type of context argument to const in the following functions:
      -
    • Cy_CapSense_CSDConnectSns()
    • -
    • Cy_CapSense_CSXConnectRx()
    • -
    • Cy_CapSense_CSXConnectTx()
    • -
    • Cy_CapSense_CSXDisconnectRx()
    • -
    • Cy_CapSense_CSXDisconnectTx()
    • -
    • Cy_CapSense_SetPinState()
    • -
    -
    Defect fixing
    2.0 Added memory usage section to the CAPSENSE™ API Ref Guide User experience improvement
    Updated documentation User experience improvement
    Added the errata section to the CAPSENSE™ API Ref Guide User experience improvement
    CAPSENSE™ MW sources are enclosed with the conditional compilation to ensure a successful compilation for non-CAPSENSE™-capable devices Fixing a compilation error for non CAPSENSE™-capable devices
    Optimized flash memory consumption based on user's configuration Flash foot-print optimization
    Renamed function Cy_CapSense_CheckCommandIntegrity() to Cy_CapSense_CheckTunerCmdIntegrity() User experience improvement
    1.20 Added Arm Compiler 6 support Feature enhancement
    Changed the hierarchy of the binary files folders MBED OS compatibility
    1.1

    The following functions made obsolete:

      -
    • Cy_CapSense_CSDSetupWidget()
    • -
    • Cy_CapSense_CSDSetupWidgetExt()
    • -
    • Cy_CapSense_CSDScan()
    • -
    • Cy_CapSense_CSDScanExt()
    • -
    • Cy_CapSense_CSDCalibrateWidget()
    • -
    • Cy_CapSense_CSXSetupWidget()
    • -
    • Cy_CapSense_CSXSetupWidgetExt()
    • -
    • Cy_CapSense_CSXScan()
    • -
    • Cy_CapSense_CSXScanExt()
    • -
    • Cy_CapSense_CSXCalibrateWidget()
    • -
    -

    Two simple functions introduced to replace the listed above functions:

    -
    User experience improvement
    Fixed the shield operation when Csh is disabled Defect fixing
    Fixed the implementation of the position filtering for the Radial Slider widget Defect fixing
    Added restoring hardware to its default state in the Cy_CapSense_DeInit() implementation Defect fixing
    Added the capability to enable the shield electrode without dedicated electrodes Feature enhancement
    Added support of a protocol-agnostic tuner interface (UART, SPI, etc.) Feature enhancement
    1.0 The initial version
    -

    -More Information

    -

    Important information about the CAPSENSE™-technology overview, appropriate CYPRESS™ device from Infineon for the design, CAPSENSE™ system and sensor design guidelines, different interfaces and tuning guidelines necessary for a successful design of a CAPSENSE™ system is available in the Getting Started with CAPSENSE™ document and the product-specific CAPSENSE™ design guide. CYPRESS™ highly recommends starting with these documents. They can be found on the CYPRESS™ web site at www.cypress.com.

    -

    For more information, refer to the following documents:

    - -
    Note
    The links to another software component's documentation (middleware and PDL) point to GitHub to the latest available version of the software. To get documentation of the specified version, download from GitHub and unzip the component archive. The documentation is available in the docs folder.
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/jquery.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/jquery.js deleted file mode 100644 index f5343eda92..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/jquery.js +++ /dev/null @@ -1,87 +0,0 @@ -/*! - * jQuery JavaScript Library v1.7.1 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Mon Nov 21 21:11:03 2011 -0500 - */ -(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:function(b0){b0=+b0;return b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(bK.apply(this,arguments),"slice",bK.call(arguments).join(","))},map:function(b0){return this.pushStack(bF.map(this,function(b2,b1){return b0.call(b2,b1,b2)}))},end:function(){return this.prevObject||this.constructor(null)},push:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof b5==="boolean"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof b5!=="object"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b40){return}bC.fireWith(av,[bF]);if(bF.fn.trigger){bF(av).trigger("ready").off("ready")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks("once memory");if(av.readyState==="complete"){return setTimeout(bF.ready,1)}if(av.addEventListener){av.addEventListener("DOMContentLoaded",e,false);bb.addEventListener("load",bF.ready,false)}else{if(av.attachEvent){av.attachEvent("onreadystatechange",e);bb.attachEvent("onload",bF.ready);var b0=false;try{b0=bb.frameElement==null}catch(b1){}if(av.documentElement.doScroll&&b0){bw()}}}},isFunction:function(b0){return bF.type(b0)==="function"},isArray:Array.isArray||function(b0){return bF.type(b0)==="array"},isWindow:function(b0){return b0&&typeof b0==="object"&&"setInterval" in b0},isNumeric:function(b0){return !isNaN(parseFloat(b0))&&isFinite(b0)},type:function(b0){return b0==null?String(b0):bx[bL.call(b0)]||"object"},isPlainObject:function(b2){if(!b2||bF.type(b2)!=="object"||b2.nodeType||bF.isWindow(b2)){return false}try{if(b2.constructor&&!bG.call(b2,"constructor")&&!bG.call(b2.constructor.prototype,"isPrototypeOf")){return false}}catch(b1){return false}var b0;for(b0 in b2){}return b0===L||bG.call(b2,b0)},isEmptyObject:function(b1){for(var b0 in b1){return false}return true},error:function(b0){throw new Error(b0)},parseJSON:function(b0){if(typeof b0!=="string"||!b0){return null}b0=bF.trim(b0);if(bb.JSON&&bb.JSON.parse){return bb.JSON.parse(b0)}if(bN.test(b0.replace(bW,"@").replace(bP,"]").replace(bJ,""))){return(new Function("return "+b0))()}bF.error("Invalid JSON: "+b0)},parseXML:function(b2){var b0,b1;try{if(bb.DOMParser){b1=new DOMParser();b0=b1.parseFromString(b2,"text/xml")}else{b0=new ActiveXObject("Microsoft.XMLDOM");b0.async="false";b0.loadXML(b2)}}catch(b3){b0=L}if(!b0||!b0.documentElement||b0.getElementsByTagName("parsererror").length){bF.error("Invalid XML: "+b2)}return b0},noop:function(){},globalEval:function(b0){if(b0&&bM.test(b0)){(bb.execScript||function(b1){bb["eval"].call(bb,b1)})(b0)}},camelCase:function(b0){return b0.replace(bZ,"ms-").replace(bB,bT)},nodeName:function(b1,b0){return b1.nodeName&&b1.nodeName.toUpperCase()===b0.toUpperCase()},each:function(b3,b6,b2){var b1,b4=0,b5=b3.length,b0=b5===L||bF.isFunction(b3);if(b2){if(b0){for(b1 in b3){if(b6.apply(b3[b1],b2)===false){break}}}else{for(;b40&&b0[0]&&b0[b1-1])||b1===0||bF.isArray(b0));if(b3){for(;b21?aJ.call(arguments,0):bG;if(!(--bw)){bC.resolveWith(bC,bx)}}}function bz(bF){return function(bG){bB[bF]=arguments.length>1?aJ.call(arguments,0):bG;bC.notifyWith(bE,bB)}}if(e>1){for(;bv
    a";bI=bv.getElementsByTagName("*");bF=bv.getElementsByTagName("a")[0];if(!bI||!bI.length||!bF){return{}}bG=av.createElement("select");bx=bG.appendChild(av.createElement("option"));bE=bv.getElementsByTagName("input")[0];bJ={leadingWhitespace:(bv.firstChild.nodeType===3),tbody:!bv.getElementsByTagName("tbody").length,htmlSerialize:!!bv.getElementsByTagName("link").length,style:/top/.test(bF.getAttribute("style")),hrefNormalized:(bF.getAttribute("href")==="/a"),opacity:/^0.55/.test(bF.style.opacity),cssFloat:!!bF.style.cssFloat,checkOn:(bE.value==="on"),optSelected:bx.selected,getSetAttribute:bv.className!=="t",enctype:!!av.createElement("form").enctype,html5Clone:av.createElement("nav").cloneNode(true).outerHTML!=="<:nav>",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};bE.checked=true;bJ.noCloneChecked=bE.cloneNode(true).checked;bG.disabled=true;bJ.optDisabled=!bx.disabled;try{delete bv.test}catch(bC){bJ.deleteExpando=false}if(!bv.addEventListener&&bv.attachEvent&&bv.fireEvent){bv.attachEvent("onclick",function(){bJ.noCloneEvent=false});bv.cloneNode(true).fireEvent("onclick")}bE=av.createElement("input");bE.value="t";bE.setAttribute("type","radio");bJ.radioValue=bE.value==="t";bE.setAttribute("checked","checked");bv.appendChild(bE);bD=av.createDocumentFragment();bD.appendChild(bv.lastChild);bJ.checkClone=bD.cloneNode(true).cloneNode(true).lastChild.checked;bJ.appendChecked=bE.checked;bD.removeChild(bE);bD.appendChild(bv);bv.innerHTML="";if(bb.getComputedStyle){bA=av.createElement("div");bA.style.width="0";bA.style.marginRight="0";bv.style.width="2px";bv.appendChild(bA);bJ.reliableMarginRight=(parseInt((bb.getComputedStyle(bA,null)||{marginRight:0}).marginRight,10)||0)===0}if(bv.attachEvent){for(by in {submit:1,change:1,focusin:1}){bB="on"+by;bw=(bB in bv);if(!bw){bv.setAttribute(bB,"return;");bw=(typeof bv[bB]==="function")}bJ[by+"Bubbles"]=bw}}bD.removeChild(bv);bD=bG=bx=bA=bv=bE=null;b(function(){var bM,bU,bV,bT,bN,bO,bL,bS,bR,e,bP,bQ=av.getElementsByTagName("body")[0];if(!bQ){return}bL=1;bS="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;";bR="visibility:hidden;border:0;";e="style='"+bS+"border:5px solid #000;padding:0;'";bP="
    ";bM=av.createElement("div");bM.style.cssText=bR+"width:0;height:0;position:static;top:0;margin-top:"+bL+"px";bQ.insertBefore(bM,bQ.firstChild);bv=av.createElement("div");bM.appendChild(bv);bv.innerHTML="
    t
    ";bz=bv.getElementsByTagName("td");bw=(bz[0].offsetHeight===0);bz[0].style.display="";bz[1].style.display="none";bJ.reliableHiddenOffsets=bw&&(bz[0].offsetHeight===0);bv.innerHTML="";bv.style.width=bv.style.paddingLeft="1px";b.boxModel=bJ.boxModel=bv.offsetWidth===2;if(typeof bv.style.zoom!=="undefined"){bv.style.display="inline";bv.style.zoom=1;bJ.inlineBlockNeedsLayout=(bv.offsetWidth===2);bv.style.display="";bv.innerHTML="
    ";bJ.shrinkWrapBlocks=(bv.offsetWidth!==2)}bv.style.cssText=bS+bR;bv.innerHTML=bP;bU=bv.firstChild;bV=bU.firstChild;bN=bU.nextSibling.firstChild.firstChild;bO={doesNotAddBorder:(bV.offsetTop!==5),doesAddBorderForTableAndCells:(bN.offsetTop===5)};bV.style.position="fixed";bV.style.top="20px";bO.fixedPosition=(bV.offsetTop===20||bV.offsetTop===15);bV.style.position=bV.style.top="";bU.style.overflow="hidden";bU.style.position="relative";bO.subtractsBorderForOverflowNotVisible=(bV.offsetTop===-5);bO.doesNotIncludeMarginInBodyOffset=(bQ.offsetTop!==bL);bQ.removeChild(bM);bv=bM=null;b.extend(bJ,bO)});return bJ})();var aS=/^(?:\{.*\}|\[.*\])$/,aA=/([A-Z])/g;b.extend({cache:{},uuid:0,expando:"jQuery"+(b.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},hasData:function(e){e=e.nodeType?b.cache[e[b.expando]]:e[b.expando];return !!e&&!S(e)},data:function(bx,bv,bz,by){if(!b.acceptData(bx)){return}var bG,bA,bD,bE=b.expando,bC=typeof bv==="string",bF=bx.nodeType,e=bF?b.cache:bx,bw=bF?bx[bE]:bx[bE]&&bE,bB=bv==="events";if((!bw||!e[bw]||(!bB&&!by&&!e[bw].data))&&bC&&bz===L){return}if(!bw){if(bF){bx[bE]=bw=++b.uuid}else{bw=bE}}if(!e[bw]){e[bw]={};if(!bF){e[bw].toJSON=b.noop}}if(typeof bv==="object"||typeof bv==="function"){if(by){e[bw]=b.extend(e[bw],bv)}else{e[bw].data=b.extend(e[bw].data,bv)}}bG=bA=e[bw];if(!by){if(!bA.data){bA.data={}}bA=bA.data}if(bz!==L){bA[b.camelCase(bv)]=bz}if(bB&&!bA[bv]){return bG.events}if(bC){bD=bA[bv];if(bD==null){bD=bA[b.camelCase(bv)]}}else{bD=bA}return bD},removeData:function(bx,bv,by){if(!b.acceptData(bx)){return}var bB,bA,bz,bC=b.expando,bD=bx.nodeType,e=bD?b.cache:bx,bw=bD?bx[bC]:bC;if(!e[bw]){return}if(bv){bB=by?e[bw]:e[bw].data;if(bB){if(!b.isArray(bv)){if(bv in bB){bv=[bv]}else{bv=b.camelCase(bv);if(bv in bB){bv=[bv]}else{bv=bv.split(" ")}}}for(bA=0,bz=bv.length;bA-1){return true}}return false},val:function(bx){var e,bv,by,bw=this[0];if(!arguments.length){if(bw){e=b.valHooks[bw.nodeName.toLowerCase()]||b.valHooks[bw.type];if(e&&"get" in e&&(bv=e.get(bw,"value"))!==L){return bv}bv=bw.value;return typeof bv==="string"?bv.replace(aU,""):bv==null?"":bv}return}by=b.isFunction(bx);return this.each(function(bA){var bz=b(this),bB;if(this.nodeType!==1){return}if(by){bB=bx.call(this,bA,bz.val())}else{bB=bx}if(bB==null){bB=""}else{if(typeof bB==="number"){bB+=""}else{if(b.isArray(bB)){bB=b.map(bB,function(bC){return bC==null?"":bC+""})}}}e=b.valHooks[this.nodeName.toLowerCase()]||b.valHooks[this.type];if(!e||!("set" in e)||e.set(this,bB,"value")===L){this.value=bB}})}});b.extend({valHooks:{option:{get:function(e){var bv=e.attributes.value;return !bv||bv.specified?e.value:e.text}},select:{get:function(e){var bA,bv,bz,bx,by=e.selectedIndex,bB=[],bC=e.options,bw=e.type==="select-one";if(by<0){return null}bv=bw?by:0;bz=bw?by+1:bC.length;for(;bv=0});if(!e.length){bv.selectedIndex=-1}return e}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(bA,bx,bB,bz){var bw,e,by,bv=bA.nodeType;if(!bA||bv===3||bv===8||bv===2){return}if(bz&&bx in b.attrFn){return b(bA)[bx](bB)}if(typeof bA.getAttribute==="undefined"){return b.prop(bA,bx,bB)}by=bv!==1||!b.isXMLDoc(bA);if(by){bx=bx.toLowerCase();e=b.attrHooks[bx]||(ao.test(bx)?aY:be)}if(bB!==L){if(bB===null){b.removeAttr(bA,bx);return}else{if(e&&"set" in e&&by&&(bw=e.set(bA,bB,bx))!==L){return bw}else{bA.setAttribute(bx,""+bB);return bB}}}else{if(e&&"get" in e&&by&&(bw=e.get(bA,bx))!==null){return bw}else{bw=bA.getAttribute(bx);return bw===null?L:bw}}},removeAttr:function(bx,bz){var by,bA,bv,e,bw=0;if(bz&&bx.nodeType===1){bA=bz.toLowerCase().split(af);e=bA.length;for(;bw=0)}}})});var bd=/^(?:textarea|input|select)$/i,n=/^([^\.]*)?(?:\.(.+))?$/,J=/\bhover(\.\S+)?\b/,aO=/^key/,bf=/^(?:mouse|contextmenu)|click/,T=/^(?:focusinfocus|focusoutblur)$/,U=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,Y=function(e){var bv=U.exec(e);if(bv){bv[1]=(bv[1]||"").toLowerCase();bv[3]=bv[3]&&new RegExp("(?:^|\\s)"+bv[3]+"(?:\\s|$)")}return bv},j=function(bw,e){var bv=bw.attributes||{};return((!e[1]||bw.nodeName.toLowerCase()===e[1])&&(!e[2]||(bv.id||{}).value===e[2])&&(!e[3]||e[3].test((bv["class"]||{}).value)))},bt=function(e){return b.event.special.hover?e:e.replace(J,"mouseenter$1 mouseleave$1")};b.event={add:function(bx,bC,bJ,bA,by){var bD,bB,bK,bI,bH,bF,e,bG,bv,bz,bw,bE;if(bx.nodeType===3||bx.nodeType===8||!bC||!bJ||!(bD=b._data(bx))){return}if(bJ.handler){bv=bJ;bJ=bv.handler}if(!bJ.guid){bJ.guid=b.guid++}bK=bD.events;if(!bK){bD.events=bK={}}bB=bD.handle;if(!bB){bD.handle=bB=function(bL){return typeof b!=="undefined"&&(!bL||b.event.triggered!==bL.type)?b.event.dispatch.apply(bB.elem,arguments):L};bB.elem=bx}bC=b.trim(bt(bC)).split(" ");for(bI=0;bI=0){bG=bG.slice(0,-1);bw=true}if(bG.indexOf(".")>=0){bx=bG.split(".");bG=bx.shift();bx.sort()}if((!bA||b.event.customEvent[bG])&&!b.event.global[bG]){return}bv=typeof bv==="object"?bv[b.expando]?bv:new b.Event(bG,bv):new b.Event(bG);bv.type=bG;bv.isTrigger=true;bv.exclusive=bw;bv.namespace=bx.join(".");bv.namespace_re=bv.namespace?new RegExp("(^|\\.)"+bx.join("\\.(?:.*\\.)?")+"(\\.|$)"):null;by=bG.indexOf(":")<0?"on"+bG:"";if(!bA){e=b.cache;for(bC in e){if(e[bC].events&&e[bC].events[bG]){b.event.trigger(bv,bD,e[bC].handle.elem,true)}}return}bv.result=L;if(!bv.target){bv.target=bA}bD=bD!=null?b.makeArray(bD):[];bD.unshift(bv);bF=b.event.special[bG]||{};if(bF.trigger&&bF.trigger.apply(bA,bD)===false){return}bB=[[bA,bF.bindType||bG]];if(!bJ&&!bF.noBubble&&!b.isWindow(bA)){bI=bF.delegateType||bG;bH=T.test(bI+bG)?bA:bA.parentNode;bz=null;for(;bH;bH=bH.parentNode){bB.push([bH,bI]);bz=bH}if(bz&&bz===bA.ownerDocument){bB.push([bz.defaultView||bz.parentWindow||bb,bI])}}for(bC=0;bCbA){bH.push({elem:this,matches:bz.slice(bA)})}for(bC=0;bC0?this.on(e,null,bx,bw):this.trigger(e)};if(b.attrFn){b.attrFn[e]=true}if(aO.test(e)){b.event.fixHooks[e]=b.event.keyHooks}if(bf.test(e)){b.event.fixHooks[e]=b.event.mouseHooks}}); -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){var bH=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,bC="sizcache"+(Math.random()+"").replace(".",""),bI=0,bL=Object.prototype.toString,bB=false,bA=true,bK=/\\/g,bO=/\r\n/g,bQ=/\W/;[0,0].sort(function(){bA=false;return 0});var by=function(bV,e,bY,bZ){bY=bY||[];e=e||av;var b1=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!bV||typeof bV!=="string"){return bY}var bS,b3,b6,bR,b2,b5,b4,bX,bU=true,bT=by.isXML(e),bW=[],b0=bV;do{bH.exec("");bS=bH.exec(b0);if(bS){b0=bS[3];bW.push(bS[1]);if(bS[2]){bR=bS[3];break}}}while(bS);if(bW.length>1&&bD.exec(bV)){if(bW.length===2&&bE.relative[bW[0]]){b3=bM(bW[0]+bW[1],e,bZ)}else{b3=bE.relative[bW[0]]?[e]:by(bW.shift(),e);while(bW.length){bV=bW.shift();if(bE.relative[bV]){bV+=bW.shift()}b3=bM(bV,b3,bZ)}}}else{if(!bZ&&bW.length>1&&e.nodeType===9&&!bT&&bE.match.ID.test(bW[0])&&!bE.match.ID.test(bW[bW.length-1])){b2=by.find(bW.shift(),e,bT);e=b2.expr?by.filter(b2.expr,b2.set)[0]:b2.set[0]}if(e){b2=bZ?{expr:bW.pop(),set:bF(bZ)}:by.find(bW.pop(),bW.length===1&&(bW[0]==="~"||bW[0]==="+")&&e.parentNode?e.parentNode:e,bT);b3=b2.expr?by.filter(b2.expr,b2.set):b2.set;if(bW.length>0){b6=bF(b3)}else{bU=false}while(bW.length){b5=bW.pop();b4=b5;if(!bE.relative[b5]){b5=""}else{b4=bW.pop()}if(b4==null){b4=e}bE.relative[b5](b6,b4,bT)}}else{b6=bW=[]}}if(!b6){b6=b3}if(!b6){by.error(b5||bV)}if(bL.call(b6)==="[object Array]"){if(!bU){bY.push.apply(bY,b6)}else{if(e&&e.nodeType===1){for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&(b6[bX]===true||b6[bX].nodeType===1&&by.contains(e,b6[bX]))){bY.push(b3[bX])}}}else{for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&b6[bX].nodeType===1){bY.push(b3[bX])}}}}}else{bF(b6,bY)}if(bR){by(bR,b1,bY,bZ);by.uniqueSort(bY)}return bY};by.uniqueSort=function(bR){if(bJ){bB=bA;bR.sort(bJ);if(bB){for(var e=1;e0};by.find=function(bX,e,bY){var bW,bS,bU,bT,bV,bR;if(!bX){return[]}for(bS=0,bU=bE.order.length;bS":function(bW,bR){var bV,bU=typeof bR==="string",bS=0,e=bW.length;if(bU&&!bQ.test(bR)){bR=bR.toLowerCase();for(;bS=0)){if(!bS){e.push(bV)}}else{if(bS){bR[bU]=false}}}}return false},ID:function(e){return e[1].replace(bK,"")},TAG:function(bR,e){return bR[1].replace(bK,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){by.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var bR=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(bR[1]+(bR[2]||1))-0;e[3]=bR[3]-0}else{if(e[2]){by.error(e[0])}}e[0]=bI++;return e},ATTR:function(bU,bR,bS,e,bV,bW){var bT=bU[1]=bU[1].replace(bK,"");if(!bW&&bE.attrMap[bT]){bU[1]=bE.attrMap[bT]}bU[4]=(bU[4]||bU[5]||"").replace(bK,"");if(bU[2]==="~="){bU[4]=" "+bU[4]+" "}return bU},PSEUDO:function(bU,bR,bS,e,bV){if(bU[1]==="not"){if((bH.exec(bU[3])||"").length>1||/^\w/.test(bU[3])){bU[3]=by(bU[3],null,null,bR)}else{var bT=by.filter(bU[3],bR,bS,true^bV);if(!bS){e.push.apply(e,bT)}return false}}else{if(bE.match.POS.test(bU[0])||bE.match.CHILD.test(bU[0])){return true}}return bU},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(bS,bR,e){return !!by(e[3],bS).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(bS){var e=bS.getAttribute("type"),bR=bS.type;return bS.nodeName.toLowerCase()==="input"&&"text"===bR&&(e===bR||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===bR.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===bR.type},button:function(bR){var e=bR.nodeName.toLowerCase();return e==="input"&&"button"===bR.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(bR,e){return e===0},last:function(bS,bR,e,bT){return bR===bT.length-1},even:function(bR,e){return e%2===0},odd:function(bR,e){return e%2===1},lt:function(bS,bR,e){return bRe[3]-0},nth:function(bS,bR,e){return e[3]-0===bR},eq:function(bS,bR,e){return e[3]-0===bR}},filter:{PSEUDO:function(bS,bX,bW,bY){var e=bX[1],bR=bE.filters[e];if(bR){return bR(bS,bW,bX,bY)}else{if(e==="contains"){return(bS.textContent||bS.innerText||bw([bS])||"").indexOf(bX[3])>=0}else{if(e==="not"){var bT=bX[3];for(var bV=0,bU=bT.length;bV=0)}}},ID:function(bR,e){return bR.nodeType===1&&bR.getAttribute("id")===e},TAG:function(bR,e){return(e==="*"&&bR.nodeType===1)||!!bR.nodeName&&bR.nodeName.toLowerCase()===e},CLASS:function(bR,e){return(" "+(bR.className||bR.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(bV,bT){var bS=bT[1],e=by.attr?by.attr(bV,bS):bE.attrHandle[bS]?bE.attrHandle[bS](bV):bV[bS]!=null?bV[bS]:bV.getAttribute(bS),bW=e+"",bU=bT[2],bR=bT[4];return e==null?bU==="!=":!bU&&by.attr?e!=null:bU==="="?bW===bR:bU==="*="?bW.indexOf(bR)>=0:bU==="~="?(" "+bW+" ").indexOf(bR)>=0:!bR?bW&&e!==false:bU==="!="?bW!==bR:bU==="^="?bW.indexOf(bR)===0:bU==="$="?bW.substr(bW.length-bR.length)===bR:bU==="|="?bW===bR||bW.substr(0,bR.length+1)===bR+"-":false},POS:function(bU,bR,bS,bV){var e=bR[2],bT=bE.setFilters[e];if(bT){return bT(bU,bS,bR,bV)}}}};var bD=bE.match.POS,bx=function(bR,e){return"\\"+(e-0+1)};for(var bz in bE.match){bE.match[bz]=new RegExp(bE.match[bz].source+(/(?![^\[]*\])(?![^\(]*\))/.source));bE.leftMatch[bz]=new RegExp(/(^(?:.|\r|\n)*?)/.source+bE.match[bz].source.replace(/\\(\d+)/g,bx))}var bF=function(bR,e){bR=Array.prototype.slice.call(bR,0);if(e){e.push.apply(e,bR);return e}return bR};try{Array.prototype.slice.call(av.documentElement.childNodes,0)[0].nodeType}catch(bP){bF=function(bU,bT){var bS=0,bR=bT||[];if(bL.call(bU)==="[object Array]"){Array.prototype.push.apply(bR,bU)}else{if(typeof bU.length==="number"){for(var e=bU.length;bS";e.insertBefore(bR,e.firstChild);if(av.getElementById(bS)){bE.find.ID=function(bU,bV,bW){if(typeof bV.getElementById!=="undefined"&&!bW){var bT=bV.getElementById(bU[1]);return bT?bT.id===bU[1]||typeof bT.getAttributeNode!=="undefined"&&bT.getAttributeNode("id").nodeValue===bU[1]?[bT]:L:[]}};bE.filter.ID=function(bV,bT){var bU=typeof bV.getAttributeNode!=="undefined"&&bV.getAttributeNode("id");return bV.nodeType===1&&bU&&bU.nodeValue===bT}}e.removeChild(bR);e=bR=null})();(function(){var e=av.createElement("div");e.appendChild(av.createComment(""));if(e.getElementsByTagName("*").length>0){bE.find.TAG=function(bR,bV){var bU=bV.getElementsByTagName(bR[1]);if(bR[1]==="*"){var bT=[];for(var bS=0;bU[bS];bS++){if(bU[bS].nodeType===1){bT.push(bU[bS])}}bU=bT}return bU}}e.innerHTML="";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){bE.attrHandle.href=function(bR){return bR.getAttribute("href",2)}}e=null})();if(av.querySelectorAll){(function(){var e=by,bT=av.createElement("div"),bS="__sizzle__";bT.innerHTML="

    ";if(bT.querySelectorAll&&bT.querySelectorAll(".TEST").length===0){return}by=function(b4,bV,bZ,b3){bV=bV||av;if(!b3&&!by.isXML(bV)){var b2=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b4);if(b2&&(bV.nodeType===1||bV.nodeType===9)){if(b2[1]){return bF(bV.getElementsByTagName(b4),bZ)}else{if(b2[2]&&bE.find.CLASS&&bV.getElementsByClassName){return bF(bV.getElementsByClassName(b2[2]),bZ)}}}if(bV.nodeType===9){if(b4==="body"&&bV.body){return bF([bV.body],bZ)}else{if(b2&&b2[3]){var bY=bV.getElementById(b2[3]);if(bY&&bY.parentNode){if(bY.id===b2[3]){return bF([bY],bZ)}}else{return bF([],bZ)}}}try{return bF(bV.querySelectorAll(b4),bZ)}catch(b0){}}else{if(bV.nodeType===1&&bV.nodeName.toLowerCase()!=="object"){var bW=bV,bX=bV.getAttribute("id"),bU=bX||bS,b6=bV.parentNode,b5=/^\s*[+~]/.test(b4);if(!bX){bV.setAttribute("id",bU)}else{bU=bU.replace(/'/g,"\\$&")}if(b5&&b6){bV=bV.parentNode}try{if(!b5||b6){return bF(bV.querySelectorAll("[id='"+bU+"'] "+b4),bZ)}}catch(b1){}finally{if(!bX){bW.removeAttribute("id")}}}}}return e(b4,bV,bZ,b3)};for(var bR in e){by[bR]=e[bR]}bT=null})()}(function(){var e=av.documentElement,bS=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(bS){var bU=!bS.call(av.createElement("div"),"div"),bR=false;try{bS.call(av.documentElement,"[test!='']:sizzle")}catch(bT){bR=true}by.matchesSelector=function(bW,bY){bY=bY.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!by.isXML(bW)){try{if(bR||!bE.match.PSEUDO.test(bY)&&!/!=/.test(bY)){var bV=bS.call(bW,bY);if(bV||!bU||bW.document&&bW.document.nodeType!==11){return bV}}}catch(bX){}}return by(bY,null,null,[bW]).length>0}}})();(function(){var e=av.createElement("div");e.innerHTML="
    ";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}bE.order.splice(1,0,"CLASS");bE.find.CLASS=function(bR,bS,bT){if(typeof bS.getElementsByClassName!=="undefined"&&!bT){return bS.getElementsByClassName(bR[1])}};e=null})();function bv(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT0){bU=e;break}}}e=e[bR]}bZ[bT]=bU}}}if(av.documentElement.contains){by.contains=function(bR,e){return bR!==e&&(bR.contains?bR.contains(e):true)}}else{if(av.documentElement.compareDocumentPosition){by.contains=function(bR,e){return !!(bR.compareDocumentPosition(e)&16)}}else{by.contains=function(){return false}}}by.isXML=function(e){var bR=(e?e.ownerDocument||e:0).documentElement;return bR?bR.nodeName!=="HTML":false};var bM=function(bS,e,bW){var bV,bX=[],bU="",bY=e.nodeType?[e]:e;while((bV=bE.match.PSEUDO.exec(bS))){bU+=bV[0];bS=bS.replace(bE.match.PSEUDO,"")}bS=bE.relative[bS]?bS+"*":bS;for(var bT=0,bR=bY.length;bT0){for(bB=bA;bB=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(by,bx){var bv=[],bw,e,bz=this[0];if(b.isArray(by)){var bB=1;while(bz&&bz.ownerDocument&&bz!==bx){for(bw=0;bw-1:b.find.matchesSelector(bz,by)){bv.push(bz);break}else{bz=bz.parentNode;if(!bz||!bz.ownerDocument||bz===bx||bz.nodeType===11){break}}}}bv=bv.length>1?b.unique(bv):bv;return this.pushStack(bv,"closest",by)},index:function(e){if(!e){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1}if(typeof e==="string"){return b.inArray(this[0],b(e))}return b.inArray(e.jquery?e[0]:e,this)},add:function(e,bv){var bx=typeof e==="string"?b(e,bv):b.makeArray(e&&e.nodeType?[e]:e),bw=b.merge(this.get(),bx);return this.pushStack(C(bx[0])||C(bw[0])?bw:b.unique(bw))},andSelf:function(){return this.add(this.prevObject)}});function C(e){return !e||!e.parentNode||e.parentNode.nodeType===11}b.each({parent:function(bv){var e=bv.parentNode;return e&&e.nodeType!==11?e:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(bv,e,bw){return b.dir(bv,"parentNode",bw)},next:function(e){return b.nth(e,2,"nextSibling")},prev:function(e){return b.nth(e,2,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(bv,e,bw){return b.dir(bv,"nextSibling",bw)},prevUntil:function(bv,e,bw){return b.dir(bv,"previousSibling",bw)},siblings:function(e){return b.sibling(e.parentNode.firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.makeArray(e.childNodes)}},function(e,bv){b.fn[e]=function(by,bw){var bx=b.map(this,bv,by);if(!ab.test(e)){bw=by}if(bw&&typeof bw==="string"){bx=b.filter(bw,bx)}bx=this.length>1&&!ay[e]?b.unique(bx):bx;if((this.length>1||a9.test(bw))&&aq.test(e)){bx=bx.reverse()}return this.pushStack(bx,e,P.call(arguments).join(","))}});b.extend({filter:function(bw,e,bv){if(bv){bw=":not("+bw+")"}return e.length===1?b.find.matchesSelector(e[0],bw)?[e[0]]:[]:b.find.matches(bw,e)},dir:function(bw,bv,by){var e=[],bx=bw[bv];while(bx&&bx.nodeType!==9&&(by===L||bx.nodeType!==1||!b(bx).is(by))){if(bx.nodeType===1){e.push(bx)}bx=bx[bv]}return e},nth:function(by,e,bw,bx){e=e||1;var bv=0;for(;by;by=by[bw]){if(by.nodeType===1&&++bv===e){break}}return by},sibling:function(bw,bv){var e=[];for(;bw;bw=bw.nextSibling){if(bw.nodeType===1&&bw!==bv){e.push(bw)}}return e}});function aG(bx,bw,e){bw=bw||0;if(b.isFunction(bw)){return b.grep(bx,function(bz,by){var bA=!!bw.call(bz,by,bz);return bA===e})}else{if(bw.nodeType){return b.grep(bx,function(bz,by){return(bz===bw)===e})}else{if(typeof bw==="string"){var bv=b.grep(bx,function(by){return by.nodeType===1});if(bp.test(bw)){return b.filter(bw,bv,!e)}else{bw=b.filter(bw,bv)}}}}return b.grep(bx,function(bz,by){return(b.inArray(bz,bw)>=0)===e})}function a(e){var bw=aR.split("|"),bv=e.createDocumentFragment();if(bv.createElement){while(bw.length){bv.createElement(bw.pop())}}return bv}var aR="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ag=/ jQuery\d+="(?:\d+|null)"/g,ar=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,d=/<([\w:]+)/,w=/",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},ac=a(av);ax.optgroup=ax.option;ax.tbody=ax.tfoot=ax.colgroup=ax.caption=ax.thead;ax.th=ax.td;if(!b.support.htmlSerialize){ax._default=[1,"div
    ","
    "]}b.fn.extend({text:function(e){if(b.isFunction(e)){return this.each(function(bw){var bv=b(this);bv.text(e.call(this,bw,bv.text()))})}if(typeof e!=="object"&&e!==L){return this.empty().append((this[0]&&this[0].ownerDocument||av).createTextNode(e))}return b.text(this)},wrapAll:function(e){if(b.isFunction(e)){return this.each(function(bw){b(this).wrapAll(e.call(this,bw))})}if(this[0]){var bv=b(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){bv.insertBefore(this[0])}bv.map(function(){var bw=this;while(bw.firstChild&&bw.firstChild.nodeType===1){bw=bw.firstChild}return bw}).append(this)}return this},wrapInner:function(e){if(b.isFunction(e)){return this.each(function(bv){b(this).wrapInner(e.call(this,bv))})}return this.each(function(){var bv=b(this),bw=bv.contents();if(bw.length){bw.wrapAll(e)}else{bv.append(e)}})},wrap:function(e){var bv=b.isFunction(e);return this.each(function(bw){b(this).wrapAll(bv?e.call(this,bw):e)})},unwrap:function(){return this.parent().each(function(){if(!b.nodeName(this,"body")){b(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.appendChild(e)}})},prepend:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.insertBefore(e,this.firstChild)}})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this)})}else{if(arguments.length){var e=b.clean(arguments);e.push.apply(e,this.toArray());return this.pushStack(e,"before",arguments)}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this.nextSibling)})}else{if(arguments.length){var e=this.pushStack(this,"after",arguments);e.push.apply(e,b.clean(arguments));return e}}},remove:function(e,bx){for(var bv=0,bw;(bw=this[bv])!=null;bv++){if(!e||b.filter(e,[bw]).length){if(!bx&&bw.nodeType===1){b.cleanData(bw.getElementsByTagName("*"));b.cleanData([bw])}if(bw.parentNode){bw.parentNode.removeChild(bw)}}}return this},empty:function(){for(var e=0,bv;(bv=this[e])!=null;e++){if(bv.nodeType===1){b.cleanData(bv.getElementsByTagName("*"))}while(bv.firstChild){bv.removeChild(bv.firstChild)}}return this},clone:function(bv,e){bv=bv==null?false:bv;e=e==null?bv:e;return this.map(function(){return b.clone(this,bv,e)})},html:function(bx){if(bx===L){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(ag,""):null}else{if(typeof bx==="string"&&!ae.test(bx)&&(b.support.leadingWhitespace||!ar.test(bx))&&!ax[(d.exec(bx)||["",""])[1].toLowerCase()]){bx=bx.replace(R,"<$1>");try{for(var bw=0,bv=this.length;bw1&&bw0?this.clone(true):this).get();b(bC[bA])[bv](by);bz=bz.concat(by)}return this.pushStack(bz,e,bC.selector)}}});function bg(e){if(typeof e.getElementsByTagName!=="undefined"){return e.getElementsByTagName("*")}else{if(typeof e.querySelectorAll!=="undefined"){return e.querySelectorAll("*")}else{return[]}}}function az(e){if(e.type==="checkbox"||e.type==="radio"){e.defaultChecked=e.checked}}function E(e){var bv=(e.nodeName||"").toLowerCase();if(bv==="input"){az(e)}else{if(bv!=="script"&&typeof e.getElementsByTagName!=="undefined"){b.grep(e.getElementsByTagName("input"),az)}}}function al(e){var bv=av.createElement("div");ac.appendChild(bv);bv.innerHTML=e.outerHTML;return bv.firstChild}b.extend({clone:function(by,bA,bw){var e,bv,bx,bz=b.support.html5Clone||!ah.test("<"+by.nodeName)?by.cloneNode(true):al(by);if((!b.support.noCloneEvent||!b.support.noCloneChecked)&&(by.nodeType===1||by.nodeType===11)&&!b.isXMLDoc(by)){ai(by,bz);e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){if(bv[bx]){ai(e[bx],bv[bx])}}}if(bA){t(by,bz);if(bw){e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){t(e[bx],bv[bx])}}}e=bv=null;return bz},clean:function(bw,by,bH,bA){var bF;by=by||av;if(typeof by.createElement==="undefined"){by=by.ownerDocument||by[0]&&by[0].ownerDocument||av}var bI=[],bB;for(var bE=0,bz;(bz=bw[bE])!=null;bE++){if(typeof bz==="number"){bz+=""}if(!bz){continue}if(typeof bz==="string"){if(!W.test(bz)){bz=by.createTextNode(bz)}else{bz=bz.replace(R,"<$1>");var bK=(d.exec(bz)||["",""])[1].toLowerCase(),bx=ax[bK]||ax._default,bD=bx[0],bv=by.createElement("div");if(by===av){ac.appendChild(bv)}else{a(by).appendChild(bv)}bv.innerHTML=bx[1]+bz+bx[2];while(bD--){bv=bv.lastChild}if(!b.support.tbody){var e=w.test(bz),bC=bK==="table"&&!e?bv.firstChild&&bv.firstChild.childNodes:bx[1]===""&&!e?bv.childNodes:[];for(bB=bC.length-1;bB>=0;--bB){if(b.nodeName(bC[bB],"tbody")&&!bC[bB].childNodes.length){bC[bB].parentNode.removeChild(bC[bB])}}}if(!b.support.leadingWhitespace&&ar.test(bz)){bv.insertBefore(by.createTextNode(ar.exec(bz)[0]),bv.firstChild)}bz=bv.childNodes}}var bG;if(!b.support.appendChecked){if(bz[0]&&typeof(bG=bz.length)==="number"){for(bB=0;bB=0){return bx+"px"}}else{return bx}}}});if(!b.support.opacity){b.cssHooks.opacity={get:function(bv,e){return au.test((e&&bv.currentStyle?bv.currentStyle.filter:bv.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":e?"1":""},set:function(by,bz){var bx=by.style,bv=by.currentStyle,e=b.isNumeric(bz)?"alpha(opacity="+bz*100+")":"",bw=bv&&bv.filter||bx.filter||"";bx.zoom=1;if(bz>=1&&b.trim(bw.replace(ak,""))===""){bx.removeAttribute("filter");if(bv&&!bv.filter){return}}bx.filter=ak.test(bw)?bw.replace(ak,e):bw+" "+e}}}b(function(){if(!b.support.reliableMarginRight){b.cssHooks.marginRight={get:function(bw,bv){var e;b.swap(bw,{display:"inline-block"},function(){if(bv){e=Z(bw,"margin-right","marginRight")}else{e=bw.style.marginRight}});return e}}}});if(av.defaultView&&av.defaultView.getComputedStyle){aI=function(by,bw){var bv,bx,e;bw=bw.replace(z,"-$1").toLowerCase();if((bx=by.ownerDocument.defaultView)&&(e=bx.getComputedStyle(by,null))){bv=e.getPropertyValue(bw);if(bv===""&&!b.contains(by.ownerDocument.documentElement,by)){bv=b.style(by,bw)}}return bv}}if(av.documentElement.currentStyle){aX=function(bz,bw){var bA,e,by,bv=bz.currentStyle&&bz.currentStyle[bw],bx=bz.style;if(bv===null&&bx&&(by=bx[bw])){bv=by}if(!bc.test(bv)&&bn.test(bv)){bA=bx.left;e=bz.runtimeStyle&&bz.runtimeStyle.left;if(e){bz.runtimeStyle.left=bz.currentStyle.left}bx.left=bw==="fontSize"?"1em":(bv||0);bv=bx.pixelLeft+"px";bx.left=bA;if(e){bz.runtimeStyle.left=e}}return bv===""?"auto":bv}}Z=aI||aX;function p(by,bw,bv){var bA=bw==="width"?by.offsetWidth:by.offsetHeight,bz=bw==="width"?an:a1,bx=0,e=bz.length;if(bA>0){if(bv!=="border"){for(;bx)<[^<]*)*<\/script>/gi,q=/^(?:select|textarea)/i,h=/\s+/,br=/([?&])_=[^&]*/,K=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,A=b.fn.load,aa={},r={},aE,s,aV=["*/"]+["*"];try{aE=bl.href}catch(aw){aE=av.createElement("a");aE.href="";aE=aE.href}s=K.exec(aE.toLowerCase())||[];function f(e){return function(by,bA){if(typeof by!=="string"){bA=by;by="*"}if(b.isFunction(bA)){var bx=by.toLowerCase().split(h),bw=0,bz=bx.length,bv,bB,bC;for(;bw=0){var e=bw.slice(by,bw.length);bw=bw.slice(0,by)}var bx="GET";if(bz){if(b.isFunction(bz)){bA=bz;bz=L}else{if(typeof bz==="object"){bz=b.param(bz,b.ajaxSettings.traditional);bx="POST"}}}var bv=this;b.ajax({url:bw,type:bx,dataType:"html",data:bz,complete:function(bC,bB,bD){bD=bC.responseText;if(bC.isResolved()){bC.done(function(bE){bD=bE});bv.html(e?b("
    ").append(bD.replace(a6,"")).find(e):bD)}if(bA){bv.each(bA,[bD,bB,bC])}}});return this},serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?b.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||q.test(this.nodeName)||aZ.test(this.type))}).map(function(e,bv){var bw=b(this).val();return bw==null?null:b.isArray(bw)?b.map(bw,function(by,bx){return{name:bv.name,value:by.replace(bs,"\r\n")}}):{name:bv.name,value:bw.replace(bs,"\r\n")}}).get()}});b.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,bv){b.fn[bv]=function(bw){return this.on(bv,bw)}});b.each(["get","post"],function(e,bv){b[bv]=function(bw,by,bz,bx){if(b.isFunction(by)){bx=bx||bz;bz=by;by=L}return b.ajax({type:bv,url:bw,data:by,success:bz,dataType:bx})}});b.extend({getScript:function(e,bv){return b.get(e,L,bv,"script")},getJSON:function(e,bv,bw){return b.get(e,bv,bw,"json")},ajaxSetup:function(bv,e){if(e){am(bv,b.ajaxSettings)}else{e=bv;bv=b.ajaxSettings}am(bv,e);return bv},ajaxSettings:{url:aE,isLocal:aM.test(s[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":aV},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":bb.String,"text html":true,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:f(aa),ajaxTransport:f(r),ajax:function(bz,bx){if(typeof bz==="object"){bx=bz;bz=L}bx=bx||{};var bD=b.ajaxSetup({},bx),bS=bD.context||bD,bG=bS!==bD&&(bS.nodeType||bS instanceof b)?b(bS):b.event,bR=b.Deferred(),bN=b.Callbacks("once memory"),bB=bD.statusCode||{},bC,bH={},bO={},bQ,by,bL,bE,bI,bA=0,bw,bK,bJ={readyState:0,setRequestHeader:function(bT,bU){if(!bA){var e=bT.toLowerCase();bT=bO[e]=bO[e]||bT;bH[bT]=bU}return this},getAllResponseHeaders:function(){return bA===2?bQ:null},getResponseHeader:function(bT){var e;if(bA===2){if(!by){by={};while((e=aD.exec(bQ))){by[e[1].toLowerCase()]=e[2]}}e=by[bT.toLowerCase()]}return e===L?null:e},overrideMimeType:function(e){if(!bA){bD.mimeType=e}return this},abort:function(e){e=e||"abort";if(bL){bL.abort(e)}bF(0,e);return this}};function bF(bZ,bU,b0,bW){if(bA===2){return}bA=2;if(bE){clearTimeout(bE)}bL=L;bQ=bW||"";bJ.readyState=bZ>0?4:0;var bT,b4,b3,bX=bU,bY=b0?bj(bD,bJ,b0):L,bV,b2;if(bZ>=200&&bZ<300||bZ===304){if(bD.ifModified){if((bV=bJ.getResponseHeader("Last-Modified"))){b.lastModified[bC]=bV}if((b2=bJ.getResponseHeader("Etag"))){b.etag[bC]=b2}}if(bZ===304){bX="notmodified";bT=true}else{try{b4=G(bD,bY);bX="success";bT=true}catch(b1){bX="parsererror";b3=b1}}}else{b3=bX;if(!bX||bZ){bX="error";if(bZ<0){bZ=0}}}bJ.status=bZ;bJ.statusText=""+(bU||bX);if(bT){bR.resolveWith(bS,[b4,bX,bJ])}else{bR.rejectWith(bS,[bJ,bX,b3])}bJ.statusCode(bB);bB=L;if(bw){bG.trigger("ajax"+(bT?"Success":"Error"),[bJ,bD,bT?b4:b3])}bN.fireWith(bS,[bJ,bX]);if(bw){bG.trigger("ajaxComplete",[bJ,bD]);if(!(--b.active)){b.event.trigger("ajaxStop")}}}bR.promise(bJ);bJ.success=bJ.done;bJ.error=bJ.fail;bJ.complete=bN.add;bJ.statusCode=function(bT){if(bT){var e;if(bA<2){for(e in bT){bB[e]=[bB[e],bT[e]]}}else{e=bT[bJ.status];bJ.then(e,e)}}return this};bD.url=((bz||bD.url)+"").replace(bq,"").replace(c,s[1]+"//");bD.dataTypes=b.trim(bD.dataType||"*").toLowerCase().split(h);if(bD.crossDomain==null){bI=K.exec(bD.url.toLowerCase());bD.crossDomain=!!(bI&&(bI[1]!=s[1]||bI[2]!=s[2]||(bI[3]||(bI[1]==="http:"?80:443))!=(s[3]||(s[1]==="http:"?80:443))))}if(bD.data&&bD.processData&&typeof bD.data!=="string"){bD.data=b.param(bD.data,bD.traditional)}aW(aa,bD,bx,bJ);if(bA===2){return false}bw=bD.global;bD.type=bD.type.toUpperCase();bD.hasContent=!aQ.test(bD.type);if(bw&&b.active++===0){b.event.trigger("ajaxStart")}if(!bD.hasContent){if(bD.data){bD.url+=(M.test(bD.url)?"&":"?")+bD.data;delete bD.data}bC=bD.url;if(bD.cache===false){var bv=b.now(),bP=bD.url.replace(br,"$1_="+bv);bD.url=bP+((bP===bD.url)?(M.test(bD.url)?"&":"?")+"_="+bv:"")}}if(bD.data&&bD.hasContent&&bD.contentType!==false||bx.contentType){bJ.setRequestHeader("Content-Type",bD.contentType)}if(bD.ifModified){bC=bC||bD.url;if(b.lastModified[bC]){bJ.setRequestHeader("If-Modified-Since",b.lastModified[bC])}if(b.etag[bC]){bJ.setRequestHeader("If-None-Match",b.etag[bC])}}bJ.setRequestHeader("Accept",bD.dataTypes[0]&&bD.accepts[bD.dataTypes[0]]?bD.accepts[bD.dataTypes[0]]+(bD.dataTypes[0]!=="*"?", "+aV+"; q=0.01":""):bD.accepts["*"]);for(bK in bD.headers){bJ.setRequestHeader(bK,bD.headers[bK])}if(bD.beforeSend&&(bD.beforeSend.call(bS,bJ,bD)===false||bA===2)){bJ.abort();return false}for(bK in {success:1,error:1,complete:1}){bJ[bK](bD[bK])}bL=aW(r,bD,bx,bJ);if(!bL){bF(-1,"No Transport")}else{bJ.readyState=1;if(bw){bG.trigger("ajaxSend",[bJ,bD])}if(bD.async&&bD.timeout>0){bE=setTimeout(function(){bJ.abort("timeout")},bD.timeout)}try{bA=1;bL.send(bH,bF)}catch(bM){if(bA<2){bF(-1,bM)}else{throw bM}}}return bJ},param:function(e,bw){var bv=[],by=function(bz,bA){bA=b.isFunction(bA)?bA():bA;bv[bv.length]=encodeURIComponent(bz)+"="+encodeURIComponent(bA)};if(bw===L){bw=b.ajaxSettings.traditional}if(b.isArray(e)||(e.jquery&&!b.isPlainObject(e))){b.each(e,function(){by(this.name,this.value)})}else{for(var bx in e){v(bx,e[bx],bw,by)}}return bv.join("&").replace(k,"+")}});function v(bw,by,bv,bx){if(b.isArray(by)){b.each(by,function(bA,bz){if(bv||ap.test(bw)){bx(bw,bz)}else{v(bw+"["+(typeof bz==="object"||b.isArray(bz)?bA:"")+"]",bz,bv,bx)}})}else{if(!bv&&by!=null&&typeof by==="object"){for(var e in by){v(bw+"["+e+"]",by[e],bv,bx)}}else{bx(bw,by)}}}b.extend({active:0,lastModified:{},etag:{}});function bj(bD,bC,bz){var bv=bD.contents,bB=bD.dataTypes,bw=bD.responseFields,by,bA,bx,e;for(bA in bw){if(bA in bz){bC[bw[bA]]=bz[bA]}}while(bB[0]==="*"){bB.shift();if(by===L){by=bD.mimeType||bC.getResponseHeader("content-type")}}if(by){for(bA in bv){if(bv[bA]&&bv[bA].test(by)){bB.unshift(bA);break}}}if(bB[0] in bz){bx=bB[0]}else{for(bA in bz){if(!bB[0]||bD.converters[bA+" "+bB[0]]){bx=bA;break}if(!e){e=bA}}bx=bx||e}if(bx){if(bx!==bB[0]){bB.unshift(bx)}return bz[bx]}}function G(bH,bz){if(bH.dataFilter){bz=bH.dataFilter(bz,bH.dataType)}var bD=bH.dataTypes,bG={},bA,bE,bw=bD.length,bB,bC=bD[0],bx,by,bF,bv,e;for(bA=1;bA=bw.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();bw.animatedProperties[this.prop]=true;for(bA in bw.animatedProperties){if(bw.animatedProperties[bA]!==true){e=false}}if(e){if(bw.overflow!=null&&!b.support.shrinkWrapBlocks){b.each(["","X","Y"],function(bC,bD){bz.style["overflow"+bD]=bw.overflow[bC]})}if(bw.hide){b(bz).hide()}if(bw.hide||bw.show){for(bA in bw.animatedProperties){b.style(bz,bA,bw.orig[bA]);b.removeData(bz,"fxshow"+bA,true);b.removeData(bz,"toggle"+bA,true)}}bv=bw.complete;if(bv){bw.complete=false;bv.call(bz)}}return false}else{if(bw.duration==Infinity){this.now=bx}else{bB=bx-this.startTime;this.state=bB/bw.duration;this.pos=b.easing[bw.animatedProperties[this.prop]](this.state,bB,0,1,bw.duration);this.now=this.start+((this.end-this.start)*this.pos)}this.update()}return true}};b.extend(b.fx,{tick:function(){var bw,bv=b.timers,e=0;for(;e").appendTo(e),bw=bv.css("display");bv.remove();if(bw==="none"||bw===""){if(!a8){a8=av.createElement("iframe");a8.frameBorder=a8.width=a8.height=0}e.appendChild(a8);if(!m||!a8.createElement){m=(a8.contentWindow||a8.contentDocument).document;m.write((av.compatMode==="CSS1Compat"?"":"")+"");m.close()}bv=m.createElement(bx);m.body.appendChild(bv);bw=b.css(bv,"display");e.removeChild(a8)}Q[bx]=bw}return Q[bx]}var V=/^t(?:able|d|h)$/i,ad=/^(?:body|html)$/i;if("getBoundingClientRect" in av.documentElement){b.fn.offset=function(bI){var by=this[0],bB;if(bI){return this.each(function(e){b.offset.setOffset(this,bI,e)})}if(!by||!by.ownerDocument){return null}if(by===by.ownerDocument.body){return b.offset.bodyOffset(by)}try{bB=by.getBoundingClientRect()}catch(bF){}var bH=by.ownerDocument,bw=bH.documentElement;if(!bB||!b.contains(bw,by)){return bB?{top:bB.top,left:bB.left}:{top:0,left:0}}var bC=bH.body,bD=aK(bH),bA=bw.clientTop||bC.clientTop||0,bE=bw.clientLeft||bC.clientLeft||0,bv=bD.pageYOffset||b.support.boxModel&&bw.scrollTop||bC.scrollTop,bz=bD.pageXOffset||b.support.boxModel&&bw.scrollLeft||bC.scrollLeft,bG=bB.top+bv-bA,bx=bB.left+bz-bE;return{top:bG,left:bx}}}else{b.fn.offset=function(bF){var bz=this[0];if(bF){return this.each(function(bG){b.offset.setOffset(this,bF,bG)})}if(!bz||!bz.ownerDocument){return null}if(bz===bz.ownerDocument.body){return b.offset.bodyOffset(bz)}var bC,bw=bz.offsetParent,bv=bz,bE=bz.ownerDocument,bx=bE.documentElement,bA=bE.body,bB=bE.defaultView,e=bB?bB.getComputedStyle(bz,null):bz.currentStyle,bD=bz.offsetTop,by=bz.offsetLeft;while((bz=bz.parentNode)&&bz!==bA&&bz!==bx){if(b.support.fixedPosition&&e.position==="fixed"){break}bC=bB?bB.getComputedStyle(bz,null):bz.currentStyle;bD-=bz.scrollTop;by-=bz.scrollLeft;if(bz===bw){bD+=bz.offsetTop;by+=bz.offsetLeft;if(b.support.doesNotAddBorder&&!(b.support.doesAddBorderForTableAndCells&&V.test(bz.nodeName))){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}bv=bw;bw=bz.offsetParent}if(b.support.subtractsBorderForOverflowNotVisible&&bC.overflow!=="visible"){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}e=bC}if(e.position==="relative"||e.position==="static"){bD+=bA.offsetTop;by+=bA.offsetLeft}if(b.support.fixedPosition&&e.position==="fixed"){bD+=Math.max(bx.scrollTop,bA.scrollTop);by+=Math.max(bx.scrollLeft,bA.scrollLeft)}return{top:bD,left:by}}}b.offset={bodyOffset:function(e){var bw=e.offsetTop,bv=e.offsetLeft;if(b.support.doesNotIncludeMarginInBodyOffset){bw+=parseFloat(b.css(e,"marginTop"))||0;bv+=parseFloat(b.css(e,"marginLeft"))||0}return{top:bw,left:bv}},setOffset:function(bx,bG,bA){var bB=b.css(bx,"position");if(bB==="static"){bx.style.position="relative"}var bz=b(bx),bv=bz.offset(),e=b.css(bx,"top"),bE=b.css(bx,"left"),bF=(bB==="absolute"||bB==="fixed")&&b.inArray("auto",[e,bE])>-1,bD={},bC={},bw,by;if(bF){bC=bz.position();bw=bC.top;by=bC.left}else{bw=parseFloat(e)||0;by=parseFloat(bE)||0}if(b.isFunction(bG)){bG=bG.call(bx,bA,bv)}if(bG.top!=null){bD.top=(bG.top-bv.top)+bw}if(bG.left!=null){bD.left=(bG.left-bv.left)+by}if("using" in bG){bG.using.call(bx,bD)}else{bz.css(bD)}}};b.fn.extend({position:function(){if(!this[0]){return null}var bw=this[0],bv=this.offsetParent(),bx=this.offset(),e=ad.test(bv[0].nodeName)?{top:0,left:0}:bv.offset();bx.top-=parseFloat(b.css(bw,"marginTop"))||0;bx.left-=parseFloat(b.css(bw,"marginLeft"))||0;e.top+=parseFloat(b.css(bv[0],"borderTopWidth"))||0;e.left+=parseFloat(b.css(bv[0],"borderLeftWidth"))||0;return{top:bx.top-e.top,left:bx.left-e.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||av.body;while(e&&(!ad.test(e.nodeName)&&b.css(e,"position")==="static")){e=e.offsetParent}return e})}});b.each(["Left","Top"],function(bv,e){var bw="scroll"+e;b.fn[bw]=function(bz){var bx,by;if(bz===L){bx=this[0];if(!bx){return null}by=aK(bx);return by?("pageXOffset" in by)?by[bv?"pageYOffset":"pageXOffset"]:b.support.boxModel&&by.document.documentElement[bw]||by.document.body[bw]:bx[bw]}return this.each(function(){by=aK(this);if(by){by.scrollTo(!bv?bz:b(by).scrollLeft(),bv?bz:b(by).scrollTop())}else{this[bw]=bz}})}});function aK(e){return b.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:false}b.each(["Height","Width"],function(bv,e){var bw=e.toLowerCase();b.fn["inner"+e]=function(){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,"padding")):this[bw]():null};b.fn["outer"+e]=function(by){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,by?"margin":"border")):this[bw]():null};b.fn[bw]=function(bz){var bA=this[0];if(!bA){return bz==null?null:this}if(b.isFunction(bz)){return this.each(function(bE){var bD=b(this);bD[bw](bz.call(this,bE,bD[bw]()))})}if(b.isWindow(bA)){var bB=bA.document.documentElement["client"+e],bx=bA.document.body;return bA.document.compatMode==="CSS1Compat"&&bB||bx&&bx["client"+e]||bB}else{if(bA.nodeType===9){return Math.max(bA.documentElement["client"+e],bA.body["scroll"+e],bA.documentElement["scroll"+e],bA.body["offset"+e],bA.documentElement["offset"+e])}else{if(bz===L){var bC=b.css(bA,bw),by=parseFloat(bC);return b.isNumeric(by)?by:bC}else{return this.css(bw,typeof bz==="string"?bz:bz+"px")}}}}});bb.jQuery=bb.$=b;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return b})}})(window);/*! - * jQuery UI 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI - */ -(function(a,d){a.ui=a.ui||{};if(a.ui.version){return}a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(e,f){return typeof e==="number"?this.each(function(){var g=this;setTimeout(function(){a(g).focus();if(f){f.call(g)}},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){e=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{e=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!e.length?a(document):e},zIndex:function(h){if(h!==d){return this.css("zIndex",h)}if(this.length){var f=a(this[0]),e,g;while(f.length&&f[0]!==document){e=f.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){g=parseInt(f.css("zIndex"),10);if(!isNaN(g)&&g!==0){return g}}f=f.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});a.each(["Width","Height"],function(g,e){var f=e==="Width"?["Left","Right"]:["Top","Bottom"],h=e.toLowerCase(),k={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function j(m,l,i,n){a.each(f,function(){l-=parseFloat(a.curCSS(m,"padding"+this,true))||0;if(i){l-=parseFloat(a.curCSS(m,"border"+this+"Width",true))||0}if(n){l-=parseFloat(a.curCSS(m,"margin"+this,true))||0}});return l}a.fn["inner"+e]=function(i){if(i===d){return k["inner"+e].call(this)}return this.each(function(){a(this).css(h,j(this,i)+"px")})};a.fn["outer"+e]=function(i,l){if(typeof i!=="number"){return k["outer"+e].call(this,i)}return this.each(function(){a(this).css(h,j(this,i,true,l)+"px")})}});function c(g,e){var j=g.nodeName.toLowerCase();if("area"===j){var i=g.parentNode,h=i.name,f;if(!g.href||!h||i.nodeName.toLowerCase()!=="map"){return false}f=a("img[usemap=#"+h+"]")[0];return !!f&&b(f)}return(/input|select|textarea|button|object/.test(j)?!g.disabled:"a"==j?g.href||e:e)&&b(g)}function b(e){return !a(e).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}a.extend(a.expr[":"],{data:function(g,f,e){return !!a.data(g,e[3])},focusable:function(e){return c(e,!isNaN(a.attr(e,"tabindex")))},tabbable:function(g){var e=a.attr(g,"tabindex"),f=isNaN(e);return(f||e>=0)&&c(g,!f)}});a(function(){var e=document.body,f=e.appendChild(f=document.createElement("div"));f.offsetHeight;a.extend(f.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});a.support.minHeight=f.offsetHeight===100;a.support.selectstart="onselectstart" in f;e.removeChild(f).style.display="none"});a.extend(a.ui,{plugin:{add:function(f,g,j){var h=a.ui[f].prototype;for(var e in j){h.plugins[e]=h.plugins[e]||[];h.plugins[e].push([g,j[e]])}},call:function(e,g,f){var j=e.plugins[g];if(!j||!e.element[0].parentNode){return}for(var h=0;h0){return true}h[e]=1;g=(h[e]>0);h[e]=0;return g},isOverAxis:function(f,e,g){return(f>e)&&(f<(e+g))},isOver:function(j,f,i,h,e,g){return a.ui.isOverAxis(j,i,e)&&a.ui.isOverAxis(f,h,g)}})})(jQuery);/*! - * jQuery UI Widget 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */ -(function(b,d){if(b.cleanData){var c=b.cleanData;b.cleanData=function(f){for(var g=0,h;(h=f[g])!=null;g++){try{b(h).triggerHandler("remove")}catch(j){}}c(f)}}else{var a=b.fn.remove;b.fn.remove=function(e,f){return this.each(function(){if(!f){if(!e||b.filter(e,[this]).length){b("*",this).add([this]).each(function(){try{b(this).triggerHandler("remove")}catch(g){}})}}return a.call(b(this),e,f)})}}b.widget=function(f,h,e){var g=f.split(".")[0],j;f=f.split(".")[1];j=g+"-"+f;if(!e){e=h;h=b.Widget}b.expr[":"][j]=function(k){return !!b.data(k,f)};b[g]=b[g]||{};b[g][f]=function(k,l){if(arguments.length){this._createWidget(k,l)}};var i=new h();i.options=b.extend(true,{},i.options);b[g][f].prototype=b.extend(true,i,{namespace:g,widgetName:f,widgetEventPrefix:b[g][f].prototype.widgetEventPrefix||f,widgetBaseClass:j},e);b.widget.bridge(f,b[g][f])};b.widget.bridge=function(f,e){b.fn[f]=function(i){var g=typeof i==="string",h=Array.prototype.slice.call(arguments,1),j=this;i=!g&&h.length?b.extend.apply(null,[true,i].concat(h)):i;if(g&&i.charAt(0)==="_"){return j}if(g){this.each(function(){var k=b.data(this,f),l=k&&b.isFunction(k[i])?k[i].apply(k,h):k;if(l!==k&&l!==d){j=l;return false}})}else{this.each(function(){var k=b.data(this,f);if(k){k.option(i||{})._init()}else{b.data(this,f,new e(i,this))}})}return j}};b.Widget=function(e,f){if(arguments.length){this._createWidget(e,f)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(f,g){b.data(g,this.widgetName,this);this.element=b(g);this.options=b.extend(true,{},this.options,this._getCreateOptions(),f);var e=this;this.element.bind("remove."+this.widgetName,function(){e.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(f,g){var e=f;if(arguments.length===0){return b.extend({},this.options)}if(typeof f==="string"){if(g===d){return this.options[f]}e={};e[f]=g}this._setOptions(e);return this},_setOptions:function(f){var e=this;b.each(f,function(g,h){e._setOption(g,h)});return this},_setOption:function(e,f){this.options[e]=f;if(e==="disabled"){this.widget()[f?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",f)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(e,f,g){var j,i,h=this.options[e];g=g||{};f=b.Event(f);f.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase();f.target=this.element[0];i=f.originalEvent;if(i){for(j in i){if(!(j in f)){f[j]=i[j]}}}this.element.trigger(f,g);return !(b.isFunction(h)&&h.call(this.element[0],f,g)===false||f.isDefaultPrevented())}}})(jQuery);/*! - * jQuery UI Mouse 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Mouse - * - * Depends: - * jquery.ui.widget.js - */ -(function(b,c){var a=false;b(document).mouseup(function(d){a=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var d=this;this.element.bind("mousedown."+this.widgetName,function(e){return d._mouseDown(e)}).bind("click."+this.widgetName,function(e){if(true===b.data(e.target,d.widgetName+".preventClickEvent")){b.removeData(e.target,d.widgetName+".preventClickEvent");e.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(f){if(a){return}(this._mouseStarted&&this._mouseUp(f));this._mouseDownEvent=f;var e=this,g=(f.which==1),d=(typeof this.options.cancel=="string"&&f.target.nodeName?b(f.target).closest(this.options.cancel).length:false);if(!g||d||!this._mouseCapture(f)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(f)&&this._mouseDelayMet(f)){this._mouseStarted=(this._mouseStart(f)!==false);if(!this._mouseStarted){f.preventDefault();return true}}if(true===b.data(f.target,this.widgetName+".preventClickEvent")){b.removeData(f.target,this.widgetName+".preventClickEvent")}this._mouseMoveDelegate=function(h){return e._mouseMove(h)};this._mouseUpDelegate=function(h){return e._mouseUp(h)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);f.preventDefault();a=true;return true},_mouseMove:function(d){if(b.browser.msie&&!(document.documentMode>=9)&&!d.button){return this._mouseUp(d)}if(this._mouseStarted){this._mouseDrag(d);return d.preventDefault()}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,d)!==false);(this._mouseStarted?this._mouseDrag(d):this._mouseUp(d))}return !this._mouseStarted},_mouseUp:function(d){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;if(d.target==this._mouseDownEvent.target){b.data(d.target,this.widgetName+".preventClickEvent",true)}this._mouseStop(d)}return false},_mouseDistanceMet:function(d){return(Math.max(Math.abs(this._mouseDownEvent.pageX-d.pageX),Math.abs(this._mouseDownEvent.pageY-d.pageY))>=this.options.distance)},_mouseDelayMet:function(d){return this.mouseDelayMet},_mouseStart:function(d){},_mouseDrag:function(d){},_mouseStop:function(d){},_mouseCapture:function(d){return true}})})(jQuery);(function(c,d){c.widget("ui.resizable",c.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000},_create:function(){var f=this,k=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(k.aspectRatio),aspectRatio:k.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:k.helper||k.ghost||k.animate?k.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){this.element.wrap(c('
    ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=k.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var l=this.handles.split(",");this.handles={};for(var g=0;g
    ');if(/sw|se|ne|nw/.test(j)){h.css({zIndex:++k.zIndex})}if("se"==j){h.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[j]=".ui-resizable-"+j;this.element.append(h)}}this._renderAxis=function(q){q=q||this.element;for(var n in this.handles){if(this.handles[n].constructor==String){this.handles[n]=c(this.handles[n],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var o=c(this.handles[n],this.element),p=0;p=/sw|ne|nw|se|n|s/.test(n)?o.outerHeight():o.outerWidth();var m=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");q.css(m,p);this._proportionallyResize()}if(!c(this.handles[n]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!f.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}f.axis=i&&i[1]?i[1]:"se"}});if(k.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){if(k.disabled){return}c(this).removeClass("ui-resizable-autohide");f._handles.show()},function(){if(k.disabled){return}if(!f.resizing){c(this).addClass("ui-resizable-autohide");f._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var e=function(g){c(g).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){e(this.element);var f=this.element;f.after(this.originalElement.css({position:f.css("position"),width:f.outerWidth(),height:f.outerHeight(),top:f.css("top"),left:f.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);e(this.originalElement);return this},_mouseCapture:function(f){var g=false;for(var e in this.handles){if(c(this.handles[e])[0]==f.target){g=true}}return !this.options.disabled&&g},_mouseStart:function(g){var j=this.options,f=this.element.position(),e=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(e.is(".ui-draggable")||(/absolute/).test(e.css("position"))){e.css({position:"absolute",top:f.top,left:f.left})}this._renderProxy();var k=b(this.helper.css("left")),h=b(this.helper.css("top"));if(j.containment){k+=c(j.containment).scrollLeft()||0;h+=c(j.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:k,top:h};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:k,top:h};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:g.pageX,top:g.pageY};this.aspectRatio=(typeof j.aspectRatio=="number")?j.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var i=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",i=="auto"?this.axis+"-resize":i);e.addClass("ui-resizable-resizing");this._propagate("start",g);return true},_mouseDrag:function(e){var h=this.helper,g=this.options,m={},q=this,j=this.originalMousePosition,n=this.axis;var r=(e.pageX-j.left)||0,p=(e.pageY-j.top)||0;var i=this._change[n];if(!i){return false}var l=i.apply(this,[e,r,p]),k=c.browser.msie&&c.browser.version<7,f=this.sizeDiff;this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey){l=this._updateRatio(l,e)}l=this._respectSize(l,e);this._propagate("resize",e);h.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(l);this._trigger("resize",e,this.ui());return false},_mouseStop:function(h){this.resizing=false;var i=this.options,m=this;if(this._helper){var g=this._proportionallyResizeElements,e=g.length&&(/textarea/i).test(g[0].nodeName),f=e&&c.ui.hasScroll(g[0],"left")?0:m.sizeDiff.height,k=e?0:m.sizeDiff.width;var n={width:(m.helper.width()-k),height:(m.helper.height()-f)},j=(parseInt(m.element.css("left"),10)+(m.position.left-m.originalPosition.left))||null,l=(parseInt(m.element.css("top"),10)+(m.position.top-m.originalPosition.top))||null;if(!i.animate){this.element.css(c.extend(n,{top:l,left:j}))}m.helper.height(m.size.height);m.helper.width(m.size.width);if(this._helper&&!i.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",h);if(this._helper){this.helper.remove()}return false},_updateVirtualBoundaries:function(g){var j=this.options,i,h,f,k,e;e={minWidth:a(j.minWidth)?j.minWidth:0,maxWidth:a(j.maxWidth)?j.maxWidth:Infinity,minHeight:a(j.minHeight)?j.minHeight:0,maxHeight:a(j.maxHeight)?j.maxHeight:Infinity};if(this._aspectRatio||g){i=e.minHeight*this.aspectRatio;f=e.minWidth/this.aspectRatio;h=e.maxHeight*this.aspectRatio;k=e.maxWidth/this.aspectRatio;if(i>e.minWidth){e.minWidth=i}if(f>e.minHeight){e.minHeight=f}if(hl.width),s=a(l.height)&&i.minHeight&&(i.minHeight>l.height);if(h){l.width=i.minWidth}if(s){l.height=i.minHeight}if(t){l.width=i.maxWidth}if(m){l.height=i.maxHeight}var f=this.originalPosition.left+this.originalSize.width,p=this.position.top+this.size.height;var k=/sw|nw|w/.test(q),e=/nw|ne|n/.test(q);if(h&&k){l.left=f-i.minWidth}if(t&&k){l.left=f-i.maxWidth}if(s&&e){l.top=p-i.minHeight}if(m&&e){l.top=p-i.maxHeight}var n=!l.width&&!l.height;if(n&&!l.left&&l.top){l.top=null}else{if(n&&!l.top&&l.left){l.left=null}}return l},_proportionallyResize:function(){var k=this.options;if(!this._proportionallyResizeElements.length){return}var g=this.helper||this.element;for(var f=0;f');var e=c.browser.msie&&c.browser.version<7,g=(e?1:0),h=(e?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+h,height:this.element.outerHeight()+h,position:"absolute",left:this.elementOffset.left-g+"px",top:this.elementOffset.top-g+"px",zIndex:++i.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(g,f,e){return{width:this.originalSize.width+f}},w:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{left:i.left+f,width:g.width-f}},n:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{top:i.top+e,height:g.height-e}},s:function(g,f,e){return{height:this.originalSize.height+e}},se:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},sw:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[g,f,e]))},ne:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},nw:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[g,f,e]))}},_propagate:function(f,e){c.ui.plugin.call(this,f,[e,this.ui()]);(f!="resize"&&this._trigger(f,e,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});c.extend(c.ui.resizable,{version:"1.8.18"});c.ui.plugin.add("resizable","alsoResize",{start:function(f,g){var e=c(this).data("resizable"),i=e.options;var h=function(j){c(j).each(function(){var k=c(this);k.data("resizable-alsoresize",{width:parseInt(k.width(),10),height:parseInt(k.height(),10),left:parseInt(k.css("left"),10),top:parseInt(k.css("top"),10)})})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.parentNode){if(i.alsoResize.length){i.alsoResize=i.alsoResize[0];h(i.alsoResize)}else{c.each(i.alsoResize,function(j){h(j)})}}else{h(i.alsoResize)}},resize:function(g,i){var f=c(this).data("resizable"),j=f.options,h=f.originalSize,l=f.originalPosition;var k={height:(f.size.height-h.height)||0,width:(f.size.width-h.width)||0,top:(f.position.top-l.top)||0,left:(f.position.left-l.left)||0},e=function(m,n){c(m).each(function(){var q=c(this),r=c(this).data("resizable-alsoresize"),p={},o=n&&n.length?n:q.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];c.each(o,function(s,u){var t=(r[u]||0)+(k[u]||0);if(t&&t>=0){p[u]=t||null}});q.css(p)})};if(typeof(j.alsoResize)=="object"&&!j.alsoResize.nodeType){c.each(j.alsoResize,function(m,n){e(m,n)})}else{e(j.alsoResize)}},stop:function(e,f){c(this).removeData("resizable-alsoresize")}});c.ui.plugin.add("resizable","animate",{stop:function(i,n){var p=c(this).data("resizable"),j=p.options;var h=p._proportionallyResizeElements,e=h.length&&(/textarea/i).test(h[0].nodeName),f=e&&c.ui.hasScroll(h[0],"left")?0:p.sizeDiff.height,l=e?0:p.sizeDiff.width;var g={width:(p.size.width-l),height:(p.size.height-f)},k=(parseInt(p.element.css("left"),10)+(p.position.left-p.originalPosition.left))||null,m=(parseInt(p.element.css("top"),10)+(p.position.top-p.originalPosition.top))||null;p.element.animate(c.extend(g,m&&k?{top:m,left:k}:{}),{duration:j.animateDuration,easing:j.animateEasing,step:function(){var o={width:parseInt(p.element.css("width"),10),height:parseInt(p.element.css("height"),10),top:parseInt(p.element.css("top"),10),left:parseInt(p.element.css("left"),10)};if(h&&h.length){c(h[0]).css({width:o.width,height:o.height})}p._updateCache(o);p._propagate("resize",i)}})}});c.ui.plugin.add("resizable","containment",{start:function(f,r){var t=c(this).data("resizable"),j=t.options,l=t.element;var g=j.containment,k=(g instanceof c)?g.get(0):(/parent/.test(g))?l.parent().get(0):g;if(!k){return}t.containerElement=c(k);if(/document/.test(g)||g==document){t.containerOffset={left:0,top:0};t.containerPosition={left:0,top:0};t.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var n=c(k),i=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){i[p]=b(n.css("padding"+o))});t.containerOffset=n.offset();t.containerPosition=n.position();t.containerSize={height:(n.innerHeight()-i[3]),width:(n.innerWidth()-i[1])};var q=t.containerOffset,e=t.containerSize.height,m=t.containerSize.width,h=(c.ui.hasScroll(k,"left")?k.scrollWidth:m),s=(c.ui.hasScroll(k)?k.scrollHeight:e);t.parentData={element:k,left:q.left,top:q.top,width:h,height:s}}},resize:function(g,q){var t=c(this).data("resizable"),i=t.options,f=t.containerSize,p=t.containerOffset,m=t.size,n=t.position,r=t._aspectRatio||g.shiftKey,e={top:0,left:0},h=t.containerElement;if(h[0]!=document&&(/static/).test(h.css("position"))){e=p}if(n.left<(t._helper?p.left:0)){t.size.width=t.size.width+(t._helper?(t.position.left-p.left):(t.position.left-e.left));if(r){t.size.height=t.size.width/i.aspectRatio}t.position.left=i.helper?p.left:0}if(n.top<(t._helper?p.top:0)){t.size.height=t.size.height+(t._helper?(t.position.top-p.top):t.position.top);if(r){t.size.width=t.size.height*i.aspectRatio}t.position.top=t._helper?p.top:0}t.offset.left=t.parentData.left+t.position.left;t.offset.top=t.parentData.top+t.position.top;var l=Math.abs((t._helper?t.offset.left-e.left:(t.offset.left-e.left))+t.sizeDiff.width),s=Math.abs((t._helper?t.offset.top-e.top:(t.offset.top-p.top))+t.sizeDiff.height);var k=t.containerElement.get(0)==t.element.parent().get(0),j=/relative|absolute/.test(t.containerElement.css("position"));if(k&&j){l-=t.parentData.left}if(l+t.size.width>=t.parentData.width){t.size.width=t.parentData.width-l;if(r){t.size.height=t.size.width/t.aspectRatio}}if(s+t.size.height>=t.parentData.height){t.size.height=t.parentData.height-s;if(r){t.size.width=t.size.height*t.aspectRatio}}},stop:function(f,n){var q=c(this).data("resizable"),g=q.options,l=q.position,m=q.containerOffset,e=q.containerPosition,i=q.containerElement;var j=c(q.helper),r=j.offset(),p=j.outerWidth()-q.sizeDiff.width,k=j.outerHeight()-q.sizeDiff.height;if(q._helper&&!g.animate&&(/relative/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}if(q._helper&&!g.animate&&(/static/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}}});c.ui.plugin.add("resizable","ghost",{start:function(g,h){var e=c(this).data("resizable"),i=e.options,f=e.size;e.ghost=e.originalElement.clone();e.ghost.css({opacity:0.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:"");e.ghost.appendTo(e.helper)},resize:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost){e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})}},stop:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost&&e.helper){e.helper.get(0).removeChild(e.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(e,m){var p=c(this).data("resizable"),h=p.options,k=p.size,i=p.originalSize,j=p.originalPosition,n=p.axis,l=h._aspectRatio||e.shiftKey;h.grid=typeof h.grid=="number"?[h.grid,h.grid]:h.grid;var g=Math.round((k.width-i.width)/(h.grid[0]||1))*(h.grid[0]||1),f=Math.round((k.height-i.height)/(h.grid[1]||1))*(h.grid[1]||1);if(/^(se|s|e)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f}else{if(/^(ne)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f}else{if(/^(sw)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.left=j.left-g}else{p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f;p.position.left=j.left-g}}}}});var b=function(e){return parseInt(e,10)||0};var a=function(e){return !isNaN(parseInt(e,10))}})(jQuery);/*! - * jQuery hashchange event - v1.3 - 7/21/2010 - * http://benalman.com/projects/jquery-hashchange-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$(' - - -
    -
    -
    API Reference
    -
    -
    -
    Provides the list of API Reference
    -
    [detail level 12]
    - - - - - - - - - - - - - - - - - - -
     High-level FunctionsHigh-level functions represent the highest abstraction layer of the CAPSENSE™ middleware
     Low-level FunctionsThe Low-level functions represent the lower layer of abstraction in support of High-level Functions
     Data StructureThe CAPSENSE™ Data Structure organizes configuration parameters, input, and output data shared among different FW modules within the CAPSENSE™
     StructuresThe CAPSENSE™ structures
     Gesture StructuresThe Gesture-related structures
     Enumerated TypesDocuments the CAPSENSE™ middleware related enumerated types
     MacrosSpecifies constants used in the CAPSENSE™ middleware
     General MacrosGeneral macros
     Middleware State MacrosMiddleware state macros
     Status MacrosStatus macros
     Settings MacrosSettings macros
     Pin-related MacrosPin-related macros
     Processing MacrosProcessing macros
     Touch-related MacrosTouch-related macros
     Gesture MacrosGesture macros
     Miscellaneous MacrosMiscellaneous macros
     Built-in Self-test MacrosBuilt-in Self-test macros
     CallbacksCallbacks allow the user to execute Custom code called from the CAPSENSE™ middleware when an event occurs
    -
  • -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/modules.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/modules.js deleted file mode 100644 index d70c6c8765..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/modules.js +++ /dev/null @@ -1,9 +0,0 @@ -var modules = -[ - [ "High-level Functions", "group__group__capsense__high__level.html", "group__group__capsense__high__level" ], - [ "Low-level Functions", "group__group__capsense__low__level.html", "group__group__capsense__low__level" ], - [ "Data Structure", "group__group__capsense__data__structure.html", "group__group__capsense__data__structure" ], - [ "Enumerated Types", "group__group__capsense__enums.html", "group__group__capsense__enums" ], - [ "Macros", "group__group__capsense__macros.html", "group__group__capsense__macros" ], - [ "Callbacks", "group__group__capsense__callbacks.html", null ] -]; \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_f.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_f.png deleted file mode 100644 index 72a58a529e..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_f.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_g.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_g.png deleted file mode 100644 index 2093a237a9..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_g.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_h.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_h.png deleted file mode 100644 index 33389b101d..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/nav_h.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/navtree.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/navtree.css deleted file mode 100644 index 0cc7e776c3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/navtree.css +++ /dev/null @@ -1,146 +0,0 @@ -#nav-tree .children_ul { - margin:0; - padding:4px; -} - -#nav-tree ul { - list-style:none outside none; - margin:0px; - padding:0px; -} - -#nav-tree li { - white-space:nowrap; - margin:0px; - padding:0px; -} - -#nav-tree .plus { - margin:0px; -} - -#nav-tree .selected { - background-image: url('tab_a.png'); - background-repeat:repeat-x; - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); -} - -#nav-tree img { - margin:0px; - padding:0px; - border:0px; - vertical-align: middle; -} - -#nav-tree a { - text-decoration:none; - padding:0px; - margin:0px; - outline:none; -} - -#nav-tree .label { - margin:0px; - padding:0px; - font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; -} - -#nav-tree .label a { - padding:2px; -} - -#nav-tree .selected a { - text-decoration:none; - color:#fff; -} - -#nav-tree .children_ul { - margin:0px; - padding:0px; -} - -#nav-tree .item { - margin:0px; - padding:0px; -} - -#nav-tree { - padding: 0px 0px; - background-color: #FAFAFF; - font-size:14px; - overflow:auto; -} - -#doc-content { - overflow:auto; - display:block; - padding:0px; - margin:0px; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#side-nav { - padding:0 6px 0 0; - margin: 0px; - display:block; - position: absolute; - left: 0px; - width: 250px; -} - -.ui-resizable .ui-resizable-handle { - display:block; -} - -.ui-resizable-e { - background-image:url("splitbar.png"); - background-size:100%; - background-repeat:no-repeat; - background-attachment: scroll; - cursor:ew-resize; - height:100%; - right:0; - top:0; - width:6px; -} - -.ui-resizable-handle { - display:none; - font-size:0.1px; - position:absolute; - z-index:1; -} - -#nav-tree-contents { - margin: 6px 0px 0px 0px; -} - -#nav-tree { - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#nav-sync { - position:absolute; - top:5px; - right:24px; - z-index:0; -} - -#nav-sync img { - opacity:0.3; -} - -#nav-sync img:hover { - opacity:0.9; -} - -@media print -{ - #nav-tree { display: none; } - div.ui-resizable-handle { display: none; position: relative; } -} - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/navtree.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/navtree.js deleted file mode 100644 index e6d31b00d4..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/navtree.js +++ /dev/null @@ -1,517 +0,0 @@ -var navTreeSubIndices = new Array(); -var arrowDown = '▼'; -var arrowRight = '►'; - -function getData(varName) -{ - var i = varName.lastIndexOf('/'); - var n = i>=0 ? varName.substring(i+1) : varName; - return eval(n.replace(/\-/g,'_')); -} - -function stripPath(uri) -{ - return uri.substring(uri.lastIndexOf('/')+1); -} - -function stripPath2(uri) -{ - var i = uri.lastIndexOf('/'); - var s = uri.substring(i+1); - var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); - return m ? uri.substring(i-6) : s; -} - -function hashValue() -{ - return $(location).attr('hash').substring(1).replace(/[^\w\-]/g,''); -} - -function hashUrl() -{ - return '#'+hashValue(); -} - -function pathName() -{ - return $(location).attr('pathname').replace(/[^-A-Za-z0-9+&@#/%?=~_|!:,.;\(\)]/g, ''); -} - -function localStorageSupported() -{ - try { - return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; - } - catch(e) { - return false; - } -} - - -function storeLink(link) -{ - if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { - window.localStorage.setItem('navpath',link); - } -} - -function deleteLink() -{ - if (localStorageSupported()) { - window.localStorage.setItem('navpath',''); - } -} - -function cachedLink() -{ - if (localStorageSupported()) { - return window.localStorage.getItem('navpath'); - } else { - return ''; - } -} - -function getScript(scriptName,func,show) -{ - var head = document.getElementsByTagName("head")[0]; - var script = document.createElement('script'); - script.id = scriptName; - script.type = 'text/javascript'; - script.onload = func; - script.src = scriptName+'.js'; - if ($.browser.msie && $.browser.version<=8) { - // script.onload does not work with older versions of IE - script.onreadystatechange = function() { - if (script.readyState=='complete' || script.readyState=='loaded') { - func(); if (show) showRoot(); - } - } - } - head.appendChild(script); -} - -function createIndent(o,domNode,node,level) -{ - var level=-1; - var n = node; - while (n.parentNode) { level++; n=n.parentNode; } - if (node.childrenData) { - var imgNode = document.createElement("span"); - imgNode.className = 'arrow'; - imgNode.style.paddingLeft=(16*level).toString()+'px'; - imgNode.innerHTML=arrowRight; - node.plus_img = imgNode; - node.expandToggle = document.createElement("a"); - node.expandToggle.href = "javascript:void(0)"; - node.expandToggle.onclick = function() { - if (node.expanded) { - $(node.getChildrenUL()).slideUp("fast"); - node.plus_img.innerHTML=arrowRight; - node.expanded = false; - } else { - expandNode(o, node, false, false); - } - } - node.expandToggle.appendChild(imgNode); - domNode.appendChild(node.expandToggle); - } else { - var span = document.createElement("span"); - span.className = 'arrow'; - span.style.width = 16*(level+1)+'px'; - span.innerHTML = ' '; - domNode.appendChild(span); - } -} - -var animationInProgress = false; - -function gotoAnchor(anchor,aname,updateLocation) -{ - var pos, docContent = $('#doc-content'); - var ancParent = $(anchor.parent()); - if (ancParent.hasClass('memItemLeft') || - ancParent.hasClass('fieldname') || - ancParent.hasClass('fieldtype') || - ancParent.is(':header')) - { - pos = ancParent.position().top; - } else if (anchor.position()) { - pos = anchor.position().top; - } - if (pos) { - var dist = Math.abs(Math.min( - pos-docContent.offset().top, - docContent[0].scrollHeight- - docContent.height()-docContent.scrollTop())); - animationInProgress=true; - docContent.animate({ - scrollTop: pos + docContent.scrollTop() - docContent.offset().top - },Math.max(50,Math.min(500,dist)),function(){ - if (updateLocation) window.location.href=aname; - animationInProgress=false; - }); - } -} - -function newNode(o, po, text, link, childrenData, lastNode) -{ - var node = new Object(); - node.children = Array(); - node.childrenData = childrenData; - node.depth = po.depth + 1; - node.relpath = po.relpath; - node.isLast = lastNode; - - node.li = document.createElement("li"); - po.getChildrenUL().appendChild(node.li); - node.parentNode = po; - - node.itemDiv = document.createElement("div"); - node.itemDiv.className = "item"; - - node.labelSpan = document.createElement("span"); - node.labelSpan.className = "label"; - - createIndent(o,node.itemDiv,node,0); - node.itemDiv.appendChild(node.labelSpan); - node.li.appendChild(node.itemDiv); - - var a = document.createElement("a"); - node.labelSpan.appendChild(a); - node.label = document.createTextNode(text); - node.expanded = false; - a.appendChild(node.label); - if (link) { - var url; - if (link.substring(0,1)=='^') { - url = link.substring(1); - link = url; - } else { - url = node.relpath+link; - } - a.className = stripPath(link.replace('#',':')); - if (link.indexOf('#')!=-1) { - var aname = '#'+link.split('#')[1]; - var srcPage = stripPath(pathName()); - var targetPage = stripPath(link.split('#')[0]); - a.href = srcPage!=targetPage ? url : "javascript:void(0)"; - a.onclick = function(){ - storeLink(link); - if (!$(a).parent().parent().hasClass('selected')) - { - $('.item').removeClass('selected'); - $('.item').removeAttr('id'); - $(a).parent().parent().addClass('selected'); - $(a).parent().parent().attr('id','selected'); - } - var anchor = $(aname); - gotoAnchor(anchor,aname,true); - }; - } else { - a.href = url; - a.onclick = function() { storeLink(link); } - } - } else { - if (childrenData != null) - { - a.className = "nolink"; - a.href = "javascript:void(0)"; - a.onclick = node.expandToggle.onclick; - } - } - - node.childrenUL = null; - node.getChildrenUL = function() { - if (!node.childrenUL) { - node.childrenUL = document.createElement("ul"); - node.childrenUL.className = "children_ul"; - node.childrenUL.style.display = "none"; - node.li.appendChild(node.childrenUL); - } - return node.childrenUL; - }; - - return node; -} - -function showRoot() -{ - var headerHeight = $("#top").height(); - var footerHeight = $("#nav-path").height(); - var windowHeight = $(window).height() - headerHeight - footerHeight; - (function (){ // retry until we can scroll to the selected item - try { - var navtree=$('#nav-tree'); - navtree.scrollTo('#selected',0,{offset:-windowHeight/2}); - } catch (err) { - setTimeout(arguments.callee, 0); - } - })(); -} - -function expandNode(o, node, imm, showRoot) -{ - if (node.childrenData && !node.expanded) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - expandNode(o, node, imm, showRoot); - }, showRoot); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } if (imm || ($.browser.msie && $.browser.version>8)) { - // somehow slideDown jumps to the start of tree for IE9 :-( - $(node.getChildrenUL()).show(); - } else { - $(node.getChildrenUL()).slideDown("fast"); - } - node.plus_img.innerHTML = arrowDown; - node.expanded = true; - } - } -} - -function glowEffect(n,duration) -{ - n.addClass('glow').delay(duration).queue(function(next){ - $(this).removeClass('glow');next(); - }); -} - -function highlightAnchor() -{ - var aname = hashUrl(); - var anchor = $(aname); - if (anchor.parent().attr('class')=='memItemLeft'){ - var rows = $('.memberdecls tr[class$="'+hashValue()+'"]'); - glowEffect(rows.children(),300); // member without details - } else if (anchor.parent().attr('class')=='fieldname'){ - glowEffect(anchor.parent().parent(),1000); // enum value - } else if (anchor.parent().attr('class')=='fieldtype'){ - glowEffect(anchor.parent().parent(),1000); // struct field - } else if (anchor.parent().is(":header")) { - glowEffect(anchor.parent(),1000); // section header - } else { - glowEffect(anchor.next(),1000); // normal member - } - gotoAnchor(anchor,aname,false); -} - -function selectAndHighlight(hash,n) -{ - var a; - if (hash) { - var link=stripPath(pathName())+':'+hash.substring(1); - a=$('.item a[class$="'+link+'"]'); - } - if (a && a.length) { - a.parent().parent().addClass('selected'); - a.parent().parent().attr('id','selected'); - highlightAnchor(); - } else if (n) { - $(n.itemDiv).addClass('selected'); - $(n.itemDiv).attr('id','selected'); - } - if ($('#nav-tree-contents .item:first').hasClass('selected')) { - $('#nav-sync').css('top','30px'); - } else { - $('#nav-sync').css('top','5px'); - } - showRoot(); -} - -function showNode(o, node, index, hash) -{ - if (node && node.childrenData) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - showNode(o,node,index,hash); - },true); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } - $(node.getChildrenUL()).css({'display':'block'}); - node.plus_img.innerHTML = arrowDown; - node.expanded = true; - var n = node.children[o.breadcrumbs[index]]; - if (index+11) hash = '#'+parts[1].replace(/[^\w\-]/g,''); - else hash=''; - } - if (hash.match(/^#l\d+$/)) { - var anchor=$('a[name='+hash.substring(1)+']'); - glowEffect(anchor.parent(),1000); // line number - hash=''; // strip line number anchors - } - var url=root+hash; - var i=-1; - while (NAVTREEINDEX[i+1]<=url) i++; - if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath) - } else { - getScript(relpath+'navtreeindex'+i,function(){ - navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath); - } - },true); - } -} - -function showSyncOff(n,relpath) -{ - n.html(''); -} - -function showSyncOn(n,relpath) -{ - n.html(''); -} - -function toggleSyncButton(relpath) -{ - var navSync = $('#nav-sync'); - if (navSync.hasClass('sync')) { - navSync.removeClass('sync'); - showSyncOff(navSync,relpath); - storeLink(stripPath2(pathName())+hashUrl()); - } else { - navSync.addClass('sync'); - showSyncOn(navSync,relpath); - deleteLink(); - } -} - -function initNavTree(toroot,relpath) -{ - var o = new Object(); - o.toroot = toroot; - o.node = new Object(); - o.node.li = document.getElementById("nav-tree-contents"); - o.node.childrenData = NAVTREE; - o.node.children = new Array(); - o.node.childrenUL = document.createElement("ul"); - o.node.getChildrenUL = function() { return o.node.childrenUL; }; - o.node.li.appendChild(o.node.childrenUL); - o.node.depth = 0; - o.node.relpath = relpath; - o.node.expanded = false; - o.node.isLast = true; - o.node.plus_img = document.createElement("span"); - o.node.plus_img.className = 'arrow'; - o.node.plus_img.innerHTML = arrowRight; - - if (localStorageSupported()) { - var navSync = $('#nav-sync'); - if (cachedLink()) { - showSyncOff(navSync,relpath); - navSync.removeClass('sync'); - } else { - showSyncOn(navSync,relpath); - } - navSync.click(function(){ toggleSyncButton(relpath); }); - } - - $(window).load(function(){ - navTo(o,toroot,hashUrl(),relpath); - showRoot(); - }); - - $(window).bind('hashchange', function(){ - if (window.location.hash && window.location.hash.length>1){ - var a; - if ($(location).attr('hash')){ - var clslink=stripPath(pathName())+':'+hashValue(); - a=$('.item a[class$="'+clslink.replace(/=desktop_vp) { - if (!collapsed) { - collapseExpand(); - } - } else if (width>desktop_vp && collapsedWidth0) { - restoreWidth(0); - collapsed=true; - } - else { - var width = readCookie('width'); - if (width>200 && width<$(window).width()) { restoreWidth(width); } else { restoreWidth(200); } - collapsed=false; - } - } - - header = $("#top"); - sidenav = $("#side-nav"); - content = $("#doc-content"); - navtree = $("#nav-tree"); - footer = $("#nav-path"); - $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); - $(sidenav).resizable({ minWidth: 0 }); - $(window).resize(function() { resizeHeight(); }); - var device = navigator.userAgent.toLowerCase(); - var touch_device = device.match(/(iphone|ipod|ipad|android)/); - if (touch_device) { /* wider split bar for touch only devices */ - $(sidenav).css({ paddingRight:'20px' }); - $('.ui-resizable-e').css({ width:'20px' }); - $('#nav-sync').css({ right:'34px' }); - barWidth=20; - } - var width = readCookie('width'); - if (width) { restoreWidth(width); } else { resizeWidth(); } - resizeHeight(); - var url = location.href; - var i=url.indexOf("#"); - if (i>=0) window.location.hash=url.substr(i); - var _preventDefault = function(evt) { evt.preventDefault(); }; - $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); - $(".ui-resizable-handle").dblclick(collapseExpand); - $(window).load(resizeHeight); -} - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_0.html deleted file mode 100644 index f25360b71b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_0.js deleted file mode 100644 index 68000003db..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_0.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['accelcoeff',['accelCoeff',['../structcy__stc__capsense__ballistic__config__t.html#af168ee9cd6deb06a3dd59c63cd63be27',1,'cy_stc_capsense_ballistic_config_t']]], - ['advconfig',['advConfig',['../structcy__stc__capsense__widget__config__t.html#a94b1400ac7cf425e79664f4e19f54d0b',1,'cy_stc_capsense_widget_config_t']]], - ['aiirconfig',['aiirConfig',['../structcy__stc__capsense__widget__config__t.html#a44c45fc836a80c8fe858ab3d5133d751',1,'cy_stc_capsense_widget_config_t']]], - ['analogwakeupdelay',['analogWakeupDelay',['../structcy__stc__capsense__common__config__t.html#a625ca1e473af912530d0da3225e0ca40',1,'cy_stc_capsense_common_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_1.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_1.html deleted file mode 100644 index b13f0f7f38..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_1.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_1.js deleted file mode 100644 index 2d31f1173d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_1.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['ballisticconfig',['ballisticConfig',['../structcy__stc__capsense__widget__config__t.html#a5fc7dffe9f218833d42b73769d0e6965',1,'cy_stc_capsense_widget_config_t']]], - ['bisten',['bistEn',['../structcy__stc__capsense__common__config__t.html#a945e057e66cff3bcae327e897f3ef1a8',1,'cy_stc_capsense_common_config_t']]], - ['bsln',['bsln',['../structcy__stc__capsense__sensor__context__t.html#ae70bc85c4ea36acf3f7f24083ee12358',1,'cy_stc_capsense_sensor_context_t']]], - ['bslncoeff',['bslnCoeff',['../structcy__stc__capsense__widget__context__t.html#abc22672d34d27dc281a8401b7b94544f',1,'cy_stc_capsense_widget_context_t']]], - ['bslnext',['bslnExt',['../structcy__stc__capsense__sensor__context__t.html#a00e13c949413eec88791b6b89215dc67',1,'cy_stc_capsense_sensor_context_t']]], - ['built_2din_20self_2dtest_20macros',['Built-in Self-test Macros',['../group__group__capsense__macros__bist.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_10.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_10.html deleted file mode 100644 index d1345a1f0d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_10.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_10.js deleted file mode 100644 index 9aa84b2733..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_10.js +++ /dev/null @@ -1,52 +0,0 @@ -var searchData= -[ - ['settings_20macros',['Settings Macros',['../group__group__capsense__macros__settings.html',1,'']]], - ['status_20macros',['Status Macros',['../group__group__capsense__macros__status.html',1,'']]], - ['structures',['Structures',['../group__group__capsense__structures.html',1,'']]], - ['scancounter',['scanCounter',['../structcy__stc__capsense__common__context__t.html#a6406229ffd99b912c09ca0c80ea3f4ee',1,'cy_stc_capsense_common_context_t']]], - ['scanningmode',['scanningMode',['../structcy__stc__capsense__common__config__t.html#a24d346b99ac5c013f41b3189a2972a99',1,'cy_stc_capsense_common_config_t']]], - ['scanscope',['scanScope',['../structcy__stc__active__scan__sns__t.html#a6ad0b697f5e856d2436d402f085fbd86',1,'cy_stc_active_scan_sns_t']]], - ['scansingleslot',['scanSingleSlot',['../structcy__stc__capsense__internal__context__t.html#a369e954564bb658a81176a8e343a8e52',1,'cy_stc_capsense_internal_context_t']]], - ['scrolldebounce',['scrollDebounce',['../structcy__stc__capsense__gesture__config__t.html#a3048bc2987cdde967abbbd4a18051ae1',1,'cy_stc_capsense_gesture_config_t']]], - ['scrolldistancemin',['scrollDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#a27e76edb6a8d860482a55b8f4071f337',1,'cy_stc_capsense_gesture_config_t']]], - ['secondclickdistancemax',['secondClickDistanceMax',['../structcy__stc__capsense__gesture__config__t.html#a32dd076cfd7800d96f465c6574059443',1,'cy_stc_capsense_gesture_config_t']]], - ['secondclickintervalmax',['secondClickIntervalMax',['../structcy__stc__capsense__gesture__config__t.html#a1504ee52ad24c04ac285a6fa3acb3bde',1,'cy_stc_capsense_gesture_config_t']]], - ['secondclickintervalmin',['secondClickIntervalMin',['../structcy__stc__capsense__gesture__config__t.html#a138b9550ac79485932c329daeb3a552f',1,'cy_stc_capsense_gesture_config_t']]], - ['sensemethod',['senseMethod',['../structcy__stc__capsense__widget__config__t.html#a417a8786dfe62d3940fd7d5e265b9e2e',1,'cy_stc_capsense_widget_config_t']]], - ['sensorcap',['sensorCap',['../structcy__stc__capsense__auto__tune__config__t.html#a1d0e22bde6cc10e84ce2e37524486fc1',1,'cy_stc_capsense_auto_tune_config_t']]], - ['sensorconnection',['sensorConnection',['../structcy__stc__capsense__common__config__t.html#af1ac09b694a33a673b6212ff746e1405',1,'cy_stc_capsense_common_config_t']]], - ['sensorindex',['sensorIndex',['../structcy__stc__active__scan__sns__t.html#af779789a94df30c50548991176f02a10',1,'cy_stc_active_scan_sns_t']]], - ['shieldcap',['shieldCap',['../structcy__stc__capsense__bist__context__t.html#ad9d7572ae68f02fff90133e676cc1bdb',1,'cy_stc_capsense_bist_context_t']]], - ['shieldcapisc',['shieldCapISC',['../structcy__stc__capsense__bist__context__t.html#a8e6f44610a21e97402349e14d6c090d1',1,'cy_stc_capsense_bist_context_t']]], - ['shortedsnsid',['shortedSnsId',['../structcy__stc__capsense__bist__context__t.html#aefc11745803885a1b87cc4017288d7fa',1,'cy_stc_capsense_bist_context_t']]], - ['shortedwdid',['shortedWdId',['../structcy__stc__capsense__bist__context__t.html#a4d106f872eeea02719e146b4427c1d18',1,'cy_stc_capsense_bist_context_t']]], - ['sigpfc',['sigPFC',['../structcy__stc__capsense__auto__tune__config__t.html#a02620f92d5236d731cfd30c52b3881c5',1,'cy_stc_capsense_auto_tune_config_t::sigPFC()'],['../structcy__stc__capsense__hw__smartsense__config__t.html#a9df8e2b2dad78e69b5e78bc2a0451e62',1,'cy_stc_capsense_hw_smartsense_config_t::sigPFC()'],['../structcy__stc__capsense__widget__context__t.html#a818a66cb212ab10f9e4fb4f25a5b8a14',1,'cy_stc_capsense_widget_context_t::sigPFC()']]], - ['sigpfcval',['sigPFCVal',['../structcy__stc__capsense__widget__crc__data__t.html#a2742dd33a65b5791a4aca1dd86f60910',1,'cy_stc_capsense_widget_crc_data_t']]], - ['skipchannelmask',['skipChannelMask',['../structcy__stc__capsense__bist__context__t.html#a14373485d1d094cce5897260b380d3a1',1,'cy_stc_capsense_bist_context_t']]], - ['slotautocalibrmode',['slotAutoCalibrMode',['../structcy__stc__capsense__internal__context__t.html#ab0829c3076d68da791c664969585b54d',1,'cy_stc_capsense_internal_context_t']]], - ['snscapacitance',['snsCapacitance',['../structcy__stc__capsense__hw__smartsense__config__t.html#ab468c0e00fd96979d2a47cadcb8d0d4c',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['snsclk',['snsClk',['../structcy__stc__capsense__widget__context__t.html#ac2c184d4476a32763d29fd3c1813d533',1,'cy_stc_capsense_widget_context_t::snsClk()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#aa9db7044638f1e6ee7a56a850f31d67d',1,'cy_stc_capsense_bist_custom_parameters_t::snsClk()']]], - ['snsclkconstantr',['snsClkConstantR',['../structcy__stc__capsense__auto__tune__config__t.html#a6ec095fe5aeb9289f98829815219ea37',1,'cy_stc_capsense_auto_tune_config_t']]], - ['snsclkinputclock',['snsClkInputClock',['../structcy__stc__capsense__auto__tune__config__t.html#a104c0df5a13ed859885dd8be3d274dc2',1,'cy_stc_capsense_auto_tune_config_t']]], - ['snsclksource',['snsClkSource',['../structcy__stc__capsense__widget__context__t.html#ab9a639859b9bb45518c041e37bfca15a',1,'cy_stc_capsense_widget_context_t']]], - ['snsclksourceautoselmode',['snsClkSourceAutoSelMode',['../structcy__stc__capsense__widget__config__t.html#ad6f1c79005cc909bf91dc5f18ef9c695',1,'cy_stc_capsense_widget_config_t']]], - ['snsclksourceval',['snsClkSourceVal',['../structcy__stc__capsense__widget__crc__data__t.html#a56160b9d3867b8b59fda1ebface25359',1,'cy_stc_capsense_widget_crc_data_t']]], - ['snsclkval',['snsClkVal',['../structcy__stc__capsense__widget__crc__data__t.html#a888a88ed2d857e30e18b5240731fafb7',1,'cy_stc_capsense_widget_crc_data_t']]], - ['snscountx',['snsCountX',['../structcy__stc__capsense__advanced__centroid__config__t.html#a6516dd861d60a16f4542edd695e6411a',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['snscounty',['snsCountY',['../structcy__stc__capsense__advanced__centroid__config__t.html#a3ca2e3fdf2d68035f14bd1f67c50f9bd',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['snsctlreg',['snsCtlReg',['../structcy__stc__capsense__internal__context__t.html#a28352e11f481d2a39d6a4b0cd5ba5da9',1,'cy_stc_capsense_internal_context_t']]], - ['snsid',['snsId',['../structcy__stc__capsense__scan__slot__t.html#aa15549f34439186a6a055f883995c51d',1,'cy_stc_capsense_scan_slot_t']]], - ['snsintgshortsettlingtime',['snsIntgShortSettlingTime',['../structcy__stc__capsense__bist__context__t.html#a5b5122344f3fac96dd7ba538eff80298',1,'cy_stc_capsense_bist_context_t']]], - ['snsresistance',['snsResistance',['../structcy__stc__capsense__hw__smartsense__config__t.html#a2f7adbc38868c74a94f36b97e62e9827',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['speedcoeff',['speedCoeff',['../structcy__stc__capsense__ballistic__config__t.html#ad5992e4bc35b511b1d49699ead2d5d18',1,'cy_stc_capsense_ballistic_config_t']]], - ['speedthresholdx',['speedThresholdX',['../structcy__stc__capsense__ballistic__config__t.html#ab4deccb79d0803f081e1283ee7006acd',1,'cy_stc_capsense_ballistic_config_t']]], - ['speedthresholdy',['speedThresholdY',['../structcy__stc__capsense__ballistic__config__t.html#adb09b97cfc40452a62b7cc4c92dda9a3',1,'cy_stc_capsense_ballistic_config_t']]], - ['ssirefsource',['ssIrefSource',['../structcy__stc__capsense__common__config__t.html#a0c80e26b5fe28518248152c5c9c6681a',1,'cy_stc_capsense_common_config_t']]], - ['ssvrefsource',['ssVrefSource',['../structcy__stc__capsense__common__config__t.html#a9d4938569f715d511d5a92c65337903a',1,'cy_stc_capsense_common_config_t']]], - ['state',['state',['../structcy__stc__capsense__ofsc__context__t.html#a8b9f3178a921e342a800d39f2c276911',1,'cy_stc_capsense_ofsc_context_t::state()'],['../structcy__stc__capsense__ofdc__context__t.html#a68bdeb81301daf15477f4e5130a60b6d',1,'cy_stc_capsense_ofdc_context_t::state()'],['../structcy__stc__capsense__ofcd__context__t.html#affdde7ae14962e5fb4a245bcc6431f46',1,'cy_stc_capsense_ofcd_context_t::state()'],['../structcy__stc__capsense__tfsc__context__t.html#a8e22783a5b0ccb54c439fceb105978e4',1,'cy_stc_capsense_tfsc_context_t::state()'],['../structcy__stc__capsense__ofsl__context__t.html#a7df429d86ffa5f133a64f3fa4a9c63bc',1,'cy_stc_capsense_ofsl_context_t::state()'],['../structcy__stc__capsense__tfsl__context__t.html#aff4bf63c794f8b5f1c07d5473dbfa670',1,'cy_stc_capsense_tfsl_context_t::state()'],['../structcy__stc__capsense__offl__context__t.html#ab75c1891770f28ddf2e351352ad44ec9',1,'cy_stc_capsense_offl_context_t::state()'],['../structcy__stc__capsense__ofes__context__t.html#aceb2451dce6a58a27a57aad7567d96de',1,'cy_stc_capsense_ofes_context_t::state()'],['../structcy__stc__capsense__tfzm__context__t.html#a4d55acf75ebf067266e51707eace00c2',1,'cy_stc_capsense_tfzm_context_t::state()'],['../structcy__stc__capsense__ofrt__context__t.html#a15e10b8b2d960028f26f3781bd86d1b2',1,'cy_stc_capsense_ofrt_context_t::state()']]], - ['status',['status',['../structcy__stc__capsense__sensor__context__t.html#ac0c3267b406b40d89fb8219b75536eee',1,'cy_stc_capsense_sensor_context_t::status()'],['../structcy__stc__capsense__widget__context__t.html#ad7b0478d50436b8f1cdb982b5d731a68',1,'cy_stc_capsense_widget_context_t::status()'],['../structcy__stc__capsense__common__context__t.html#ae823664536f36878278584c2e8967035',1,'cy_stc_capsense_common_context_t::status()']]], - ['swsensorautoreseten',['swSensorAutoResetEn',['../structcy__stc__capsense__common__config__t.html#a16001bf367c6118143ff1ec3511646fb',1,'cy_stc_capsense_common_config_t']]], - ['syncclocken',['syncClockEn',['../structcy__stc__capsense__common__config__t.html#a1a7933f4724093478a9434d5a7442aac',1,'cy_stc_capsense_common_config_t']]], - ['syncframestarten',['syncFrameStartEn',['../structcy__stc__capsense__common__config__t.html#a81f8d65e5d8e38368a8c8afd643a1f5b',1,'cy_stc_capsense_common_config_t']]], - ['syncmode',['syncMode',['../structcy__stc__capsense__common__config__t.html#aec6656386d576886a6f2d1d1b6c3f681',1,'cy_stc_capsense_common_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_11.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_11.html deleted file mode 100644 index 2be8b71111..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_11.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_11.js deleted file mode 100644 index 596d4f6e82..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_11.js +++ /dev/null @@ -1,21 +0,0 @@ -var searchData= -[ - ['touch_2drelated_20macros',['Touch-related Macros',['../group__group__capsense__macros__touch.html',1,'']]], - ['testresultmask',['testResultMask',['../structcy__stc__capsense__bist__context__t.html#a85203f9070ae007e98d8e86b716ea971',1,'cy_stc_capsense_bist_context_t']]], - ['tfsccontext',['tfscContext',['../structcy__stc__capsense__gesture__context__t.html#a56adc5033fdd287a8fefb4a6c8b1a251',1,'cy_stc_capsense_gesture_context_t']]], - ['tfslcontext',['tfslContext',['../structcy__stc__capsense__gesture__context__t.html#a3e8c82cbc4289674f444114478fc1a7b',1,'cy_stc_capsense_gesture_context_t']]], - ['tfzmcontext',['tfzmContext',['../structcy__stc__capsense__gesture__context__t.html#abdb25e19025b77d4115b551bf54454b5',1,'cy_stc_capsense_gesture_context_t']]], - ['timestamp',['timestamp',['../structcy__stc__capsense__gesture__context__t.html#a2a24ea7e25b9910d7f02e7e19e43195a',1,'cy_stc_capsense_gesture_context_t::timestamp()'],['../structcy__stc__capsense__common__context__t.html#a770a1fafdbe45e1e3355abca3caa859c',1,'cy_stc_capsense_common_context_t::timestamp()']]], - ['timestampinterval',['timestampInterval',['../structcy__stc__capsense__common__context__t.html#a6178b4758bc7095bbafe2bf8bc62783a',1,'cy_stc_capsense_common_context_t']]], - ['touchnumber',['touchNumber',['../structcy__stc__capsense__ballistic__context__t.html#a8b2a6fe6bc8bf68463bf94a93c7e3a2b',1,'cy_stc_capsense_ballistic_context_t']]], - ['touchstartposition1',['touchStartPosition1',['../structcy__stc__capsense__ofsc__context__t.html#a9015721f99554c92a7dc46e2c21f94ed',1,'cy_stc_capsense_ofsc_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofdc__context__t.html#a22e58ee9031099dd6d48aee61a1aadc2',1,'cy_stc_capsense_ofdc_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofcd__context__t.html#aa31dd67b76a421f313721950384c14ab',1,'cy_stc_capsense_ofcd_context_t::touchStartPosition1()'],['../structcy__stc__capsense__tfsc__context__t.html#ac2bb0da57282c795cbf0f3d4c1c50e94',1,'cy_stc_capsense_tfsc_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofsl__context__t.html#ab6b900847f84996ed25c000469c6cba4',1,'cy_stc_capsense_ofsl_context_t::touchStartPosition1()'],['../structcy__stc__capsense__tfsl__context__t.html#aaf2bf408c8cea2a3ad8331676a487aa3',1,'cy_stc_capsense_tfsl_context_t::touchStartPosition1()'],['../structcy__stc__capsense__offl__context__t.html#aa4bcab6ceb424cae93b48af4ba2ef1c0',1,'cy_stc_capsense_offl_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofes__context__t.html#ac6dceb387c709e7425014e0b6cbba69d',1,'cy_stc_capsense_ofes_context_t::touchStartPosition1()'],['../structcy__stc__capsense__tfzm__context__t.html#a60cf7f1c4af96f6113fbe04db092a80e',1,'cy_stc_capsense_tfzm_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofrt__context__t.html#a3655e2f6e6fccd33a99ae0919965a02d',1,'cy_stc_capsense_ofrt_context_t::touchStartPosition1()']]], - ['touchstartposition2',['touchStartPosition2',['../structcy__stc__capsense__tfsc__context__t.html#a8b6bd5906acd0001b1ceae797db7a8a3',1,'cy_stc_capsense_tfsc_context_t::touchStartPosition2()'],['../structcy__stc__capsense__tfsl__context__t.html#abda60903e50cdc56ca4bc60476c2fedf',1,'cy_stc_capsense_tfsl_context_t::touchStartPosition2()'],['../structcy__stc__capsense__tfzm__context__t.html#a47690ba09642262dc60c9996471cf3a7',1,'cy_stc_capsense_tfzm_context_t::touchStartPosition2()']]], - ['touchstarttime1',['touchStartTime1',['../structcy__stc__capsense__ofsc__context__t.html#a659fadd332317157ed92646ab617c108',1,'cy_stc_capsense_ofsc_context_t::touchStartTime1()'],['../structcy__stc__capsense__ofdc__context__t.html#a4301e8f87ce8a40ecc73c415ebd56eab',1,'cy_stc_capsense_ofdc_context_t::touchStartTime1()'],['../structcy__stc__capsense__ofcd__context__t.html#adac662a3fdcbff352d05b47127722437',1,'cy_stc_capsense_ofcd_context_t::touchStartTime1()'],['../structcy__stc__capsense__tfsc__context__t.html#a8c266f5d2b658bb7e3fa61d33c02d02e',1,'cy_stc_capsense_tfsc_context_t::touchStartTime1()'],['../structcy__stc__capsense__offl__context__t.html#a3c51b81c7a63872b85d1abafc9f3e35d',1,'cy_stc_capsense_offl_context_t::touchStartTime1()'],['../structcy__stc__capsense__ofes__context__t.html#aaf7cec8bf10a12f82431b1cfdc76fa3c',1,'cy_stc_capsense_ofes_context_t::touchStartTime1()']]], - ['touchstarttime2',['touchStartTime2',['../structcy__stc__capsense__tfsc__context__t.html#ad05feec06a31053de7213da66168c4ff',1,'cy_stc_capsense_tfsc_context_t']]], - ['tunercmd',['tunerCmd',['../structcy__stc__capsense__common__context__t.html#afae9853b830d6549b35bafc214acc040',1,'cy_stc_capsense_common_context_t']]], - ['tunercnt',['tunerCnt',['../structcy__stc__capsense__common__context__t.html#ac6502f0565b37d6ba97cce1c81a773b3',1,'cy_stc_capsense_common_context_t']]], - ['tunerst',['tunerSt',['../structcy__stc__capsense__common__context__t.html#a26f741c17c454d43f6a07dbf87d8154e',1,'cy_stc_capsense_common_context_t']]], - ['twofingersen',['twoFingersEn',['../structcy__stc__capsense__advanced__centroid__config__t.html#a541c1a949ee1bb818933bbb95f153ada',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['txindex',['txIndex',['../structcy__stc__active__scan__sns__t.html#aef1caed388c9d1fb076e710ab7db49a4',1,'cy_stc_active_scan_sns_t']]], - ['type',['type',['../structcy__stc__capsense__electrode__config__t.html#a3f987328f5df9cd9fe4f6b4daf80ec8e',1,'cy_stc_capsense_electrode_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_12.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_12.html deleted file mode 100644 index 13c526372b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_12.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_12.js deleted file mode 100644 index 1c4eb947ce..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_12.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['vdda',['vdda',['../structcy__stc__capsense__common__config__t.html#a04857de80018693091a81dce3b19bd66',1,'cy_stc_capsense_common_config_t']]], - ['vddaacqcycles',['vddaAcqCycles',['../structcy__stc__capsense__bist__context__t.html#a5d877d6bd67e8cf57bcb411cbf684abe',1,'cy_stc_capsense_bist_context_t']]], - ['vddaazcycles',['vddaAzCycles',['../structcy__stc__capsense__bist__context__t.html#a069d1684c20cb8b73c04c4c5c109773e',1,'cy_stc_capsense_bist_context_t']]], - ['vddaidacdefault',['vddaIdacDefault',['../structcy__stc__capsense__bist__context__t.html#aa06208613dd9f24d6e61d762b57b7d5a',1,'cy_stc_capsense_bist_context_t']]], - ['vddamodclk',['vddaModClk',['../structcy__stc__capsense__bist__context__t.html#aa97a347c3230f3b8227df50a734e487c',1,'cy_stc_capsense_bist_context_t']]], - ['vddavoltage',['vddaVoltage',['../structcy__stc__capsense__bist__context__t.html#acae5fb65a370e8e1c14d13c2da578f12',1,'cy_stc_capsense_bist_context_t']]], - ['vddavrefgain',['vddaVrefGain',['../structcy__stc__capsense__bist__context__t.html#ada60c4a93a43cb77e509556a97962655',1,'cy_stc_capsense_bist_context_t']]], - ['vddavrefmv',['vddaVrefMv',['../structcy__stc__capsense__bist__context__t.html#a596d6e49bff364072a0ab877e14c90d5',1,'cy_stc_capsense_bist_context_t']]], - ['vector',['vector',['../structcy__stc__capsense__mptx__table__t.html#a98c4201904ce3acae1128bf0dffa8476',1,'cy_stc_capsense_mptx_table_t']]], - ['velocity',['velocity',['../structcy__stc__capsense__csx__touch__history__t.html#a5a32e8b0644a7bc98f45a4b345188810',1,'cy_stc_capsense_csx_touch_history_t']]], - ['virtualsnsth',['virtualSnsTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#a99998bdcb8adfc186748f5e8ecff0724',1,'cy_stc_capsense_advanced_centroid_config_t::virtualSnsTh()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#ade2331205a63402295830fb1ed8bd3a7',1,'cy_stc_capsense_advanced_touchpad_config_t::virtualSnsTh()']]], - ['visitedmap',['visitedMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a0c72b5063ccfa7e97c086c06d943ffc9',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['vref',['vRef',['../structcy__stc__capsense__auto__tune__config__t.html#a50522d0350068cbfba0aeebaff115d9c',1,'cy_stc_capsense_auto_tune_config_t']]], - ['vrefgain',['vrefGain',['../structcy__stc__capsense__bist__custom__parameters__t.html#aa24f7a01ccebf1ad20e600ca27565eac',1,'cy_stc_capsense_bist_custom_parameters_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_13.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_13.html deleted file mode 100644 index b4a8bca69e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_13.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_13.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_13.js deleted file mode 100644 index 02564bd287..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_13.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['wdgtcrccalc',['wdgtCrcCalc',['../structcy__stc__capsense__bist__context__t.html#a21a8e2f2c74ad54372244ad94f9245b5',1,'cy_stc_capsense_bist_context_t']]], - ['wdid',['wdId',['../structcy__stc__capsense__scan__slot__t.html#af62581a007e94d23a25ecf891e2347af',1,'cy_stc_capsense_scan_slot_t']]], - ['wdtouch',['wdTouch',['../structcy__stc__capsense__widget__context__t.html#a8278c09fe62e33e5e460f3064b90e614',1,'cy_stc_capsense_widget_context_t']]], - ['wdtype',['wdType',['../structcy__stc__capsense__widget__config__t.html#a78fb9e1d1b8c8cdad2d4257f5881ddc2',1,'cy_stc_capsense_widget_config_t']]], - ['widgetindex',['widgetIndex',['../structcy__stc__active__scan__sns__t.html#a3976b21c01b88709fb4c641d147a95ba',1,'cy_stc_active_scan_sns_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_14.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_14.html deleted file mode 100644 index fb4d0ecc7b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_14.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_14.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_14.js deleted file mode 100644 index 9e9d14fb77..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_14.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['x',['x',['../structcy__stc__capsense__gesture__position__t.html#aa7c7a9666ddec68e4ace38a030ecfdab',1,'cy_stc_capsense_gesture_position_t::x()'],['../structcy__stc__capsense__position__t.html#aaa333fb1aa5285e28ffdf6cc47248741',1,'cy_stc_capsense_position_t::x()'],['../structcy__stc__capsense__ballistic__context__t.html#ae07addb7a565119d5b2244a5bd64dde6',1,'cy_stc_capsense_ballistic_context_t::x()']]], - ['xdelta',['xDelta',['../structcy__stc__capsense__widget__context__t.html#a723b1a11630c801ad30546fd35cec715',1,'cy_stc_capsense_widget_context_t']]], - ['xresolution',['xResolution',['../structcy__stc__capsense__widget__config__t.html#adfae2ef0d4316555d1e3c54e39c4aeb5',1,'cy_stc_capsense_widget_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_15.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_15.html deleted file mode 100644 index 8afe9a0337..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_15.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_15.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_15.js deleted file mode 100644 index 046e285c59..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_15.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['y',['y',['../structcy__stc__capsense__gesture__position__t.html#a3a1c2f83221a848b380ec4c10362187a',1,'cy_stc_capsense_gesture_position_t::y()'],['../structcy__stc__capsense__position__t.html#a29b1ad8aeb8ab133b7696273fbdfa6cf',1,'cy_stc_capsense_position_t::y()'],['../structcy__stc__capsense__ballistic__context__t.html#abadcc7e1af463b1668eb93183cb87252',1,'cy_stc_capsense_ballistic_context_t::y()']]], - ['ydelta',['yDelta',['../structcy__stc__capsense__widget__context__t.html#a869b23837236045aba13b4fbde082e95',1,'cy_stc_capsense_widget_context_t']]], - ['yresolution',['yResolution',['../structcy__stc__capsense__widget__config__t.html#ae527a11d29c8deb400a6c2a58d677aee',1,'cy_stc_capsense_widget_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_16.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_16.html deleted file mode 100644 index e511edbc1a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_16.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_16.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_16.js deleted file mode 100644 index 1059df5a71..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_16.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['z',['z',['../structcy__stc__capsense__position__t.html#a9a62c41da414fc72932fd1bcd8fbfc96',1,'cy_stc_capsense_position_t']]], - ['zoomdebounce',['zoomDebounce',['../structcy__stc__capsense__gesture__config__t.html#a13a289ac07a253455c04f3b124e9a7db',1,'cy_stc_capsense_gesture_config_t']]], - ['zoomdistancemin',['zoomDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#ac80c3e733cdc3999e48f02b94c629f05',1,'cy_stc_capsense_gesture_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_2.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_2.html deleted file mode 100644 index 9543c57b1d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_2.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_2.js deleted file mode 100644 index 08d39975d3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_2.js +++ /dev/null @@ -1,611 +0,0 @@ -var searchData= -[ - ['caltarget',['calTarget',['../structcy__stc__capsense__auto__tune__config__t.html#a48acefee1f92f23853cc7d58511327a2',1,'cy_stc_capsense_auto_tune_config_t']]], - ['capacitorsettlingtime',['capacitorSettlingTime',['../structcy__stc__capsense__bist__context__t.html#a2adb7abe65479371b8474bed393b719b',1,'cy_stc_capsense_bist_context_t']]], - ['cdaccomp',['cdacComp',['../structcy__stc__capsense__sensor__context__t.html#ae79c13f9386a3a7e995dc63857eaa63c',1,'cy_stc_capsense_sensor_context_t']]], - ['cdaccompdivider',['cdacCompDivider',['../structcy__stc__capsense__widget__context__t.html#a9af84926eb2b426096323ccb6bea68f8',1,'cy_stc_capsense_widget_context_t::cdacCompDivider()'],['../structcy__stc__capsense__widget__crc__data__t.html#a5ff43b7bc1a7a6356e421a580a189645',1,'cy_stc_capsense_widget_crc_data_t::cdacCompDivider()']]], - ['cdacditheren',['cdacDitherEn',['../structcy__stc__capsense__widget__context__t.html#a82a04a4c0dbb4de9fc2d5ae21ce943f3',1,'cy_stc_capsense_widget_context_t']]], - ['cdacditherpoly',['cdacDitherPoly',['../structcy__stc__capsense__common__context__t.html#a75c97af43dbcd9a4553d556bd8c454d7',1,'cy_stc_capsense_common_context_t']]], - ['cdacditherseed',['cdacDitherSeed',['../structcy__stc__capsense__common__context__t.html#a4ea8ee5aae4993e4f86a9d2cd05b537c',1,'cy_stc_capsense_common_context_t']]], - ['cdacdithervalue',['cdacDitherValue',['../structcy__stc__capsense__widget__context__t.html#ab6edaa841fd57f6e920b1f796d7f8cf4',1,'cy_stc_capsense_widget_context_t']]], - ['cdacref',['cdacRef',['../structcy__stc__capsense__widget__context__t.html#a1ca9544ef549d7fc214f7703efc596c7',1,'cy_stc_capsense_widget_context_t::cdacRef()'],['../structcy__stc__capsense__widget__crc__data__t.html#ada53db417307cc1d13caf7987244cfe1',1,'cy_stc_capsense_widget_crc_data_t::cdacRef()']]], - ['centroidconfig',['centroidConfig',['../structcy__stc__capsense__widget__config__t.html#ad2825a42c272b5c46dbcb15a21ec913f',1,'cy_stc_capsense_widget_config_t']]], - ['channeloffset',['channelOffset',['../structcy__stc__capsense__common__config__t.html#af4ae13ecd0378411c29e1c611f7a1adc',1,'cy_stc_capsense_common_config_t']]], - ['chid',['chId',['../structcy__stc__capsense__pin__config__t.html#aa174ebb6a2d3ef3b8918b1065320599b',1,'cy_stc_capsense_pin_config_t::chId()'],['../structcy__stc__capsense__electrode__config__t.html#a05da24520b2abe15d7d03d63f0590650',1,'cy_stc_capsense_electrode_config_t::chId()']]], - ['choppolarity',['chopPolarity',['../structcy__stc__capsense__common__config__t.html#aaa7080d2cfb50d41a453421d668f5f7b',1,'cy_stc_capsense_common_config_t']]], - ['cicfiltermode',['cicFilterMode',['../structcy__stc__capsense__common__config__t.html#aef1b0103bfeee576e0254d72a9ad0ab7',1,'cy_stc_capsense_common_config_t']]], - ['cicrate',['cicRate',['../structcy__stc__capsense__widget__context__t.html#ad9f98bd3c96b57f8da2246dbf30c697d',1,'cy_stc_capsense_widget_context_t::cicRate()'],['../structcy__stc__capsense__widget__crc__data__t.html#a29965512e099c71169b5413d3e7f8f05',1,'cy_stc_capsense_widget_crc_data_t::cicRate()']]], - ['cintacap',['cIntACap',['../structcy__stc__capsense__bist__context__t.html#a0844067d1e2f03296d01c0946542673f',1,'cy_stc_capsense_bist_context_t']]], - ['cintbcap',['cIntBCap',['../structcy__stc__capsense__bist__context__t.html#a5c87c14d0ef2d932eeb01a53eb77501b',1,'cy_stc_capsense_bist_context_t']]], - ['clickdistancemax',['clickDistanceMax',['../structcy__stc__capsense__gesture__config__t.html#a4bce321bd5bc00feafad1e32f35c6c0b',1,'cy_stc_capsense_gesture_config_t']]], - ['clicktimeoutmax',['clickTimeoutMax',['../structcy__stc__capsense__gesture__config__t.html#a3b1107f255188a2b7ad34f2445d45ca7',1,'cy_stc_capsense_gesture_config_t']]], - ['clicktimeoutmin',['clickTimeoutMin',['../structcy__stc__capsense__gesture__config__t.html#a3fd78e04e45942e2780ed93e8bfabcf2',1,'cy_stc_capsense_gesture_config_t']]], - ['cmodcap',['cModCap',['../structcy__stc__capsense__bist__context__t.html#a5456d1702855400f82a5e896cf426583',1,'cy_stc_capsense_bist_context_t']]], - ['coarseinitbypassen',['coarseInitBypassEn',['../structcy__stc__capsense__widget__context__t.html#af748f831b4efb44e9d1be8fb5242de7d',1,'cy_stc_capsense_widget_context_t']]], - ['colmap',['colMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a53be7999d05b8199561fad7160b0ff8a',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['configid',['configId',['../structcy__stc__capsense__common__context__t.html#aa9d6aeaa1e73aac634d4ca090d353af2',1,'cy_stc_capsense_common_context_t']]], - ['configparam0',['configParam0',['../structcy__stc__capsense__alp__fltr__config__t.html#a1899bfbe169a38238c06904b75dede02',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam1',['configParam1',['../structcy__stc__capsense__alp__fltr__config__t.html#a5c8856d048cb9985f4ce1f3f437d8408',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam2',['configParam2',['../structcy__stc__capsense__alp__fltr__config__t.html#a591b9d314484d0279c3addcbbe3f334a',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam3',['configParam3',['../structcy__stc__capsense__alp__fltr__config__t.html#ad3d404cffa7e3a5dc7a3f473fee0b2ab',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam4',['configParam4',['../structcy__stc__capsense__alp__fltr__config__t.html#a6e088e048f665d7517d05ca7c1742832',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam5',['configParam5',['../structcy__stc__capsense__alp__fltr__config__t.html#aea8c1e50bc2f69b60a0ac593571baeb7',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['connectedsnsstate',['connectedSnsState',['../structcy__stc__active__scan__sns__t.html#a2bdf357c40aa4a699ed2c3dc929a32d3',1,'cy_stc_active_scan_sns_t']]], - ['convnum',['convNum',['../structcy__stc__capsense__bist__custom__parameters__t.html#a064aef0add09fe3405402613b9195060',1,'cy_stc_capsense_bist_custom_parameters_t']]], - ['correctioncoeff',['correctionCoeff',['../structcy__stc__capsense__hw__smartsense__config__t.html#a8eaf48cf9b439edec69d4a1928789cf7',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['countermode',['counterMode',['../structcy__stc__capsense__common__config__t.html#a61b95b2bc4ed8eee7ba9f8e02aded59d',1,'cy_stc_capsense_common_config_t']]], - ['cpuclkhz',['cpuClkHz',['../structcy__stc__capsense__common__config__t.html#a53051c09692058cebfe2d5a4faa935c8',1,'cy_stc_capsense_common_config_t']]], - ['crcwdgtid',['crcWdgtId',['../structcy__stc__capsense__bist__context__t.html#a8a26753c42ea1a7f25a5018246c6d941',1,'cy_stc_capsense_bist_context_t']]], - ['crosscouplingth',['crossCouplingTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#a09416d6547439c3fd7ec944f3aa7893f',1,'cy_stc_capsense_advanced_centroid_config_t::crossCouplingTh()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#ad86060f2b4310c6150e555277c209791',1,'cy_stc_capsense_advanced_touchpad_config_t::crossCouplingTh()']]], - ['csdautotuneen',['csdAutotuneEn',['../structcy__stc__capsense__common__config__t.html#a46dabab191776af278a263e931f0c77b',1,'cy_stc_capsense_common_config_t']]], - ['csdcalibrationerror',['csdCalibrationError',['../structcy__stc__capsense__common__config__t.html#a83913223b272b76642a87af8b4e78153',1,'cy_stc_capsense_common_config_t']]], - ['csdcdacautocalen',['csdCdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#af753b92540958a90dc07a2056bf550e4',1,'cy_stc_capsense_common_config_t']]], - ['csdcdacautocalibmin',['csdCdacAutoCalibMin',['../structcy__stc__capsense__common__config__t.html#a9b8bcc292bb98791b20cec38114b40bb',1,'cy_stc_capsense_common_config_t']]], - ['csdcdaccompdivautoen',['csdCdacCompDivAutoEn',['../structcy__stc__capsense__common__config__t.html#a0e144be45499b5bcd7eb38261a6ee745',1,'cy_stc_capsense_common_config_t']]], - ['csdcdaccompen',['csdCdacCompEn',['../structcy__stc__capsense__common__config__t.html#a442673001f67deb01b06f0cc643bc8e5',1,'cy_stc_capsense_common_config_t']]], - ['csdchargetransfer',['csdChargeTransfer',['../structcy__stc__capsense__common__config__t.html#a5e64ba40e4bc04161f1cfff08365b55b',1,'cy_stc_capsense_common_config_t']]], - ['csdcmodconnection',['csdCmodConnection',['../structcy__stc__capsense__internal__context__t.html#a52536fed664d3fc02213044a637d9d80',1,'cy_stc_capsense_internal_context_t']]], - ['csdcshconnection',['csdCshConnection',['../structcy__stc__capsense__internal__context__t.html#a3a30b3c133e73edbb7247dde94b8cfd9',1,'cy_stc_capsense_internal_context_t']]], - ['csdctankshielden',['csdCTankShieldEn',['../structcy__stc__capsense__common__config__t.html#a74c2e88f6c338ad404e26b6e11e5bbc7',1,'cy_stc_capsense_common_config_t']]], - ['csden',['csdEn',['../structcy__stc__capsense__common__config__t.html#a7fddda182e82215e18769618b498357c',1,'cy_stc_capsense_common_config_t']]], - ['csdfineinittime',['csdFineInitTime',['../structcy__stc__capsense__common__config__t.html#a937ca9a7b6a86c4eb8969b4ea1b9fa8f',1,'cy_stc_capsense_common_config_t']]], - ['csdidacaconfig',['csdIdacAConfig',['../structcy__stc__capsense__internal__context__t.html#aa322ece65334e5f6bdc305e196c174e4',1,'cy_stc_capsense_internal_context_t']]], - ['csdidacautocalen',['csdIdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#a2ba2ca9a903e0f7414351629b25f0e92',1,'cy_stc_capsense_common_config_t']]], - ['csdidacautogainen',['csdIdacAutoGainEn',['../structcy__stc__capsense__common__config__t.html#a5302a149824787161c2695232b32c9fa',1,'cy_stc_capsense_common_config_t']]], - ['csdidacbconfig',['csdIdacBConfig',['../structcy__stc__capsense__internal__context__t.html#a60ad882d18e3b4c5ce1137b158ad3676',1,'cy_stc_capsense_internal_context_t']]], - ['csdidaccompen',['csdIdacCompEn',['../structcy__stc__capsense__common__config__t.html#a437d937b2f790a23c4009af497bd3e35',1,'cy_stc_capsense_common_config_t']]], - ['csdidacgaininitindex',['csdIdacGainInitIndex',['../structcy__stc__capsense__common__config__t.html#a50f450472fd4ff69bbfcc992cd1e0a03',1,'cy_stc_capsense_common_config_t']]], - ['csdidacmin',['csdIdacMin',['../structcy__stc__capsense__common__config__t.html#a4fbf20312d5350474cd3b1c6c90c1ce8',1,'cy_stc_capsense_common_config_t']]], - ['csdidacrowcolalignen',['csdIdacRowColAlignEn',['../structcy__stc__capsense__common__config__t.html#a3abde8bd7d00d217b698b202dcd2bb34',1,'cy_stc_capsense_common_config_t']]], - ['csdinactivesnsconnection',['csdInactiveSnsConnection',['../structcy__stc__capsense__common__config__t.html#abe52b6e2f195fc5f638808538c0c0df5',1,'cy_stc_capsense_common_config_t']]], - ['csdinactivesnsdm',['csdInactiveSnsDm',['../structcy__stc__capsense__internal__context__t.html#a2f898bf4518847f17b47956a335f6353',1,'cy_stc_capsense_internal_context_t']]], - ['csdinactivesnshsiom',['csdInactiveSnsHsiom',['../structcy__stc__capsense__internal__context__t.html#a911c7ad42212f5ebc0d82849c27b6e04',1,'cy_stc_capsense_internal_context_t']]], - ['csdinitswres',['csdInitSwRes',['../structcy__stc__capsense__common__config__t.html#adc75f58a3536e80f4aeddbd1b749ff7b',1,'cy_stc_capsense_common_config_t']]], - ['csdmfsdivideroffsetf1',['csdMfsDividerOffsetF1',['../structcy__stc__capsense__common__config__t.html#a2086ec7840bcff2a38a1f4dbc96297ee',1,'cy_stc_capsense_common_config_t']]], - ['csdmfsdivideroffsetf2',['csdMfsDividerOffsetF2',['../structcy__stc__capsense__common__config__t.html#ae84b54901b2a622357902f34444502ca',1,'cy_stc_capsense_common_config_t']]], - ['csdrawtarget',['csdRawTarget',['../structcy__stc__capsense__common__config__t.html#ab21e95353a8fa1abae498d2a110db030',1,'cy_stc_capsense_common_config_t']]], - ['csdrconst',['csdRConst',['../structcy__stc__capsense__common__config__t.html#a3023ed9a75800748f3af86571b42a5b0',1,'cy_stc_capsense_common_config_t']]], - ['csdrefcdacautoen',['csdRefCdacAutoEn',['../structcy__stc__capsense__common__config__t.html#a90837672b37f5f4e86b553c4d53010b4',1,'cy_stc_capsense_common_config_t']]], - ['csdrefcdacrowcolumnalignen',['csdRefCdacRowColumnAlignEn',['../structcy__stc__capsense__common__config__t.html#ab311773c2afdf9dcf1fc58af15a0477d',1,'cy_stc_capsense_common_config_t']]], - ['csdregamuxbufinit',['csdRegAmuxbufInit',['../structcy__stc__capsense__internal__context__t.html#a6c28b93814ffaa55e6fb872700b4ca39',1,'cy_stc_capsense_internal_context_t']]], - ['csdregconfig',['csdRegConfig',['../structcy__stc__capsense__internal__context__t.html#a904304439ab60e08be051b7f3d41e44d',1,'cy_stc_capsense_internal_context_t']]], - ['csdreghscmpinit',['csdRegHscmpInit',['../structcy__stc__capsense__internal__context__t.html#a449bf02b29d79cf2a38e8681041d5552',1,'cy_stc_capsense_internal_context_t']]], - ['csdreghscmpscan',['csdRegHscmpScan',['../structcy__stc__capsense__internal__context__t.html#a9b8255706a4d3e0206a7afdbd4373c94',1,'cy_stc_capsense_internal_context_t']]], - ['csdregiosel',['csdRegIoSel',['../structcy__stc__capsense__internal__context__t.html#a69a75b1f9b0b9ee96d91fec2150e0b2e',1,'cy_stc_capsense_internal_context_t']]], - ['csdregrefgen',['csdRegRefgen',['../structcy__stc__capsense__internal__context__t.html#aea1919ff206aa3b96e18e0f584b41e23',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswamuxbufsel',['csdRegSwAmuxbufSel',['../structcy__stc__capsense__internal__context__t.html#a19d99d39617a9c0e0282028ddd1ba2fe',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswbypsel',['csdRegSwBypSel',['../structcy__stc__capsense__internal__context__t.html#a41e9700e4d9869a223efa4fb8c208011',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswcmpnsel',['csdRegSwCmpNSel',['../structcy__stc__capsense__internal__context__t.html#a14ee87b414f48d9a8c70c11032c823f0',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswcmppsel',['csdRegSwCmpPSel',['../structcy__stc__capsense__internal__context__t.html#a67205084e46e007d0a6d4c8811047845',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswdsisel',['csdRegSwDsiSel',['../structcy__stc__capsense__internal__context__t.html#a988ff22fa06616b19a39c39d169a02f0',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswhspselcmodinit',['csdRegSwHsPSelCmodInit',['../structcy__stc__capsense__internal__context__t.html#af19d498cb29cbaa134653395eafd7ec6',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswhspselctankinit',['csdRegSwHsPSelCtankInit',['../structcy__stc__capsense__internal__context__t.html#ad2aeacf04ec2d90fa491b0eef451010a',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswhspselscan',['csdRegSwHsPSelScan',['../structcy__stc__capsense__internal__context__t.html#a589c74e9be04b3416fadad444150da66',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswrefgensel',['csdRegSwRefGenSel',['../structcy__stc__capsense__internal__context__t.html#afc2655e619b06ba8b961a434b14d30d1',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswresinit',['csdRegSwResInit',['../structcy__stc__capsense__internal__context__t.html#aa6a2613fbe056600e359d10d3865c723',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswresscan',['csdRegSwResScan',['../structcy__stc__capsense__internal__context__t.html#a85cb2b96016d55f3df77b52e9f8a326f',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswshieldselscan',['csdRegSwShieldSelScan',['../structcy__stc__capsense__internal__context__t.html#a0319bc9875f2c2f7cd7eea16cd17b8c2',1,'cy_stc_capsense_internal_context_t']]], - ['csdshielddelay',['csdShieldDelay',['../structcy__stc__capsense__common__config__t.html#ae4bc5430219c2d2613941168464acc96',1,'cy_stc_capsense_common_config_t']]], - ['csdshielden',['csdShieldEn',['../structcy__stc__capsense__common__config__t.html#ad8fa7f6bb76ee337e4c8650a105e30f4',1,'cy_stc_capsense_common_config_t']]], - ['csdshieldmode',['csdShieldMode',['../structcy__stc__capsense__common__config__t.html#abb79c58604dc20c98dcebda8ae1d9a1e',1,'cy_stc_capsense_common_config_t']]], - ['csdshieldnumpin',['csdShieldNumPin',['../structcy__stc__capsense__common__config__t.html#add23287dd34a8fdbf49d4e4bfaf9600a',1,'cy_stc_capsense_common_config_t']]], - ['csdshieldswres',['csdShieldSwRes',['../structcy__stc__capsense__common__config__t.html#a9d116265ff9d889b1b76fa80ff292e32',1,'cy_stc_capsense_common_config_t']]], - ['csdvref',['csdVref',['../structcy__stc__capsense__common__config__t.html#ab982977927531f92c5ac748fa316c06f',1,'cy_stc_capsense_common_config_t']]], - ['csdvrefgain',['csdVrefGain',['../structcy__stc__capsense__internal__context__t.html#a4973e3bb2c5cf514f7950d7bf44268cc',1,'cy_stc_capsense_internal_context_t']]], - ['csdvrefvoltagemv',['csdVrefVoltageMv',['../structcy__stc__capsense__internal__context__t.html#a30c3792b5d6a3df45fe801712fae87d4',1,'cy_stc_capsense_internal_context_t']]], - ['cshieldcap',['cShieldCap',['../structcy__stc__capsense__bist__context__t.html#ad6d854327c533a7e1c2eb625a02dd8cb',1,'cy_stc_capsense_bist_context_t']]], - ['csxautotuneen',['csxAutotuneEn',['../structcy__stc__capsense__common__config__t.html#a9735de5888736467f085c85e66751366',1,'cy_stc_capsense_common_config_t']]], - ['csxcalibrationerror',['csxCalibrationError',['../structcy__stc__capsense__common__config__t.html#a0be983572fd16014ccef16c90b3521e7',1,'cy_stc_capsense_common_config_t']]], - ['csxcdacautocalen',['csxCdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#a419df7ab15c165f2f873aba9b16b227b',1,'cy_stc_capsense_common_config_t']]], - ['csxcdacautocalibmin',['csxCdacAutoCalibMin',['../structcy__stc__capsense__common__config__t.html#a545223c0a8916866fd9b00303112315e',1,'cy_stc_capsense_common_config_t']]], - ['csxcdaccompdivautoen',['csxCdacCompDivAutoEn',['../structcy__stc__capsense__common__config__t.html#af9ba05d0be74df2e9cf11fd2afb88670',1,'cy_stc_capsense_common_config_t']]], - ['csxcdaccompen',['csxCdacCompEn',['../structcy__stc__capsense__common__config__t.html#addb1546d6cdff43117f4da0929734756',1,'cy_stc_capsense_common_config_t']]], - ['csxen',['csxEn',['../structcy__stc__capsense__common__config__t.html#a816a9d211280fa1541cb9d79e790926d',1,'cy_stc_capsense_common_config_t']]], - ['csxfineinittime',['csxFineInitTime',['../structcy__stc__capsense__common__config__t.html#a5fc5e888dc56992a0c194b4c425a8a5d',1,'cy_stc_capsense_common_config_t']]], - ['csxidacautocalen',['csxIdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#a0bb810d87bef97c73582aeb5e44f86cc',1,'cy_stc_capsense_common_config_t']]], - ['csxidacgaininitindex',['csxIdacGainInitIndex',['../structcy__stc__capsense__common__config__t.html#a0cd8747f6c21cb813ecd18edf9d54229',1,'cy_stc_capsense_common_config_t']]], - ['csxinactivesnsconnection',['csxInactiveSnsConnection',['../structcy__stc__capsense__common__config__t.html#ab12b62511a5127255fe4c24775f5eaca',1,'cy_stc_capsense_common_config_t']]], - ['csxinactivesnsdm',['csxInactiveSnsDm',['../structcy__stc__capsense__internal__context__t.html#aea56a94ce27860b10e2aa32ccd52df2c',1,'cy_stc_capsense_internal_context_t']]], - ['csxinactivesnshsiom',['csxInactiveSnsHsiom',['../structcy__stc__capsense__internal__context__t.html#aeb5c1fe75ad52183139cae88db666c6f',1,'cy_stc_capsense_internal_context_t']]], - ['csxinitshieldswres',['csxInitShieldSwRes',['../structcy__stc__capsense__common__config__t.html#afde18fd9f1dfb9d859cd24ec0814a57c',1,'cy_stc_capsense_common_config_t']]], - ['csxinitswres',['csxInitSwRes',['../structcy__stc__capsense__common__config__t.html#aaa99b5e4cc5ed3211dc14941064a082a',1,'cy_stc_capsense_common_config_t']]], - ['csxmfsdivideroffsetf1',['csxMfsDividerOffsetF1',['../structcy__stc__capsense__common__config__t.html#a07e6050b71ba83dd4a5baf3e1380956f',1,'cy_stc_capsense_common_config_t']]], - ['csxmfsdivideroffsetf2',['csxMfsDividerOffsetF2',['../structcy__stc__capsense__common__config__t.html#a9b7eca3dd5ff0f135ce8785fa3fd4f2f',1,'cy_stc_capsense_common_config_t']]], - ['csxrawtarget',['csxRawTarget',['../structcy__stc__capsense__common__config__t.html#aa5656822ae92239213960e8c8e8e5d8e',1,'cy_stc_capsense_common_config_t']]], - ['csxrefcdacautoen',['csxRefCdacAutoEn',['../structcy__stc__capsense__common__config__t.html#a8fbd6eca9f5700de8ebb37d349713c1b',1,'cy_stc_capsense_common_config_t']]], - ['csxrefgain',['csxRefGain',['../structcy__stc__capsense__common__config__t.html#ac5354e52ee64d8d1afac351a9d8a0428',1,'cy_stc_capsense_common_config_t']]], - ['csxregamuxbuf',['csxRegAMuxBuf',['../structcy__stc__capsense__internal__context__t.html#a930ea5e7b3a0ab55e3d245a4c7fcaa44',1,'cy_stc_capsense_internal_context_t']]], - ['csxregconfiginit',['csxRegConfigInit',['../structcy__stc__capsense__internal__context__t.html#a4769ef311a77513a99e8aa77ae0be92e',1,'cy_stc_capsense_internal_context_t']]], - ['csxregconfigscan',['csxRegConfigScan',['../structcy__stc__capsense__internal__context__t.html#a6af1dd5754837d8be8da11a72241cc15',1,'cy_stc_capsense_internal_context_t']]], - ['csxregrefgen',['csxRegRefgen',['../structcy__stc__capsense__internal__context__t.html#a43ebfc2e417b5727b9968f3a9f9d5446',1,'cy_stc_capsense_internal_context_t']]], - ['csxregrefgensel',['csxRegRefgenSel',['../structcy__stc__capsense__internal__context__t.html#a1aae8b3da9ccfdc7af195dc760390588',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswcmpnsel',['csxRegSwCmpNSel',['../structcy__stc__capsense__internal__context__t.html#afdca09ebf3e847d35b4175a20761b09b',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswrefgensel',['csxRegSwRefGenSel',['../structcy__stc__capsense__internal__context__t.html#af4fab337c4d3a776ad5aacf47da8c31f',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswresinit',['csxRegSwResInit',['../structcy__stc__capsense__internal__context__t.html#a1f11ddec8ecd0a2aed8347d237e5495f',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswresprech',['csxRegSwResPrech',['../structcy__stc__capsense__internal__context__t.html#a0c1d55db8fd5b06a7f94d7ce8fa74966',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswresscan',['csxRegSwResScan',['../structcy__stc__capsense__internal__context__t.html#a4a22eb64852220cd5ca1197e384dd737',1,'cy_stc_capsense_internal_context_t']]], - ['csxscanshieldswres',['csxScanShieldSwRes',['../structcy__stc__capsense__common__config__t.html#aa6917c3c8a71cb3c44e47cbe32742de5',1,'cy_stc_capsense_common_config_t']]], - ['csxscanswres',['csxScanSwRes',['../structcy__stc__capsense__common__config__t.html#a01c2adce03bd2616b2d1c7acd13a158d',1,'cy_stc_capsense_common_config_t']]], - ['curbistchid',['curBistChId',['../structcy__stc__capsense__bist__context__t.html#aa8ba6858f7d0f4b24360398e483a1042',1,'cy_stc_capsense_bist_context_t']]], - ['curbistslotid',['curBistSlotId',['../structcy__stc__capsense__bist__context__t.html#aa4ca425d2df888cd993350dad4508068',1,'cy_stc_capsense_bist_context_t']]], - ['curptreltdcfg',['curPtrEltdCfg',['../structcy__stc__capsense__bist__context__t.html#a76db306b09b761ca50592ed7bda6d703',1,'cy_stc_capsense_bist_context_t']]], - ['currentchannelslotindex',['currentChannelSlotIndex',['../structcy__stc__active__scan__sns__t.html#ab8243ea0223f5e51f7466138dcf83f76',1,'cy_stc_active_scan_sns_t']]], - ['currentisc',['currentISC',['../structcy__stc__capsense__bist__context__t.html#a5ec842573f2642d54e2d76c26556d674',1,'cy_stc_capsense_bist_context_t']]], - ['currentsensemethod',['currentSenseMethod',['../structcy__stc__active__scan__sns__t.html#a623c26b8d6deb2025f4a4ae186bdb8b5',1,'cy_stc_active_scan_sns_t']]], - ['currentslotindex',['currentSlotIndex',['../structcy__stc__capsense__internal__context__t.html#a5896555e734e28ca9c0c59624c05ad7b',1,'cy_stc_capsense_internal_context_t']]], - ['currenttimestamp',['currentTimestamp',['../structcy__stc__capsense__ballistic__context__t.html#a1bc85f04ebaefcabd217c5cd6edcd701',1,'cy_stc_capsense_ballistic_context_t']]], - ['customisc',['customISC',['../structcy__stc__capsense__bist__custom__parameters__t.html#a0454367cc4a77a7e20a1864fa3d3e5f3',1,'cy_stc_capsense_bist_custom_parameters_t']]], - ['cy_5fcapsense_5fadvanced_5fcentroid_5fno_5ftouches',['CY_CAPSENSE_ADVANCED_CENTROID_NO_TOUCHES',['../group__group__capsense__macros__touch.html#ga357d64c36840893809b9fa325f9ad6d5',1,'cy_capsense_lib.h']]], - ['cy_5fcapsense_5fadvanced_5fcentroid_5fposition_5ferror',['CY_CAPSENSE_ADVANCED_CENTROID_POSITION_ERROR',['../group__group__capsense__macros__touch.html#ga7178f206572f3066be919024efcd824f',1,'cy_capsense_lib.h']]], - ['cy_5fcapsense_5famux_5fsensor_5fconnection_5fmethod',['CY_CAPSENSE_AMUX_SENSOR_CONNECTION_METHOD',['../group__group__capsense__macros__settings.html#ga75da5dfb126a061b9cef05cb39f3284d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5faverage_5ffilter_5flen_5f4',['CY_CAPSENSE_AVERAGE_FILTER_LEN_4',['../group__group__capsense__macros__settings.html#gad8593b7368f45b7383b44788ce1c9dd9',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbad_5fparam_5fe',['CY_CAPSENSE_BAD_PARAM_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11ae2fbf89a3a3b2871d0a0e5e5d3d8c1e3',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fbad_5fconfig_5fe',['CY_CAPSENSE_BIST_BAD_CONFIG_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857cae73550f4b25fe2bb7f8a6504c85dd93c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fbad_5fparam_5fe',['CY_CAPSENSE_BIST_BAD_PARAM_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca66ae37f5dda5bc54f08f39a3c47af841',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fbsln_5fintegrity_5fmask',['CY_CAPSENSE_BIST_BSLN_INTEGRITY_MASK',['../group__group__capsense__macros__bist.html#ga9d7bb72142b0b421c7caf7c586740c04',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fcinta_5fid_5fe',['CY_CAPSENSE_BIST_CINTA_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29bacfe90ee851fdb0c5990cf9c255c2142d',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5fcintb_5fid_5fe',['CY_CAPSENSE_BIST_CINTB_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29ba8d03343ec314140673d8b7034caeacc8',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5fcmod_5fid_5fe',['CY_CAPSENSE_BIST_CMOD_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29baf3745617d4c520ecd77a4b87a8fe8172',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5fcrc_5fwdgt_5fmask',['CY_CAPSENSE_BIST_CRC_WDGT_MASK',['../group__group__capsense__macros__bist.html#gaabe36e7d49b10767ad5f54682f90fb50',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fcsd_5fgroup',['CY_CAPSENSE_BIST_CSD_GROUP',['../group__group__capsense__macros__settings.html#gab494555fb44eede371e067b9064175f5',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fcsh_5fid_5fe',['CY_CAPSENSE_BIST_CSH_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29ba86cb63cafed2d806f3a916f9ab51890f',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5fcsx_5fgroup',['CY_CAPSENSE_BIST_CSX_GROUP',['../group__group__capsense__macros__settings.html#gae0519681d6139d746d3b7a457c132869',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5ferror_5fe',['CY_CAPSENSE_BIST_ERROR_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca8454fc9f2934cdb63ed2a9962b318749',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fexternal_5fcap_5fmask',['CY_CAPSENSE_BIST_EXTERNAL_CAP_MASK',['../group__group__capsense__macros__bist.html#ga13c098393a6570c7c8d13ae57b4c4666',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5ffail_5fe',['CY_CAPSENSE_BIST_FAIL_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca561a9faf24c500cc9990b46117fdcace',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5ffeature_5fdisabled_5fe',['CY_CAPSENSE_BIST_FEATURE_DISABLED_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857caaaa05668fc0be7bfb934a228b0d9410c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fgroup',['CY_CAPSENSE_BIST_GROUP',['../group__group__capsense__macros__settings.html#ga6344d0ea9b9310a6651f5275c7ccb0c9',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fhigh_5flimit_5fe',['CY_CAPSENSE_BIST_HIGH_LIMIT_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857cad8c13f3c18b3baae715bf7655356a528',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fbusy_5fe',['CY_CAPSENSE_BIST_HW_BUSY_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca6c651f6e693a610e55047aed09a0ac5f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5feltd_5fcap_5fe',['CY_CAPSENSE_BIST_HW_ELTD_CAP_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bac3f24b124e6502bc91a2a87c8dea3467',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5feltd_5fcap_5fsh_5fe',['CY_CAPSENSE_BIST_HW_ELTD_CAP_SH_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bae8573fab188fc42701a49c742c883086',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fexternal_5fcap_5fe',['CY_CAPSENSE_BIST_HW_EXTERNAL_CAP_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba0cccf8fa84261cb7e4f6836458bad6f8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fshort_5fe',['CY_CAPSENSE_BIST_HW_SHORT_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bae808fdf59791814d38e48e3d4e3d6cab',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fundefined_5fe',['CY_CAPSENSE_BIST_HW_UNDEFINED_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba6721027a5041a590fb580bbb387468c4',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fvdda_5fe',['CY_CAPSENSE_BIST_HW_VDDA_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba820f53158bd2e8d1cfb2651079032936',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fhighza_5fe',['CY_CAPSENSE_BIST_IO_HIGHZA_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca7532ce3fd04bc5ae9a9a554367f24e54',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fsense_5fe',['CY_CAPSENSE_BIST_IO_SENSE_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca3f1270ba1326fae64c3df88540c7bb7f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fshield_5fe',['CY_CAPSENSE_BIST_IO_SHIELD_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca15bc3a003e4a77d67be2807aa1b6bdba',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fstrong_5fe',['CY_CAPSENSE_BIST_IO_STRONG_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca4e7f6404fa329f5f8a4e8801a34e8080',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fstrong_5fhigh_5fe',['CY_CAPSENSE_BIST_IO_STRONG_HIGH_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca532cc6485eb0f37cac049f6a268465a6',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fundefined_5fe',['CY_CAPSENSE_BIST_IO_UNDEFINED_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca1b4ffa3b03cc730480b1ee44be73d09c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5flow_5flimit_5fe',['CY_CAPSENSE_BIST_LOW_LIMIT_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca903bdfd6556833de241df23a903f7b62',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fraw_5fintegrity_5fmask',['CY_CAPSENSE_BIST_RAW_INTEGRITY_MASK',['../group__group__capsense__macros__bist.html#gacb6fcdbae96744efd2c8126fd54c9903',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5frun_5favailable_5fself_5ftest_5fmask',['CY_CAPSENSE_BIST_RUN_AVAILABLE_SELF_TEST_MASK',['../group__group__capsense__macros__bist.html#gab2507f4af9281e8032caac62016a7e8a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fshield_5fcap_5fmask',['CY_CAPSENSE_BIST_SHIELD_CAP_MASK',['../group__group__capsense__macros__bist.html#ga5892e01404f93ac02d8c324dc4d31eb9',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fshield_5fgroup',['CY_CAPSENSE_BIST_SHIELD_GROUP',['../group__group__capsense__macros__settings.html#ga9e6c7de68c2b6eff071f394c3c9666cf',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fsns_5fcap_5fmask',['CY_CAPSENSE_BIST_SNS_CAP_MASK',['../group__group__capsense__macros__bist.html#ga0b583a61444f762654dc49063920359d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fsns_5fintegrity_5fmask',['CY_CAPSENSE_BIST_SNS_INTEGRITY_MASK',['../group__group__capsense__macros__bist.html#ga46eda476659322c92143f52e2871c3f6',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbist_5fsuccess_5fe',['CY_CAPSENSE_BIST_SUCCESS_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca446645c89682b433f4294cc2251217f1',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5ftimeout_5fe',['CY_CAPSENSE_BIST_TIMEOUT_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca7c3531ff81e35c5a17b9bb6326027710',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fvdda_5fmask',['CY_CAPSENSE_BIST_VDDA_MASK',['../group__group__capsense__macros__bist.html#ga0e658fb59f70e15c77629b558347d68b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbusy',['CY_CAPSENSE_BUSY',['../group__group__capsense__macros__general.html#gaa3c8ba2488a71e7ab976519e39169929',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbusy_5fall_5fch_5fmask',['CY_CAPSENSE_BUSY_ALL_CH_MASK',['../group__group__capsense__macros__general.html#ga9b37d16f569ed138127fcd5362512ab7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbusy_5fch_5fmask',['CY_CAPSENSE_BUSY_CH_MASK',['../group__group__capsense__macros__general.html#gab9415133b167fa71c5d0eef322b984e3',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fbusy_5fmask',['CY_CAPSENSE_BUSY_MASK',['../group__group__capsense__macros__general.html#ga547d0cc94e1353639d865d74d38dcf48',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcalibrateallslots',['Cy_CapSense_CalibrateAllSlots',['../group__group__capsense__low__level.html#ga1130ee418f843fce4e68832efa37e28f',1,'Cy_CapSense_CalibrateAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga1130ee418f843fce4e68832efa37e28f',1,'Cy_CapSense_CalibrateAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fcalibrateallwidgets',['Cy_CapSense_CalibrateAllWidgets',['../group__group__capsense__low__level.html#ga3a30f2e4cdef59eab57f589b0091d937',1,'Cy_CapSense_CalibrateAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#ga3a30f2e4cdef59eab57f589b0091d937',1,'Cy_CapSense_CalibrateAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fcalibratewidget',['Cy_CapSense_CalibrateWidget',['../group__group__capsense__low__level.html#ga889e60b9ca2470b37b37c772558f44ad',1,'Cy_CapSense_CalibrateWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#ga889e60b9ca2470b37b37c772558f44ad',1,'Cy_CapSense_CalibrateWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fcallback_5ft',['cy_capsense_callback_t',['../group__group__capsense__structures.html#ga908447ccc2720f31c861d9eb79ff75d2',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fcheckcrcwidget',['Cy_CapSense_CheckCRCWidget',['../group__group__capsense__low__level.html#ga8266fcf05ad962580844a2c9c01f2fb8',1,'Cy_CapSense_CheckCRCWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga8266fcf05ad962580844a2c9c01f2fb8',1,'Cy_CapSense_CheckCRCWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fcheckintegritysensorbaseline',['Cy_CapSense_CheckIntegritySensorBaseline',['../group__group__capsense__low__level.html#gab5574b4c085f9cf891457cbf835e6ca1',1,'Cy_CapSense_CheckIntegritySensorBaseline(uint32_t widgetId, uint32_t sensorId, uint16_t baselineHighLimit, uint16_t baselineLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#gab5574b4c085f9cf891457cbf835e6ca1',1,'Cy_CapSense_CheckIntegritySensorBaseline(uint32_t widgetId, uint32_t sensorId, uint16_t baselineHighLimit, uint16_t baselineLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fcheckintegritysensorpins',['Cy_CapSense_CheckIntegritySensorPins',['../group__group__capsense__low__level.html#gadcc9fa570b4c5aa91c66570f5c6f57d4',1,'Cy_CapSense_CheckIntegritySensorPins(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#gadcc9fa570b4c5aa91c66570f5c6f57d4',1,'Cy_CapSense_CheckIntegritySensorPins(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fcheckintegritysensorrawcount',['Cy_CapSense_CheckIntegritySensorRawcount',['../group__group__capsense__low__level.html#ga617c2c407a13538ca6662314402e3f61',1,'Cy_CapSense_CheckIntegritySensorRawcount(uint32_t widgetId, uint32_t sensorId, uint16_t rawcountHighLimit, uint16_t rawcountLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga617c2c407a13538ca6662314402e3f61',1,'Cy_CapSense_CheckIntegritySensorRawcount(uint32_t widgetId, uint32_t sensorId, uint16_t rawcountHighLimit, uint16_t rawcountLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fchecktunercmdintegrity',['Cy_CapSense_CheckTunerCmdIntegrity',['../group__group__capsense__high__level.html#ga1f0fdedcec1ad936f5e9e4ae28f17274',1,'Cy_CapSense_CheckTunerCmdIntegrity(const uint8_t *commandPacket): cy_capsense_tuner.c'],['../group__group__capsense__high__level.html#ga1f0fdedcec1ad936f5e9e4ae28f17274',1,'Cy_CapSense_CheckTunerCmdIntegrity(const uint8_t *commandPacket): cy_capsense_tuner.c']]], - ['cy_5fcapsense_5fcic2_5ffilter',['CY_CAPSENSE_CIC2_FILTER',['../group__group__capsense__macros__settings.html#gaf5100eb9ad525c7553ad3f6a91af6bee',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcic_5ffilter',['CY_CAPSENSE_CIC_FILTER',['../group__group__capsense__macros__settings.html#ga46477d13f648065d22ef743b1f0cfb2a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fauto_5fmask',['CY_CAPSENSE_CLK_SOURCE_AUTO_MASK',['../group__group__capsense__macros__settings.html#ga3c9ca2af91bd2646aac161925848e213',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fdirect',['CY_CAPSENSE_CLK_SOURCE_DIRECT',['../group__group__capsense__macros__settings.html#ga51f10327320c57f7d0de670503dc412e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fmask',['CY_CAPSENSE_CLK_SOURCE_MASK',['../group__group__capsense__macros__settings.html#gafb022afde037da74b2d3950f4530984d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fprs',['CY_CAPSENSE_CLK_SOURCE_PRS',['../group__group__capsense__macros__settings.html#ga3581ff1b2ecfdfcbf9d5caa1752750da',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fprs12',['CY_CAPSENSE_CLK_SOURCE_PRS12',['../group__group__capsense__macros__settings.html#ga095c414d9cf0be7f900dac0fd30d9d33',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fprs8',['CY_CAPSENSE_CLK_SOURCE_PRS8',['../group__group__capsense__macros__settings.html#gac4d57717a81b64c46682900eb6157628',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fprs_5fauto',['CY_CAPSENSE_CLK_SOURCE_PRS_AUTO',['../group__group__capsense__macros__settings.html#ga7ce62c963a70100f945ae4f27763ef6b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fprs_5fauto_5fmask',['CY_CAPSENSE_CLK_SOURCE_PRS_AUTO_MASK',['../group__group__capsense__macros__settings.html#ga522e4a598e2c119d424d7f70185c99e5',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fsmartsense_5fmask',['CY_CAPSENSE_CLK_SOURCE_SMARTSENSE_MASK',['../group__group__capsense__macros__settings.html#ga1b5b9ffad6e3a350201af0099b047c0b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fsmartsense_5fpos',['CY_CAPSENSE_CLK_SOURCE_SMARTSENSE_POS',['../group__group__capsense__macros__settings.html#ga13cd953ef4cdedbca608469ef011bb82',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fssc',['CY_CAPSENSE_CLK_SOURCE_SSC',['../group__group__capsense__macros__settings.html#gaf231ca0a07513f2a3bf4b98d089be133',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fssc10',['CY_CAPSENSE_CLK_SOURCE_SSC10',['../group__group__capsense__macros__settings.html#gae8a4b5b936a963429f169eba340a1bfc',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fssc6',['CY_CAPSENSE_CLK_SOURCE_SSC6',['../group__group__capsense__macros__settings.html#ga79a8c9ba302c96412fb4bca29fa04d1a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fssc7',['CY_CAPSENSE_CLK_SOURCE_SSC7',['../group__group__capsense__macros__settings.html#ga9e6b845c5173ca6a94842d000d7e5038',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fssc9',['CY_CAPSENSE_CLK_SOURCE_SSC9',['../group__group__capsense__macros__settings.html#gab6f6d25f9a034ce470b8c965aa561b29',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fssc_5fauto',['CY_CAPSENSE_CLK_SOURCE_SSC_AUTO',['../group__group__capsense__macros__settings.html#ga650ce8b71b6d1bd0bb8ac0c3074092fb',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fclk_5fsource_5fssc_5fauto_5fmask',['CY_CAPSENSE_CLK_SOURCE_SSC_AUTO_MASK',['../group__group__capsense__macros__settings.html#gaf1d73a40e03d31089561bbd84ab36afd',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcmodpad_5fe',['CY_CAPSENSE_CMODPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa40e8044b7c69e4bf9cfe872fccec8db2',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fconfigured_5ffreq_5fnum',['CY_CAPSENSE_CONFIGURED_FREQ_NUM',['../group__group__capsense__macros__settings.html#ga3a9e30d05417f1c76b49554455ce0a63',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcounter_5fmode_5foverflow',['CY_CAPSENSE_COUNTER_MODE_OVERFLOW',['../group__group__capsense__macros__settings.html#ga0e8549fe9b874c6ccce9dfd43d848fb7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcounter_5fmode_5fsaturate',['CY_CAPSENSE_COUNTER_MODE_SATURATE',['../group__group__capsense__macros__settings.html#ga85f8ad7f7022754b73801f601659d722',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsd_5fgroup',['CY_CAPSENSE_CSD_GROUP',['../group__group__capsense__macros__settings.html#ga3047d6d3cbb3fad846ebd1c446c14906',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsd_5fss_5fdis',['CY_CAPSENSE_CSD_SS_DIS',['../group__group__capsense__macros__settings.html#gaf789d51e39a68008c203c55c18d66242',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsd_5fss_5fhw_5fen',['CY_CAPSENSE_CSD_SS_HW_EN',['../group__group__capsense__macros__settings.html#gaa34921f5c121a3182c1d6216fe517f50',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsd_5fss_5fhwth_5fen',['CY_CAPSENSE_CSD_SS_HWTH_EN',['../group__group__capsense__macros__settings.html#ga36dde28284f8f8ccb59f7d5167ecf2d8',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsd_5fss_5fth_5fen',['CY_CAPSENSE_CSD_SS_TH_EN',['../group__group__capsense__macros__settings.html#ga3fa20def75dbad19b7208a63f247234f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsh_5fprecharge_5fio_5fbuf',['CY_CAPSENSE_CSH_PRECHARGE_IO_BUF',['../group__group__capsense__macros__settings.html#ga3433492babafa969b79de68000d8351e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsh_5fprecharge_5fvref',['CY_CAPSENSE_CSH_PRECHARGE_VREF',['../group__group__capsense__macros__settings.html#ga248ee6484453d33e49e7c57127d8ac0a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcshieldpad_5fe',['CY_CAPSENSE_CSHIELDPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa4443cabccd1c4ba6e0161421b2e68ef7',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fcsx_5fgroup',['CY_CAPSENSE_CSX_GROUP',['../group__group__capsense__macros__settings.html#ga53b14865512480c26078a3348f2d73a1',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fage_5fmask',['CY_CAPSENSE_CSX_TOUCHPAD_AGE_MASK',['../group__group__capsense__macros__touch.html#ga7666446ef2e080e96ad3583bb2a83391',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fdebounce_5fmask',['CY_CAPSENSE_CSX_TOUCHPAD_DEBOUNCE_MASK',['../group__group__capsense__macros__touch.html#gaff1a4c6b9875c4c66cb1922952997f7b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fid_5fabsent',['CY_CAPSENSE_CSX_TOUCHPAD_ID_ABSENT',['../group__group__capsense__macros__touch.html#gabf7e655ae8cf71bb01a138f55718007c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fid_5fmask',['CY_CAPSENSE_CSX_TOUCHPAD_ID_MASK',['../group__group__capsense__macros__touch.html#gaa7c78d7d49c6c4e4ce668580f8f1a304',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fid_5fmax',['CY_CAPSENSE_CSX_TOUCHPAD_ID_MAX',['../group__group__capsense__macros__touch.html#ga26736659b0a4f78ffb1dce945b232c04',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fid_5fmin',['CY_CAPSENSE_CSX_TOUCHPAD_ID_MIN',['../group__group__capsense__macros__touch.html#gaf79c640a09ef3915083d857011d9c70c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fid_5fon_5ffail',['CY_CAPSENSE_CSX_TOUCHPAD_ID_ON_FAIL',['../group__group__capsense__macros__touch.html#ga41f9db75b066c5d862d822bea199fe2f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fid_5fundefined',['CY_CAPSENSE_CSX_TOUCHPAD_ID_UNDEFINED',['../group__group__capsense__macros__touch.html#gaec66ce283c819f7aaa44cf3886578e81',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fmax_5fage',['CY_CAPSENSE_CSX_TOUCHPAD_MAX_AGE',['../group__group__capsense__macros__touch.html#ga3d55593bb10be928a44a179df5338cf1',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fmax_5fpeaks',['CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS',['../group__group__capsense__macros__touch.html#ga3858658519030890061b252946477cd8',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fcsx_5ftouchpad_5fz_5fmask',['CY_CAPSENSE_CSX_TOUCHPAD_Z_MASK',['../group__group__capsense__macros__touch.html#ga0649c5861207fdc959f5dc4b05ecfb97',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctankpad_5fe',['CY_CAPSENSE_CTANKPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa818a3440d9895ed39574ccaba909ca02',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5fgnd',['CY_CAPSENSE_CTRLMUX_PIN_STATE_GND',['../group__group__capsense__macros__settings.html#gad3ee2ddf819d620ac6dc2018cced82e1',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5fhigh_5fz',['CY_CAPSENSE_CTRLMUX_PIN_STATE_HIGH_Z',['../group__group__capsense__macros__settings.html#ga82511fe1c0a47b01076ed2ef0bd5497f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5fmask_5fnumber',['CY_CAPSENSE_CTRLMUX_PIN_STATE_MASK_NUMBER',['../group__group__capsense__macros__settings.html#ga834b15ee89e35f95318837c0053acddc',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5fnumber',['CY_CAPSENSE_CTRLMUX_PIN_STATE_NUMBER',['../group__group__capsense__macros__settings.html#ga7d454d6736be00c7652760e2f497c60b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5frx',['CY_CAPSENSE_CTRLMUX_PIN_STATE_RX',['../group__group__capsense__macros__settings.html#gaa5bc6eeb1f8d838227a82ef1c53aea4a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5fshield',['CY_CAPSENSE_CTRLMUX_PIN_STATE_SHIELD',['../group__group__capsense__macros__settings.html#ga79b682938aec2b5ab3513b28c668640b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5fsns',['CY_CAPSENSE_CTRLMUX_PIN_STATE_SNS',['../group__group__capsense__macros__settings.html#ga5a53232c9bcb9825724a572b085c6bb3',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5ftx',['CY_CAPSENSE_CTRLMUX_PIN_STATE_TX',['../group__group__capsense__macros__settings.html#gab78095995442e1acc8644c8267c659a5',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5ftx_5fnegative',['CY_CAPSENSE_CTRLMUX_PIN_STATE_TX_NEGATIVE',['../group__group__capsense__macros__settings.html#ga9f360ec234320f16bbeb005d2329a5cd',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fpin_5fstate_5fvdda2',['CY_CAPSENSE_CTRLMUX_PIN_STATE_VDDA2',['../group__group__capsense__macros__settings.html#ga34a4335285d2426873746761223f27cb',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fctrlmux_5fsensor_5fconnection_5fmethod',['CY_CAPSENSE_CTRLMUX_SENSOR_CONNECTION_METHOD',['../group__group__capsense__macros__settings.html#ga710ffc1088e141d81d6068b6d106983e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fdecodewidgetgestures',['Cy_CapSense_DecodeWidgetGestures',['../group__group__capsense__high__level.html#ga55fa694191705971b3aa2c29021fb9aa',1,'Cy_CapSense_DecodeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__high__level.html#ga55fa694191705971b3aa2c29021fb9aa',1,'Cy_CapSense_DecodeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5fdeepsleepcallback',['Cy_CapSense_DeepSleepCallback',['../group__group__capsense__high__level.html#ga9c47887109b22521eba45109b7a27f31',1,'Cy_CapSense_DeepSleepCallback(cy_stc_syspm_callback_params_t *callbackParams, cy_en_syspm_callback_mode_t mode): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga9c47887109b22521eba45109b7a27f31',1,'Cy_CapSense_DeepSleepCallback(cy_stc_syspm_callback_params_t *callbackParams, cy_en_syspm_callback_mode_t mode): cy_capsense_control.c']]], - ['cy_5fcapsense_5fdeinit',['Cy_CapSense_DeInit',['../group__group__capsense__high__level.html#ga7b8a365213dde3be6c6932dc23fdcee6',1,'Cy_CapSense_DeInit(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga7b8a365213dde3be6c6932dc23fdcee6',1,'Cy_CapSense_DeInit(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fdisable',['CY_CAPSENSE_DISABLE',['../group__group__capsense__macros__general.html#ga67314c7f770734272917dd987bfbb970',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fds_5finit_5fcallback_5ft',['cy_capsense_ds_init_callback_t',['../group__group__capsense__structures.html#gaeebeea548d4c2235b14aba63f1dd4bcf',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5feltd_5ftype_5fmut_5frx_5fe',['CY_CAPSENSE_ELTD_TYPE_MUT_RX_E',['../group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274da4ca96cabafe3a952831e44d17b8dff12',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5feltd_5ftype_5fmut_5ftx_5fe',['CY_CAPSENSE_ELTD_TYPE_MUT_TX_E',['../group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274daf6a726323bc533e487382a42b87f4887',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5feltd_5ftype_5fself_5fe',['CY_CAPSENSE_ELTD_TYPE_SELF_E',['../group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274da6b30d1746bc14d69c2fff2005dafcda8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fenable',['CY_CAPSENSE_ENABLE',['../group__group__capsense__macros__general.html#ga24e839ab0e286fd7e0a29e94f400437c',1,'CY_CAPSENSE_ENABLE(): cy_capsense_common.h'],['../group__group__capsense__high__level.html#gade28f1f915ce6b97f13399074a819c0d',1,'Cy_CapSense_Enable(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gade28f1f915ce6b97f13399074a819c0d',1,'Cy_CapSense_Enable(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fend_5fof_5fscan_5fe',['CY_CAPSENSE_END_OF_SCAN_E',['../group__group__capsense__enums.html#ggabfbff81b8b80d4ee1a1d53c1fe0c9a11adb60f8a07fdcd4959e1cc682b050ac58',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fgesture_5fall_5fgestures_5fmask',['CY_CAPSENSE_GESTURE_ALL_GESTURES_MASK',['../group__group__capsense__macros__gesture.html#gae743ee30b6856ba519a9f7b3f34cf31b',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fccw',['CY_CAPSENSE_GESTURE_DIRECTION_CCW',['../group__group__capsense__macros__gesture.html#ga84ed896903d3820f5493af6b5f2f9dc5',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fcw',['CY_CAPSENSE_GESTURE_DIRECTION_CW',['../group__group__capsense__macros__gesture.html#ga832fa742b151f0e3935f2a64fd6bf248',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fdown',['CY_CAPSENSE_GESTURE_DIRECTION_DOWN',['../group__group__capsense__macros__gesture.html#gac6a805800ada8e6f499d063f45fb8ba8',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fdown_5fleft',['CY_CAPSENSE_GESTURE_DIRECTION_DOWN_LEFT',['../group__group__capsense__macros__gesture.html#ga2fd34853dba3ebb589cff0809f439a05',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fdown_5fright',['CY_CAPSENSE_GESTURE_DIRECTION_DOWN_RIGHT',['../group__group__capsense__macros__gesture.html#ga77e3a9bb62112a9c735527b339f60069',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fin',['CY_CAPSENSE_GESTURE_DIRECTION_IN',['../group__group__capsense__macros__gesture.html#ga27d0457e0715a7e74d4224a058897431',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fleft',['CY_CAPSENSE_GESTURE_DIRECTION_LEFT',['../group__group__capsense__macros__gesture.html#ga5660ae39ff90e08e33a71508d3059817',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fmask_5fone_5fedge',['CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_EDGE',['../group__group__capsense__macros__gesture.html#ga1e23456181eb829ba8671162cb8c77cc',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fmask_5fone_5fflick',['CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_FLICK',['../group__group__capsense__macros__gesture.html#ga90ffefd07036a54158518aa02a267899',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fmask_5fone_5frotate',['CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_ROTATE',['../group__group__capsense__macros__gesture.html#ga348a3958783fd42ce6e7a49f2f41110f',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fmask_5fone_5fscroll',['CY_CAPSENSE_GESTURE_DIRECTION_MASK_ONE_SCROLL',['../group__group__capsense__macros__gesture.html#gaa6067a4de589e0aee0521dea75bad3b4',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fmask_5ftwo_5fscroll',['CY_CAPSENSE_GESTURE_DIRECTION_MASK_TWO_SCROLL',['../group__group__capsense__macros__gesture.html#ga2b1afba16625a4f234e167a4580f28af',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fmask_5ftwo_5fzoom',['CY_CAPSENSE_GESTURE_DIRECTION_MASK_TWO_ZOOM',['../group__group__capsense__macros__gesture.html#ga51290cccf90066ccf5bba33c8757c296',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5foffset',['CY_CAPSENSE_GESTURE_DIRECTION_OFFSET',['../group__group__capsense__macros__gesture.html#ga3bfd7aa90e3ef1bf3c124c90ec9c2e13',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5foffset_5fone_5fedge',['CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_EDGE',['../group__group__capsense__macros__gesture.html#ga930273b6f56453073e1ca8ff2abf94c7',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5foffset_5fone_5fflick',['CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_FLICK',['../group__group__capsense__macros__gesture.html#ga957894ea4d5b38e5f61291ed92dbc993',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5foffset_5fone_5frotate',['CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_ROTATE',['../group__group__capsense__macros__gesture.html#ga997e1d9c53001a4bbfd497c22bf06012',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5foffset_5fone_5fscroll',['CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_ONE_SCROLL',['../group__group__capsense__macros__gesture.html#ga577bb1c6645e656fb8a35944559afde8',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5foffset_5ftwo_5fscroll',['CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_TWO_SCROLL',['../group__group__capsense__macros__gesture.html#gab65415405b4a5a8e2dcd432aeba8dad5',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5foffset_5ftwo_5fzoom',['CY_CAPSENSE_GESTURE_DIRECTION_OFFSET_TWO_ZOOM',['../group__group__capsense__macros__gesture.html#ga7fbcbb9c6b55c782a9f57d94313151e9',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fout',['CY_CAPSENSE_GESTURE_DIRECTION_OUT',['../group__group__capsense__macros__gesture.html#gae8f20752c3e95fdb7b9c7f37cce1a646',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fright',['CY_CAPSENSE_GESTURE_DIRECTION_RIGHT',['../group__group__capsense__macros__gesture.html#gabeb98d13bdc3570bca825b5a5d4a4ae0',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fup',['CY_CAPSENSE_GESTURE_DIRECTION_UP',['../group__group__capsense__macros__gesture.html#gad81547dd95beb218449d8d209d6f2d90',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fup_5fleft',['CY_CAPSENSE_GESTURE_DIRECTION_UP_LEFT',['../group__group__capsense__macros__gesture.html#gab12489738763fb5ace85ba3fffe3b127',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fdirection_5fup_5fright',['CY_CAPSENSE_GESTURE_DIRECTION_UP_RIGHT',['../group__group__capsense__macros__gesture.html#ga668fe831e9baa65d0953b1b3c7ac1158',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5ffiltering_5fmask',['CY_CAPSENSE_GESTURE_FILTERING_MASK',['../group__group__capsense__macros__gesture.html#ga6e09d43f87ae1109ab212ea0858188af',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fliftoff_5fmask',['CY_CAPSENSE_GESTURE_LIFTOFF_MASK',['../group__group__capsense__macros__gesture.html#gaf63cf60202ba76967617fe828214e71f',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fno_5fgesture',['CY_CAPSENSE_GESTURE_NO_GESTURE',['../group__group__capsense__macros__gesture.html#ga438d3109bdaa4dd9bd2a5653c37322f5',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fone_5ffngr_5fclick_5fdrag_5fmask',['CY_CAPSENSE_GESTURE_ONE_FNGR_CLICK_DRAG_MASK',['../group__group__capsense__macros__gesture.html#ga5d12f58b57629498afae2edca0a7749a',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fone_5ffngr_5fdouble_5fclick_5fmask',['CY_CAPSENSE_GESTURE_ONE_FNGR_DOUBLE_CLICK_MASK',['../group__group__capsense__macros__gesture.html#ga8b8acd72bf319f96f240c392dad2e271',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fone_5ffngr_5fedge_5fswipe_5fmask',['CY_CAPSENSE_GESTURE_ONE_FNGR_EDGE_SWIPE_MASK',['../group__group__capsense__macros__gesture.html#ga76d9372238319112efa57dd749a08485',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fone_5ffngr_5fflick_5fmask',['CY_CAPSENSE_GESTURE_ONE_FNGR_FLICK_MASK',['../group__group__capsense__macros__gesture.html#ga2ebcf1c878564dc6badc69097041ca9a',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fone_5ffngr_5frotate_5fmask',['CY_CAPSENSE_GESTURE_ONE_FNGR_ROTATE_MASK',['../group__group__capsense__macros__gesture.html#ga8f2f7a9121b4ada5241dd7a14250a0a2',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fone_5ffngr_5fscroll_5fmask',['CY_CAPSENSE_GESTURE_ONE_FNGR_SCROLL_MASK',['../group__group__capsense__macros__gesture.html#ga8d5527833a1082b48a13f883a015cc1e',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5fone_5ffngr_5fsingle_5fclick_5fmask',['CY_CAPSENSE_GESTURE_ONE_FNGR_SINGLE_CLICK_MASK',['../group__group__capsense__macros__gesture.html#gabb930ce91e2bcc9d2e6d991c1856618b',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5ftouchdown_5fmask',['CY_CAPSENSE_GESTURE_TOUCHDOWN_MASK',['../group__group__capsense__macros__gesture.html#ga5a23b048578a45a756b6518d4d73b3eb',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5ftwo_5ffngr_5fscroll_5fmask',['CY_CAPSENSE_GESTURE_TWO_FNGR_SCROLL_MASK',['../group__group__capsense__macros__gesture.html#gae8a61309c25e5255fa4a46436384184d',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5ftwo_5ffngr_5fsingle_5fclick_5fmask',['CY_CAPSENSE_GESTURE_TWO_FNGR_SINGLE_CLICK_MASK',['../group__group__capsense__macros__gesture.html#gab1a077e5bf17f502792846cb52e2bcaf',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgesture_5ftwo_5ffngr_5fzoom_5fmask',['CY_CAPSENSE_GESTURE_TWO_FNGR_ZOOM_MASK',['../group__group__capsense__macros__gesture.html#gaa1d831e7dccc101ca4fc6956356cfc09',1,'cy_capsense_gesture_lib.h']]], - ['cy_5fcapsense_5fgetcrc',['Cy_CapSense_GetCRC',['../group__group__capsense__low__level.html#ga2de812825cd421ee05fec733206e157a',1,'Cy_CapSense_GetCRC(const uint8_t *ptrData, uint32_t len): cy_capsense_structure.c'],['../group__group__capsense__low__level.html#ga2de812825cd421ee05fec733206e157a',1,'Cy_CapSense_GetCRC(const uint8_t *ptrData, uint32_t len): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fgetparam',['Cy_CapSense_GetParam',['../group__group__capsense__low__level.html#gaa89c8ed15cddd778c2232c85300eb02d',1,'Cy_CapSense_GetParam(uint32_t paramId, uint32_t *value, const void *ptrTuner, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__low__level.html#gaa89c8ed15cddd778c2232c85300eb02d',1,'Cy_CapSense_GetParam(uint32_t paramId, uint32_t *value, const void *ptrTuner, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fgettouchinfo',['Cy_CapSense_GetTouchInfo',['../group__group__capsense__high__level.html#ga6192ba34167662ac9573c0a4cd71682f',1,'Cy_CapSense_GetTouchInfo(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga6192ba34167662ac9573c0a4cd71682f',1,'Cy_CapSense_GetTouchInfo(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fground',['CY_CAPSENSE_GROUND',['../group__group__capsense__macros__pin.html#gad966154287c77eb6cc738db7f4d1da08',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fhighz',['CY_CAPSENSE_HIGHZ',['../group__group__capsense__macros__pin.html#gaead707fb888468852d35412af119f66e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fhw_5fbusy_5fe',['CY_CAPSENSE_HW_BUSY_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a862eaeca0dacb3f3eb6d3209ed7f9fe1',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fhw_5fconfig_5fbist_5ffunctionality',['CY_CAPSENSE_HW_CONFIG_BIST_FUNCTIONALITY',['../group__group__capsense__macros__miscellaneous.html#ga97c2fc478587a5b0d5856e03b491c06e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fhw_5fconfig_5fcaptured_5fdefault',['CY_CAPSENSE_HW_CONFIG_CAPTURED_DEFAULT',['../group__group__capsense__macros__miscellaneous.html#ga8fbb89b3542508dbd26b4913b759d6a1',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fhw_5fconfig_5fregular_5fscanning',['CY_CAPSENSE_HW_CONFIG_REGULAR_SCANNING',['../group__group__capsense__macros__miscellaneous.html#ga6c3e686fab6dd48c1747cac52decc43b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fhw_5fconfig_5fundefined',['CY_CAPSENSE_HW_CONFIG_UNDEFINED',['../group__group__capsense__macros__miscellaneous.html#ga89da6f538e6a6586c08ab4e931e9175a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fhw_5flocked_5fe',['CY_CAPSENSE_HW_LOCKED_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11abb6a9f4b907a0729c96d87544d6e1c09',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fid',['CY_CAPSENSE_ID',['../group__group__capsense__macros__general.html#ga9d6e1a11f2bd6a660ccf4ff767e18186',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fidac_5fgain_5fnumber',['CY_CAPSENSE_IDAC_GAIN_NUMBER',['../group__group__capsense__macros__miscellaneous.html#gabf3b4c535607496679a9ba710bcf91ff',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fidac_5fsinking',['CY_CAPSENSE_IDAC_SINKING',['../group__group__capsense__macros__settings.html#ga2e871273079c7fc156213a7cb2218e93',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fidac_5fsourcing',['CY_CAPSENSE_IDAC_SOURCING',['../group__group__capsense__macros__settings.html#gad4b51f2449480c37c0e1e02234dd1ba8',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fiir_5ffilter_5fperformance',['CY_CAPSENSE_IIR_FILTER_PERFORMANCE',['../group__group__capsense__macros__settings.html#ga0574f749bb3bdcd3759cbd0bd634a25a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fiir_5ffilter_5fstandard',['CY_CAPSENSE_IIR_FILTER_STANDARD',['../group__group__capsense__macros__settings.html#gaafbef04e2b320d8ccf1567015932bd95',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fincrementgesturetimestamp',['Cy_CapSense_IncrementGestureTimestamp',['../group__group__capsense__high__level.html#ga904eb69e694e4daf45bc778281b39d9e',1,'Cy_CapSense_IncrementGestureTimestamp(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga904eb69e694e4daf45bc778281b39d9e',1,'Cy_CapSense_IncrementGestureTimestamp(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5finit',['Cy_CapSense_Init',['../group__group__capsense__high__level.html#ga19b3aa9e14a04b76188f917c0dc004f5',1,'Cy_CapSense_Init(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga19b3aa9e14a04b76188f917c0dc004f5',1,'Cy_CapSense_Init(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5finit_5fdone',['CY_CAPSENSE_INIT_DONE',['../group__group__capsense__macros__general.html#ga7d9ae808ba66f8851c5574736f243a8b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5finit_5fneeded',['CY_CAPSENSE_INIT_NEEDED',['../group__group__capsense__macros__general.html#gad92e80ca427290d1d6e0e9b97c8537c5',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5finit_5fsw_5fres_5fhigh',['CY_CAPSENSE_INIT_SW_RES_HIGH',['../group__group__capsense__macros__settings.html#ga06a28983f42b3fe5a3146bb7e1cd9236',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5finit_5fsw_5fres_5flow',['CY_CAPSENSE_INIT_SW_RES_LOW',['../group__group__capsense__macros__settings.html#gaac47b3d6d12e388d97a99d5799bb2b18',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5finit_5fsw_5fres_5fmedium',['CY_CAPSENSE_INIT_SW_RES_MEDIUM',['../group__group__capsense__macros__settings.html#gab9de749731fcee7333dbdd90586fa31e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5finitializeallbaselines',['Cy_CapSense_InitializeAllBaselines',['../group__group__capsense__low__level.html#ga55216d9c145b2ab42d7cec23960fb31e',1,'Cy_CapSense_InitializeAllBaselines(cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga55216d9c145b2ab42d7cec23960fb31e',1,'Cy_CapSense_InitializeAllBaselines(cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializeallfilters',['Cy_CapSense_InitializeAllFilters',['../group__group__capsense__low__level.html#ga1fcb002d0216bb96ab818276954606e7',1,'Cy_CapSense_InitializeAllFilters(const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga1fcb002d0216bb96ab818276954606e7',1,'Cy_CapSense_InitializeAllFilters(const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializeallstatuses',['Cy_CapSense_InitializeAllStatuses',['../group__group__capsense__low__level.html#ga91d3ccdc21ed235f4e3b61a0a583c7a1',1,'Cy_CapSense_InitializeAllStatuses(const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga91d3ccdc21ed235f4e3b61a0a583c7a1',1,'Cy_CapSense_InitializeAllStatuses(const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5finitializesensorbaseline',['Cy_CapSense_InitializeSensorBaseline',['../group__group__capsense__low__level.html#ga695fc72a3809224e52c8a0212835d4f7',1,'Cy_CapSense_InitializeSensorBaseline(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga695fc72a3809224e52c8a0212835d4f7',1,'Cy_CapSense_InitializeSensorBaseline(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializewidgetbaseline',['Cy_CapSense_InitializeWidgetBaseline',['../group__group__capsense__low__level.html#gae217c3d40eff007bf28add89814f17d2',1,'Cy_CapSense_InitializeWidgetBaseline(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#gae217c3d40eff007bf28add89814f17d2',1,'Cy_CapSense_InitializeWidgetBaseline(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializewidgetfilter',['Cy_CapSense_InitializeWidgetFilter',['../group__group__capsense__low__level.html#ga101174469c4b6a2df8d44bddb0e33fcf',1,'Cy_CapSense_InitializeWidgetFilter(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga101174469c4b6a2df8d44bddb0e33fcf',1,'Cy_CapSense_InitializeWidgetFilter(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializewidgetgestures',['Cy_CapSense_InitializeWidgetGestures',['../group__group__capsense__low__level.html#ga1a42bc8b8c045d4c4fa3ea9b4411c247',1,'Cy_CapSense_InitializeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga1a42bc8b8c045d4c4fa3ea9b4411c247',1,'Cy_CapSense_InitializeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5finitializewidgetstatus',['Cy_CapSense_InitializeWidgetStatus',['../group__group__capsense__low__level.html#ga0cd8087cced318d7a2ddd0aabe5d0b65',1,'Cy_CapSense_InitializeWidgetStatus(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga0cd8087cced318d7a2ddd0aabe5d0b65',1,'Cy_CapSense_InitializeWidgetStatus(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5finterrupthandler',['Cy_CapSense_InterruptHandler',['../group__group__capsense__high__level.html#gaeab57caca852dae59618fbfbcd431c27',1,'Cy_CapSense_InterruptHandler(void *base, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#gaeab57caca852dae59618fbfbcd431c27',1,'Cy_CapSense_InterruptHandler(void *base, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5firef_5fpass',['CY_CAPSENSE_IREF_PASS',['../group__group__capsense__macros__settings.html#gafcf80ee9c55e11ea09864f8a32de99b6',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5firef_5fsrss',['CY_CAPSENSE_IREF_SRSS',['../group__group__capsense__macros__settings.html#gaf8db866012c77ad000f75d3174938c2c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fisanywidgetactive',['Cy_CapSense_IsAnyWidgetActive',['../group__group__capsense__high__level.html#ga036e1061e289e038c3e13df5c8751aed',1,'Cy_CapSense_IsAnyWidgetActive(const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga036e1061e289e038c3e13df5c8751aed',1,'Cy_CapSense_IsAnyWidgetActive(const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fisbusy',['Cy_CapSense_IsBusy',['../group__group__capsense__high__level.html#ga7f8739755bba6b51c274f45b569b9ba0',1,'Cy_CapSense_IsBusy(const cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#ga7f8739755bba6b51c274f45b569b9ba0',1,'Cy_CapSense_IsBusy(const cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fisproximitysensoractive',['Cy_CapSense_IsProximitySensorActive',['../group__group__capsense__high__level.html#ga96509342c580a9c5f6e17bdf8c74e53a',1,'Cy_CapSense_IsProximitySensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga96509342c580a9c5f6e17bdf8c74e53a',1,'Cy_CapSense_IsProximitySensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fissensoractive',['Cy_CapSense_IsSensorActive',['../group__group__capsense__high__level.html#gaeaa2dc78e56e2fc1ec0cc2b265851d69',1,'Cy_CapSense_IsSensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#gaeaa2dc78e56e2fc1ec0cc2b265851d69',1,'Cy_CapSense_IsSensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fiswidgetactive',['Cy_CapSense_IsWidgetActive',['../group__group__capsense__high__level.html#ga4afba79341aef27afc40054d376d7193',1,'Cy_CapSense_IsWidgetActive(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga4afba79341aef27afc40054d376d7193',1,'Cy_CapSense_IsWidgetActive(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5flfsr_5fbits_5fauto',['CY_CAPSENSE_LFSR_BITS_AUTO',['../group__group__capsense__macros__settings.html#gae2be0d86bc8b5f22dcfba27c7b962382',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5flfsr_5fbits_5fauto_5fmask',['CY_CAPSENSE_LFSR_BITS_AUTO_MASK',['../group__group__capsense__macros__settings.html#gaa56931b822d6c8d45f035666312b37c2',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5flfsr_5fbits_5frange_5f0',['CY_CAPSENSE_LFSR_BITS_RANGE_0',['../group__group__capsense__macros__settings.html#gabf74f3e1c4d068696a185543862ce2e2',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5flfsr_5fbits_5frange_5f1',['CY_CAPSENSE_LFSR_BITS_RANGE_1',['../group__group__capsense__macros__settings.html#gae2ec4c944055d3cd8f879d73c0ea2741',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5flfsr_5fbits_5frange_5f2',['CY_CAPSENSE_LFSR_BITS_RANGE_2',['../group__group__capsense__macros__settings.html#ga2fcfc649282a924d6290f6e1e163906e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5flfsr_5fbits_5frange_5f3',['CY_CAPSENSE_LFSR_BITS_RANGE_3',['../group__group__capsense__macros__settings.html#ga2490abfae288ba9a8583f3e52ab446b5',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5flfsr_5fbits_5frange_5fmask',['CY_CAPSENSE_LFSR_BITS_RANGE_MASK',['../group__group__capsense__macros__settings.html#gac0e017b84a7ffa622284b52227b552dd',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5flow_5fvoltage_5flimit',['CY_CAPSENSE_LOW_VOLTAGE_LIMIT',['../group__group__capsense__macros__settings.html#gaeaa0712bb3ceba12e47d1d216f600e01',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmax_5fcentroids',['CY_CAPSENSE_MAX_CENTROIDS',['../group__group__capsense__macros__touch.html#ga4841683021756c1260950771ed54c841',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmax_5fsupported_5ffreq_5fnum',['CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM',['../group__group__capsense__macros__settings.html#ga2e3c548e409ca07aa1376632bbcd6670',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmeasurecapacitancecap',['Cy_CapSense_MeasureCapacitanceCap',['../group__group__capsense__low__level.html#ga80ad1c421ea794bd493bb37e76c48a2b',1,'Cy_CapSense_MeasureCapacitanceCap(cy_en_capsense_bist_external_cap_id_t integrationCapId, uint32_t *ptrValue, uint32_t maxCapacitance, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga80ad1c421ea794bd493bb37e76c48a2b',1,'Cy_CapSense_MeasureCapacitanceCap(cy_en_capsense_bist_external_cap_id_t integrationCapId, uint32_t *ptrValue, uint32_t maxCapacitance, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fmeasurecapacitancesensor',['Cy_CapSense_MeasureCapacitanceSensor',['../group__group__capsense__low__level.html#ga3bf9894c313d4ffce1be841141d6b8e5',1,'Cy_CapSense_MeasureCapacitanceSensor(uint32_t widgetId, uint32_t sensorId, uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c'],['../group__group__capsense__low__level.html#ga3bf9894c313d4ffce1be841141d6b8e5',1,'Cy_CapSense_MeasureCapacitanceSensor(uint32_t widgetId, uint32_t sensorId, uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c']]], - ['cy_5fcapsense_5fmeasurecapacitancesensorelectrode',['Cy_CapSense_MeasureCapacitanceSensorElectrode',['../group__group__capsense__low__level.html#ga23f23f4e684b25788f999851f20aa58c',1,'Cy_CapSense_MeasureCapacitanceSensorElectrode(uint32_t widgetId, uint32_t eltdId, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c'],['../group__group__capsense__low__level.html#ga23f23f4e684b25788f999851f20aa58c',1,'Cy_CapSense_MeasureCapacitanceSensorElectrode(uint32_t widgetId, uint32_t eltdId, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c']]], - ['cy_5fcapsense_5fmeasurecapacitanceshield',['Cy_CapSense_MeasureCapacitanceShield',['../group__group__capsense__low__level.html#gacc9c800180cd40a8ca3e53321d6a249b',1,'Cy_CapSense_MeasureCapacitanceShield(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c'],['../group__group__capsense__low__level.html#gacc9c800180cd40a8ca3e53321d6a249b',1,'Cy_CapSense_MeasureCapacitanceShield(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c']]], - ['cy_5fcapsense_5fmeasurecapacitanceshieldelectrode',['Cy_CapSense_MeasureCapacitanceShieldElectrode',['../group__group__capsense__low__level.html#gaff014dbf80fc7824a7e6e3e377d2942f',1,'Cy_CapSense_MeasureCapacitanceShieldElectrode(uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c'],['../group__group__capsense__low__level.html#gaff014dbf80fc7824a7e6e3e377d2942f',1,'Cy_CapSense_MeasureCapacitanceShieldElectrode(uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c']]], - ['cy_5fcapsense_5fmeasurecapacitanceslotsensors',['Cy_CapSense_MeasureCapacitanceSlotSensors',['../group__group__capsense__low__level.html#gadb467c284dc3fea4c7347a25c5ff57df',1,'Cy_CapSense_MeasureCapacitanceSlotSensors(uint32_t slotId, uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c'],['../group__group__capsense__low__level.html#gadb467c284dc3fea4c7347a25c5ff57df',1,'Cy_CapSense_MeasureCapacitanceSlotSensors(uint32_t slotId, uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c']]], - ['cy_5fcapsense_5fmeasurevdda',['Cy_CapSense_MeasureVdda',['../group__group__capsense__low__level.html#ga0214428f5737ef46a2f755620c4e7316',1,'Cy_CapSense_MeasureVdda(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga0214428f5737ef46a2f755620c4e7316',1,'Cy_CapSense_MeasureVdda(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fmfs_5fch0_5findex',['CY_CAPSENSE_MFS_CH0_INDEX',['../group__group__capsense__macros__settings.html#ga68fa8ac4aa0aee147c38ca8d6bf32830',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmfs_5fch1_5findex',['CY_CAPSENSE_MFS_CH1_INDEX',['../group__group__capsense__macros__settings.html#ga35e5670bf245edc9997d33b0243519e2',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmfs_5fch2_5findex',['CY_CAPSENSE_MFS_CH2_INDEX',['../group__group__capsense__macros__settings.html#ga28f28170b727262af4926fbbef35f6e9',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmptx_5fmax_5forder',['CY_CAPSENSE_MPTX_MAX_ORDER',['../group__group__capsense__macros__process.html#ga0ce8f40602fa2d1adac3e8aadda2afe0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmptx_5fmin_5forder',['CY_CAPSENSE_MPTX_MIN_ORDER',['../group__group__capsense__macros__process.html#ga6dfc332e06a74a6932bedaba71700071',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmsc_5fraw_5foverflow_5fe',['CY_CAPSENSE_MSC_RAW_OVERFLOW_E',['../group__group__capsense__enums.html#gga2f401fe83daac81512b02b33fc967f57ad65e8f38f552e1a10fc39b779fcbe6a2',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fmsc_5fraw_5fsaturate_5fe',['CY_CAPSENSE_MSC_RAW_SATURATE_E',['../group__group__capsense__enums.html#gga2f401fe83daac81512b02b33fc967f57a7f25b1c06cfbe093b6d3c3355a31a19c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fmw_5fstate_5fbist_5fmask',['CY_CAPSENSE_MW_STATE_BIST_MASK',['../group__group__capsense__macros__mw__state.html#ga77644fbd95cb2c428d72941891a90e9f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fstate_5fcalibration_5fmask',['CY_CAPSENSE_MW_STATE_CALIBRATION_MASK',['../group__group__capsense__macros__mw__state.html#ga812bfd422afd4cd3112299e51d6e3c5e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fstate_5fcalibration_5fsingle_5fmask',['CY_CAPSENSE_MW_STATE_CALIBRATION_SINGLE_MASK',['../group__group__capsense__macros__mw__state.html#ga6300d3c18f5ba220c0fb30d7ebdd32ae',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fstate_5finitialization_5fmask',['CY_CAPSENSE_MW_STATE_INITIALIZATION_MASK',['../group__group__capsense__macros__mw__state.html#gafdfbe771bb88d2d91cc0b8ecefb2ad03',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fstate_5fscan_5fslot_5fmask',['CY_CAPSENSE_MW_STATE_SCAN_SLOT_MASK',['../group__group__capsense__macros__mw__state.html#gab68b2414d00242e827e8f068db3a766a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fstate_5fscan_5fslot_5fpos',['CY_CAPSENSE_MW_STATE_SCAN_SLOT_POS',['../group__group__capsense__macros__mw__state.html#gade52f7114b1a748b17c4f404ea522b44',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fstate_5fsmartsense_5fmask',['CY_CAPSENSE_MW_STATE_SMARTSENSE_MASK',['../group__group__capsense__macros__mw__state.html#gafe79cdb3ceadd371c655ea6be028a700',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fstate_5ft',['cy_capsense_mw_state_t',['../group__group__capsense__structures.html#gaae9a4f12c83f84c5a02079bb0eeeb3c9',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fmw_5fversion',['CY_CAPSENSE_MW_VERSION',['../group__group__capsense__macros__general.html#ga59b36b476019e5ba3efbf23db693afc0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fversion_5fmajor',['CY_CAPSENSE_MW_VERSION_MAJOR',['../group__group__capsense__macros__general.html#ga104c621005040ae8af24f65224291585',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmw_5fversion_5fminor',['CY_CAPSENSE_MW_VERSION_MINOR',['../group__group__capsense__macros__general.html#gad6ec980865b471c2f2dfb2cdc35d4c2b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fmwstate',['Cy_CapSense_MwState',['../group__group__capsense__high__level.html#ga1530a032b2c5239f7efde29fa23d1793',1,'Cy_CapSense_MwState(const cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__high__level.html#ga1530a032b2c5239f7efde29fa23d1793',1,'Cy_CapSense_MwState(const cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fnegative_5ftx_5fpin',['CY_CAPSENSE_NEGATIVE_TX_PIN',['../group__group__capsense__macros__pin.html#ga3a0f2292f0e440a54cd9eb0fe3bb5c06',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fnot_5fbusy',['CY_CAPSENSE_NOT_BUSY',['../group__group__capsense__macros__general.html#ga1bd45eed2be393b7f53c20f1bae2814e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fpercentage_5f100',['CY_CAPSENSE_PERCENTAGE_100',['../group__group__capsense__macros__miscellaneous.html#ga413e16caaf9cf67a365931831f50dc81',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5faiir_5fmask',['CY_CAPSENSE_POSITION_AIIR_MASK',['../group__group__capsense__macros__settings.html#gae54e6c4d9b4bca9ce91633c48665e40a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5favg_5fmask',['CY_CAPSENSE_POSITION_AVG_MASK',['../group__group__capsense__macros__settings.html#gaf46055ebd3cc5feebeb135c6fff2359a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5ffilters_5fmask',['CY_CAPSENSE_POSITION_FILTERS_MASK',['../group__group__capsense__macros__settings.html#gaee14d46514f114db4fe4bf404b237b66',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5ffilters_5fsize_5fmask',['CY_CAPSENSE_POSITION_FILTERS_SIZE_MASK',['../group__group__capsense__macros__settings.html#gadbb42060f9944831159e076a333a1fb3',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5ffilters_5fsize_5foffset',['CY_CAPSENSE_POSITION_FILTERS_SIZE_OFFSET',['../group__group__capsense__macros__settings.html#ga7e37264e471d9d7872a7f1f0e30799c0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fiir_5fcoeff_5fmask',['CY_CAPSENSE_POSITION_IIR_COEFF_MASK',['../group__group__capsense__macros__settings.html#ga7d951b1fc406e58a1fbf1e235ebf1260',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fiir_5fcoeff_5foffset',['CY_CAPSENSE_POSITION_IIR_COEFF_OFFSET',['../group__group__capsense__macros__settings.html#gaffc57c972683ab82bdff25b2d99880d6',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fiir_5fmask',['CY_CAPSENSE_POSITION_IIR_MASK',['../group__group__capsense__macros__settings.html#ga72f475a33ff67f2a5b9a60fbafbc92f3',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fjit_5fmask',['CY_CAPSENSE_POSITION_JIT_MASK',['../group__group__capsense__macros__settings.html#ga6a3806a58df624a29a754e923d2e7710',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fmed_5fmask',['CY_CAPSENSE_POSITION_MED_MASK',['../group__group__capsense__macros__settings.html#gaacf8aace37a046c707ea2d97c8de5f49',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fmultiple',['CY_CAPSENSE_POSITION_MULTIPLE',['../group__group__capsense__macros__touch.html#gaeda92492a42b009327153c1751a030c3',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fnone',['CY_CAPSENSE_POSITION_NONE',['../group__group__capsense__macros__touch.html#ga72bcd596f6407f2c35cfe8d92a2a1f6d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fone',['CY_CAPSENSE_POSITION_ONE',['../group__group__capsense__macros__touch.html#ga00e138168b824ee9c4ecf2fa10e648a0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5fthree',['CY_CAPSENSE_POSITION_THREE',['../group__group__capsense__macros__touch.html#ga84fe184256d5a95975dbdd25b7388f63',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fposition_5ftwo',['CY_CAPSENSE_POSITION_TWO',['../group__group__capsense__macros__touch.html#gaa448ccb1551eb0f38f12b1554c5287c4',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fpreprocesssensor',['Cy_CapSense_PreProcessSensor',['../group__group__capsense__low__level.html#gaf58d5ee3d30799c52819dccecad6730b',1,'Cy_CapSense_PreProcessSensor(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#gaf58d5ee3d30799c52819dccecad6730b',1,'Cy_CapSense_PreProcessSensor(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5fpreprocesswidget',['Cy_CapSense_PreProcessWidget',['../group__group__capsense__low__level.html#gad0772250c35cb3f630a8522b0b156692',1,'Cy_CapSense_PreProcessWidget(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#gad0772250c35cb3f630a8522b0b156692',1,'Cy_CapSense_PreProcessWidget(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5fprocess_5fall',['CY_CAPSENSE_PROCESS_ALL',['../group__group__capsense__macros__process.html#gaa84b286a4e106b5eeed0141339f7ab6b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocess_5fbaseline',['CY_CAPSENSE_PROCESS_BASELINE',['../group__group__capsense__macros__process.html#ga459185fc700d0afc4556d995730f6052',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocess_5fcalc_5fnoise',['CY_CAPSENSE_PROCESS_CALC_NOISE',['../group__group__capsense__macros__process.html#gaaab6d36224e09594d6eb784584e56a63',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocess_5fdiffcounts',['CY_CAPSENSE_PROCESS_DIFFCOUNTS',['../group__group__capsense__macros__process.html#ga69cbf309ed5306c0845fbef6d31ba3e8',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocess_5ffilter',['CY_CAPSENSE_PROCESS_FILTER',['../group__group__capsense__macros__process.html#gaa3b890d5a6646b1c990093614f904b7c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocess_5fmfs_5ffilter',['CY_CAPSENSE_PROCESS_MFS_FILTER',['../group__group__capsense__macros__process.html#ga44f2cd15a1ad1da162249da40ac12570',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocess_5fstatus',['CY_CAPSENSE_PROCESS_STATUS',['../group__group__capsense__macros__process.html#ga1575721ebbdd600b13f843e068dbf282',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocess_5fthresholds',['CY_CAPSENSE_PROCESS_THRESHOLDS',['../group__group__capsense__macros__process.html#gab3ad76b311ce75be0bb1a66cdadc3b27',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fprocessallwidgets',['Cy_CapSense_ProcessAllWidgets',['../group__group__capsense__high__level.html#ga2a185db228d5cae975fbc92bd3bc6367',1,'Cy_CapSense_ProcessAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga2a185db228d5cae975fbc92bd3bc6367',1,'Cy_CapSense_ProcessAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesssensorext',['Cy_CapSense_ProcessSensorExt',['../group__group__capsense__low__level.html#ga05d3f6e7d7fbef845ab4eb575e653dec',1,'Cy_CapSense_ProcessSensorExt(uint32_t widgetId, uint32_t sensorId, uint32_t mode, const cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__low__level.html#ga05d3f6e7d7fbef845ab4eb575e653dec',1,'Cy_CapSense_ProcessSensorExt(uint32_t widgetId, uint32_t sensorId, uint32_t mode, const cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesswidget',['Cy_CapSense_ProcessWidget',['../group__group__capsense__high__level.html#ga52874ea98333723ec92aef1bb4791a7d',1,'Cy_CapSense_ProcessWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga52874ea98333723ec92aef1bb4791a7d',1,'Cy_CapSense_ProcessWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesswidgetext',['Cy_CapSense_ProcessWidgetExt',['../group__group__capsense__low__level.html#gafbfe743a98bd2c24a623a2c734c03f0e',1,'Cy_CapSense_ProcessWidgetExt(uint32_t widgetId, uint32_t mode, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__low__level.html#gafbfe743a98bd2c24a623a2c734c03f0e',1,'Cy_CapSense_ProcessWidgetExt(uint32_t widgetId, uint32_t mode, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesswidgetmptxdeconvolution',['Cy_CapSense_ProcessWidgetMptxDeconvolution',['../group__group__capsense__low__level.html#ga200f346a4973b003640adad8dfca0748',1,'Cy_CapSense_ProcessWidgetMptxDeconvolution(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga200f346a4973b003640adad8dfca0748',1,'Cy_CapSense_ProcessWidgetMptxDeconvolution(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5frc_5ffilter_5fall_5fen_5fmask',['CY_CAPSENSE_RC_FILTER_ALL_EN_MASK',['../group__group__capsense__macros__settings.html#gaebc0fb6bfe7bc94a2c49da92907130ca',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5faverage_5fen_5fmask',['CY_CAPSENSE_RC_FILTER_AVERAGE_EN_MASK',['../group__group__capsense__macros__settings.html#ga5c0abe400102f37a1be197271feb2e0f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5faverage_5fen_5foffset',['CY_CAPSENSE_RC_FILTER_AVERAGE_EN_OFFSET',['../group__group__capsense__macros__settings.html#gaaf71706bd4bd17bb93af43a78753608c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5faverage_5fmode_5fmask',['CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_MASK',['../group__group__capsense__macros__settings.html#ga5b7bc9d392343d69ad7a06d11d84530a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5faverage_5fmode_5foffset',['CY_CAPSENSE_RC_FILTER_AVERAGE_MODE_OFFSET',['../group__group__capsense__macros__settings.html#ga8e7641569c46bb1434a6579fe32d4050',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fiir_5fen_5fmask',['CY_CAPSENSE_RC_FILTER_IIR_EN_MASK',['../group__group__capsense__macros__settings.html#ga2631432965424bda0453e73812136f32',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fiir_5fen_5foffset',['CY_CAPSENSE_RC_FILTER_IIR_EN_OFFSET',['../group__group__capsense__macros__settings.html#gae61870b2d6fc717d367b85d01bac84ac',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fiir_5fmode_5fmask',['CY_CAPSENSE_RC_FILTER_IIR_MODE_MASK',['../group__group__capsense__macros__settings.html#ga2ac1f3d201f821bb6ba685cf79b088d7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fiir_5fmode_5foffset',['CY_CAPSENSE_RC_FILTER_IIR_MODE_OFFSET',['../group__group__capsense__macros__settings.html#ga854ce708831c871a8164c438285eaefb',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fmedian_5fen_5fmask',['CY_CAPSENSE_RC_FILTER_MEDIAN_EN_MASK',['../group__group__capsense__macros__settings.html#ga185086b797ceeefb572cc080f9f5b4c7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fmedian_5fen_5foffset',['CY_CAPSENSE_RC_FILTER_MEDIAN_EN_OFFSET',['../group__group__capsense__macros__settings.html#gad350cf05ada3dec1cf92390d6441a88e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fmedian_5fmode_5fmask',['CY_CAPSENSE_RC_FILTER_MEDIAN_MODE_MASK',['../group__group__capsense__macros__settings.html#ga87105898371665476f90611647b3de08',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fmedian_5fmode_5foffset',['CY_CAPSENSE_RC_FILTER_MEDIAN_MODE_OFFSET',['../group__group__capsense__macros__settings.html#ga1d4da07726bc7d1580f67f7256f341b2',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fsns_5fhistory_5fsize_5fmask',['CY_CAPSENSE_RC_FILTER_SNS_HISTORY_SIZE_MASK',['../group__group__capsense__macros__settings.html#ga8fd2bbafe7efdc8027d506adb4972ad0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5frc_5ffilter_5fsns_5fhistory_5fsize_5foffset',['CY_CAPSENSE_RC_FILTER_SNS_HISTORY_SIZE_OFFSET',['../group__group__capsense__macros__settings.html#gaafa561fa291e8239e60ea07331c030b7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5freg_5fmode_5fcsd',['CY_CAPSENSE_REG_MODE_CSD',['../group__group__capsense__macros__settings.html#ga6b9ad8a287a28d842f22594a0cd8b1b0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5freg_5fmode_5fcsd_5fdithering',['CY_CAPSENSE_REG_MODE_CSD_DITHERING',['../group__group__capsense__macros__settings.html#ga08fda083a52149ed2328efd490990e51',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5freg_5fmode_5fcsx',['CY_CAPSENSE_REG_MODE_CSX',['../group__group__capsense__macros__settings.html#ga8c6620be646db4182d6c3a7c9f56875d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5freg_5fmode_5fcsx_5fdithering',['CY_CAPSENSE_REG_MODE_CSX_DITHERING',['../group__group__capsense__macros__settings.html#ga40ea306903f41e93390f70d3ebc2f733',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5freg_5fmode_5fdithering',['CY_CAPSENSE_REG_MODE_DITHERING',['../group__group__capsense__macros__settings.html#gab6f9dc016475739d9cefd25e43ad0d59',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5freg_5fmode_5fnumber',['CY_CAPSENSE_REG_MODE_NUMBER',['../group__group__capsense__macros__settings.html#ga745c3a1ff8ee9fbe299f0383bd15beb9',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5freg_5fmode_5fundefined',['CY_CAPSENSE_REG_MODE_UNDEFINED',['../group__group__capsense__macros__settings.html#ga29629dbc0b292df0e5a93764fa6ace23',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fregistercallback',['Cy_CapSense_RegisterCallback',['../group__group__capsense__high__level.html#ga289c4fd495135399a9ad9897920836a7',1,'Cy_CapSense_RegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_capsense_callback_t callbackFunction, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga289c4fd495135399a9ad9897920836a7',1,'Cy_CapSense_RegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_capsense_callback_t callbackFunction, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5frestore',['Cy_CapSense_Restore',['../group__group__capsense__high__level.html#gaf87102783ec511c2e5f2024680112d16',1,'Cy_CapSense_Restore(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gaf87102783ec511c2e5f2024680112d16',1,'Cy_CapSense_Restore(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5frunmfsmedian',['Cy_CapSense_RunMfsMedian',['../group__group__capsense__low__level.html#ga0226119d718185acba8bfb8098682ec7',1,'Cy_CapSense_RunMfsMedian(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga0226119d718185acba8bfb8098682ec7',1,'Cy_CapSense_RunMfsMedian(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5frunselftest',['Cy_CapSense_RunSelfTest',['../group__group__capsense__high__level.html#gab1f1514db0566e14ba20fd8647ecb3ad',1,'Cy_CapSense_RunSelfTest(uint32_t testEnMask, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__high__level.html#gab1f1514db0566e14ba20fd8647ecb3ad',1,'Cy_CapSense_RunSelfTest(uint32_t testEnMask, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fruntuner',['Cy_CapSense_RunTuner',['../group__group__capsense__high__level.html#ga0c613df550388c119fdab4e50341a6b4',1,'Cy_CapSense_RunTuner(cy_stc_capsense_context_t *context): cy_capsense_tuner.c'],['../group__group__capsense__high__level.html#ga0c613df550388c119fdab4e50341a6b4',1,'Cy_CapSense_RunTuner(cy_stc_capsense_context_t *context): cy_capsense_tuner.c']]], - ['cy_5fcapsense_5frx_5fpin',['CY_CAPSENSE_RX_PIN',['../group__group__capsense__macros__pin.html#ga88e0c991fdb3149ab458780f2ca640e8',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsave',['Cy_CapSense_Save',['../group__group__capsense__high__level.html#ga899ef1058ead082503771da68e584b82',1,'Cy_CapSense_Save(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga899ef1058ead082503771da68e584b82',1,'Cy_CapSense_Save(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fscan',['Cy_CapSense_Scan',['../group__group__capsense__high__level.html#ga6473761292c2696bdea571b8bb10b308',1,'Cy_CapSense_Scan(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__high__level.html#ga6473761292c2696bdea571b8bb10b308',1,'Cy_CapSense_Scan(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fscan_5fmode_5fdma_5fdriven',['CY_CAPSENSE_SCAN_MODE_DMA_DRIVEN',['../group__group__capsense__macros__settings.html#gaff0750ee44bdc26126f2ceea52e00e7f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fmode_5fint_5fdriven',['CY_CAPSENSE_SCAN_MODE_INT_DRIVEN',['../group__group__capsense__macros__settings.html#gab20389338f16662a302d202f3ceb69d4',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fmultiple_5fslot',['CY_CAPSENSE_SCAN_MULTIPLE_SLOT',['../group__group__capsense__macros__miscellaneous.html#ga70d9d6d9da53d379d54ab139c008c66c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fscope_5fall_5fsns_5fmask',['CY_CAPSENSE_SCAN_SCOPE_ALL_SNS_MASK',['../group__group__capsense__macros__miscellaneous.html#gacd65048b34a1113483afa364bc29ba8d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fscope_5fall_5fwd_5fmask',['CY_CAPSENSE_SCAN_SCOPE_ALL_WD_MASK',['../group__group__capsense__macros__miscellaneous.html#ga30f24465785ec18a44f133af2e6bc693',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fscope_5fsngl_5fsns',['CY_CAPSENSE_SCAN_SCOPE_SNGL_SNS',['../group__group__capsense__macros__miscellaneous.html#ga831218f9e477cbc86ec2dd5c93cad28a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fsngl_5fslot',['CY_CAPSENSE_SCAN_SNGL_SLOT',['../group__group__capsense__macros__miscellaneous.html#ga5e2a060594b75e2194c2e8aa6d2cc10e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fsw_5fres_5fhigh',['CY_CAPSENSE_SCAN_SW_RES_HIGH',['../group__group__capsense__macros__settings.html#ga7065d35473184eb30c3e12606b4fe07c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fsw_5fres_5flow',['CY_CAPSENSE_SCAN_SW_RES_LOW',['../group__group__capsense__macros__settings.html#gab298825ea19c5944b34cf4843e25f5bd',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscan_5fsw_5fres_5fmedium',['CY_CAPSENSE_SCAN_SW_RES_MEDIUM',['../group__group__capsense__macros__settings.html#gaf3e12cf8efd216867fa1c284634a3053',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fscanabort',['Cy_CapSense_ScanAbort',['../group__group__capsense__low__level.html#ga264c6bafda78c56a0d620a7c88363269',1,'Cy_CapSense_ScanAbort(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga264c6bafda78c56a0d620a7c88363269',1,'Cy_CapSense_ScanAbort(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fscanallslots',['Cy_CapSense_ScanAllSlots',['../group__group__capsense__high__level.html#ga045f3f46ff4e43c4f4dbe087c0156f56',1,'Cy_CapSense_ScanAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__high__level.html#ga045f3f46ff4e43c4f4dbe087c0156f56',1,'Cy_CapSense_ScanAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fscanallwidgets',['Cy_CapSense_ScanAllWidgets',['../group__group__capsense__high__level.html#ga50e6ef42f2834083715abe86d8a85b48',1,'Cy_CapSense_ScanAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#ga50e6ef42f2834083715abe86d8a85b48',1,'Cy_CapSense_ScanAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fscanext',['Cy_CapSense_ScanExt',['../group__group__capsense__low__level.html#ga31834a3fce1f5b57c72107b419626bab',1,'Cy_CapSense_ScanExt(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__low__level.html#ga31834a3fce1f5b57c72107b419626bab',1,'Cy_CapSense_ScanExt(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fscansensor',['Cy_CapSense_ScanSensor',['../group__group__capsense__low__level.html#gae3f80b48c2596c149ca0b392a9a3da62',1,'Cy_CapSense_ScanSensor(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#gae3f80b48c2596c149ca0b392a9a3da62',1,'Cy_CapSense_ScanSensor(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fscanslots',['Cy_CapSense_ScanSlots',['../group__group__capsense__high__level.html#gaf10ce0cc817442374d2df04c9d241f9b',1,'Cy_CapSense_ScanSlots(uint32_t startSlotId, uint32_t numberSlots, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__high__level.html#gaf10ce0cc817442374d2df04c9d241f9b',1,'Cy_CapSense_ScanSlots(uint32_t startSlotId, uint32_t numberSlots, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fscanwidget',['Cy_CapSense_ScanWidget',['../group__group__capsense__high__level.html#gad98e953def0673cd879f01a00fb2d01b',1,'Cy_CapSense_ScanWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#gad98e953def0673cd879f01a00fb2d01b',1,'Cy_CapSense_ScanWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fsensor',['CY_CAPSENSE_SENSOR',['../group__group__capsense__macros__pin.html#ga2ce24899858a4620467617d1e359f20e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsetcalibrationtargets',['Cy_CapSense_SetCalibrationTargets',['../group__group__capsense__low__level.html#ga2a87df9f6b6810a12465149f451fd64f',1,'Cy_CapSense_SetCalibrationTargets(uint32_t csdCalibrTarget, uint32_t csxCalibrTarget, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga2a87df9f6b6810a12465149f451fd64f',1,'Cy_CapSense_SetCalibrationTargets(uint32_t csdCalibrTarget, uint32_t csxCalibrTarget, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fsetgesturetimestamp',['Cy_CapSense_SetGestureTimestamp',['../group__group__capsense__high__level.html#gabf0789f59e23077cba0005b1499468f9',1,'Cy_CapSense_SetGestureTimestamp(uint32_t value, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gabf0789f59e23077cba0005b1499468f9',1,'Cy_CapSense_SetGestureTimestamp(uint32_t value, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fsetinactiveelectrodestate',['Cy_CapSense_SetInactiveElectrodeState',['../group__group__capsense__low__level.html#ga760c8b9c8e17b5c9689bf9305a34e393',1,'Cy_CapSense_SetInactiveElectrodeState(uint32_t inactiveState, uint32_t sensingGroup, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#ga760c8b9c8e17b5c9689bf9305a34e393',1,'Cy_CapSense_SetInactiveElectrodeState(uint32_t inactiveState, uint32_t sensingGroup, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fsetparam',['Cy_CapSense_SetParam',['../group__group__capsense__low__level.html#ga6049654627a08e866ebe5e93ac414177',1,'Cy_CapSense_SetParam(uint32_t paramId, uint32_t value, void *ptrTuner, cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__low__level.html#ga6049654627a08e866ebe5e93ac414177',1,'Cy_CapSense_SetParam(uint32_t paramId, uint32_t value, void *ptrTuner, cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fsetpinstate',['Cy_CapSense_SetPinState',['../group__group__capsense__low__level.html#gaf51fd91df09631045f83396237395777',1,'Cy_CapSense_SetPinState(uint32_t widgetId, uint32_t sensorElement, uint32_t state, const cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#gaf51fd91df09631045f83396237395777',1,'Cy_CapSense_SetPinState(uint32_t widgetId, uint32_t sensorElement, uint32_t state, const cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fsetupwidget',['Cy_CapSense_SetupWidget',['../group__group__capsense__high__level.html#ga9f798069c57bf91f7ce2bc19bb086191',1,'Cy_CapSense_SetupWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__high__level.html#ga9f798069c57bf91f7ce2bc19bb086191',1,'Cy_CapSense_SetupWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fsetupwidgetext',['Cy_CapSense_SetupWidgetExt',['../group__group__capsense__low__level.html#gaf43c0cf61a95f11a5981f82f5b0d4e86',1,'Cy_CapSense_SetupWidgetExt(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__low__level.html#gaf43c0cf61a95f11a5981f82f5b0d4e86',1,'Cy_CapSense_SetupWidgetExt(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fsh_5fdelay_5f0ns',['CY_CAPSENSE_SH_DELAY_0NS',['../group__group__capsense__macros__settings.html#gac0e5ac299c482dccf2a13deeb711418b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsh_5fdelay_5f10ns',['CY_CAPSENSE_SH_DELAY_10NS',['../group__group__capsense__macros__settings.html#ga2a8207ebf7bdfe80cbe61b8c6804d8d7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsh_5fdelay_5f20ns',['CY_CAPSENSE_SH_DELAY_20NS',['../group__group__capsense__macros__settings.html#gae4c2670b353797c6926f7bf1873a197a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsh_5fdelay_5f5ns',['CY_CAPSENSE_SH_DELAY_5NS',['../group__group__capsense__macros__settings.html#ga48749bbea16b0c9a23f88e4f4a366b30',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield',['CY_CAPSENSE_SHIELD',['../group__group__capsense__macros__pin.html#ga704cf1446755dd90a8d31bba205b24a6',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield_5factive',['CY_CAPSENSE_SHIELD_ACTIVE',['../group__group__capsense__macros__settings.html#ga67fb2d649cc7951cd343a7f90b97ba60',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield_5fdisabled',['CY_CAPSENSE_SHIELD_DISABLED',['../group__group__capsense__macros__settings.html#gad87aae7630fddcad1b77864e054df2e1',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield_5fpassive',['CY_CAPSENSE_SHIELD_PASSIVE',['../group__group__capsense__macros__settings.html#ga6c46716f429184b52d970b687094d384',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield_5fsw_5fres_5fhigh',['CY_CAPSENSE_SHIELD_SW_RES_HIGH',['../group__group__capsense__macros__settings.html#ga046e981e4d4b4ba396dab5204d7115c6',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield_5fsw_5fres_5flow',['CY_CAPSENSE_SHIELD_SW_RES_LOW',['../group__group__capsense__macros__settings.html#gac7a63dafd01bec9532ecb51396cdc534',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield_5fsw_5fres_5flow_5femi',['CY_CAPSENSE_SHIELD_SW_RES_LOW_EMI',['../group__group__capsense__macros__settings.html#gabe85f0f14bf73d8baa6d013dac6a9608',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fshield_5fsw_5fres_5fmedium',['CY_CAPSENSE_SHIELD_SW_RES_MEDIUM',['../group__group__capsense__macros__settings.html#ga867a68d0418a476d6642c43a3d038248',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fslotpinstate',['Cy_CapSense_SlotPinState',['../group__group__capsense__low__level.html#ga5d8f778457e13ccfa3f34239aef25f47',1,'Cy_CapSense_SlotPinState(uint32_t slotId, const cy_stc_capsense_electrode_config_t *ptrEltdCfg, uint32_t pinState, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga5d8f778457e13ccfa3f34239aef25f47',1,'Cy_CapSense_SlotPinState(uint32_t slotId, const cy_stc_capsense_electrode_config_t *ptrEltdCfg, uint32_t pinState, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fsns_5fclk_5fsource_5fauto_5fsel_5fmode_5fmedium',['CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_MEDIUM',['../group__group__capsense__macros__settings.html#ga5e338bbc87bd90711494bf9d9385cbf0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fclk_5fsource_5fauto_5fsel_5fmode_5fstrong',['CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_STRONG',['../group__group__capsense__macros__settings.html#ga662cc8c242a4d7accaf7397a8a5724fc',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fclk_5fsource_5fauto_5fsel_5fmode_5fweak',['CY_CAPSENSE_SNS_CLK_SOURCE_AUTO_SEL_MODE_WEAK',['../group__group__capsense__macros__settings.html#ga2a9079680e8aa39d9365a5422ef3fb64',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fconnected',['CY_CAPSENSE_SNS_CONNECTED',['../group__group__capsense__macros__pin.html#ga2a7574920a5983ab0fb93e68284200f0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fconnection_5fground',['CY_CAPSENSE_SNS_CONNECTION_GROUND',['../group__group__capsense__macros__settings.html#gab9974ad01fbe3917c6267fa699d1076e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fconnection_5fhighz',['CY_CAPSENSE_SNS_CONNECTION_HIGHZ',['../group__group__capsense__macros__settings.html#ga3a5c45da6939f8c983d1b49a1cab892d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fconnection_5fshield',['CY_CAPSENSE_SNS_CONNECTION_SHIELD',['../group__group__capsense__macros__settings.html#ga8a8853eddb009b86af2a5c81992c0e63',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fconnection_5fundefined',['CY_CAPSENSE_SNS_CONNECTION_UNDEFINED',['../group__group__capsense__macros__settings.html#gaa1cb325794702c2593a229efdd6423bf',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fconnection_5fvdda_5fby_5f2',['CY_CAPSENSE_SNS_CONNECTION_VDDA_BY_2',['../group__group__capsense__macros__settings.html#gae4481e4b8ea585a9806c48b4633c5a04',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fdisconnected',['CY_CAPSENSE_SNS_DISCONNECTED',['../group__group__capsense__macros__pin.html#gaca5ba34915743447053b5cd138db74de',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5foverflow_5fmask',['CY_CAPSENSE_SNS_OVERFLOW_MASK',['../group__group__capsense__macros__general.html#gaa37105aadfbfd2c37b34b939c6fcf016',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5fprox_5fstatus_5fmask',['CY_CAPSENSE_SNS_PROX_STATUS_MASK',['../group__group__capsense__macros__general.html#gaf56cec4f93d99e05d6b9197533a04c4e',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsns_5ftouch_5fstatus_5fmask',['CY_CAPSENSE_SNS_TOUCH_STATUS_MASK',['../group__group__capsense__macros__general.html#gae200b7c77b372a6e02221d90ed2d6435',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstart_5fsample_5fe',['CY_CAPSENSE_START_SAMPLE_E',['../group__group__capsense__enums.html#ggabfbff81b8b80d4ee1a1d53c1fe0c9a11a32ca7c2ce1843b83c83e7461de88e42f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fstatus_5fbad_5fclock_5fconfig',['CY_CAPSENSE_STATUS_BAD_CLOCK_CONFIG',['../group__group__capsense__macros__status.html#ga481480b9c9d3b3ac244342cc3b6a3fb3',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fbad_5fconfig',['CY_CAPSENSE_STATUS_BAD_CONFIG',['../group__group__capsense__macros__status.html#ga27ac8f9b094a592b8485c770801201dc',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fbad_5fdata',['CY_CAPSENSE_STATUS_BAD_DATA',['../group__group__capsense__macros__status.html#ga69dbd94aeeefeb6c62a06b1a34c6b11b',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fbad_5fparam',['CY_CAPSENSE_STATUS_BAD_PARAM',['../group__group__capsense__macros__status.html#ga8497b8b090398be7d1550d31946c6013',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fcalibration_5fcheck_5ffail',['CY_CAPSENSE_STATUS_CALIBRATION_CHECK_FAIL',['../group__group__capsense__macros__status.html#ga9f3803d22196b2817b13876dc40235e7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fcalibration_5ffail',['CY_CAPSENSE_STATUS_CALIBRATION_FAIL',['../group__group__capsense__macros__status.html#ga1dc4b760862d830170ca6a7a0f3847c4',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fcalibration_5foverflow',['CY_CAPSENSE_STATUS_CALIBRATION_OVERFLOW',['../group__group__capsense__macros__status.html#ga0efb73a86bce0609b8d1a0046ed01abe',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fconfig_5foverflow',['CY_CAPSENSE_STATUS_CONFIG_OVERFLOW',['../group__group__capsense__macros__status.html#ga3da0177d5b3646efb3823f32a32e8706',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fhw_5fbusy',['CY_CAPSENSE_STATUS_HW_BUSY',['../group__group__capsense__macros__status.html#gaedbe037a646fceb93087fb5737d9477a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fhw_5flocked',['CY_CAPSENSE_STATUS_HW_LOCKED',['../group__group__capsense__macros__status.html#gae73ebe440322cda669c2cdecd2296445',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5finvalid_5fstate',['CY_CAPSENSE_STATUS_INVALID_STATE',['../group__group__capsense__macros__status.html#ga2e717d44f520fcd5b7c344c907c2279a',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5frestart_5fdone',['CY_CAPSENSE_STATUS_RESTART_DONE',['../group__group__capsense__macros__miscellaneous.html#ga58ba0a06e4c9655932c533924e6e7a1c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5frestart_5fnone',['CY_CAPSENSE_STATUS_RESTART_NONE',['../group__group__capsense__macros__miscellaneous.html#ga14217247882e150c2ac54b09ad64e4d9',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5fsuccess',['CY_CAPSENSE_STATUS_SUCCESS',['../group__group__capsense__macros__status.html#ga83824bf450f79f26a70da2b619cd07c7',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5ft',['cy_capsense_status_t',['../group__group__capsense__structures.html#gadb42bb859316b21e708ad01184fba9c7',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fstatus_5ftimeout',['CY_CAPSENSE_STATUS_TIMEOUT',['../group__group__capsense__macros__status.html#ga7800a171ed68032494c947af37eb7c6c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fstatus_5funknown',['CY_CAPSENSE_STATUS_UNKNOWN',['../group__group__capsense__macros__status.html#ga6af4b561b0252573ec898b34624db5be',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsuccess_5fe',['CY_CAPSENSE_SUCCESS_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a3ddd2a0c59c25f817f852c4d899784c3',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fsync_5fexternal',['CY_CAPSENSE_SYNC_EXTERNAL',['../group__group__capsense__macros__settings.html#gae5b20e3cee87b98ba570651a2eccba16',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsync_5finternal',['CY_CAPSENSE_SYNC_INTERNAL',['../group__group__capsense__macros__settings.html#ga0cd06b1f46952635db71d0ec0452400c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fsync_5fmode_5foff',['CY_CAPSENSE_SYNC_MODE_OFF',['../group__group__capsense__macros__settings.html#gad4cf55a5b7ef6e46a91f36a0a7c756c1',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5ftimeout_5fe',['CY_CAPSENSE_TIMEOUT_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a98e6cd62cd72566bbd7025c1c4d9995c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftst_5fhw_5fgroup_5fen',['CY_CAPSENSE_TST_HW_GROUP_EN',['../group__group__capsense__macros__bist.html#gae520bda9769db3b66038f58bd133180c',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5ftst_5fmeasurement_5fgroup_5fen',['CY_CAPSENSE_TST_MEASUREMENT_GROUP_EN',['../group__group__capsense__macros__bist.html#gac8d7ca915ba94312bd39fc5f1d5745a0',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fcomplete_5fbit',['CY_CAPSENSE_TU_CMD_COMPLETE_BIT',['../group__group__capsense__macros__miscellaneous.html#ga28d833476c3b7b4c16772b4271f50ff4',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fnone_5fe',['CY_CAPSENSE_TU_CMD_NONE_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a3fdf6f04116abcaf626fda9269e9dba8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fone_5fscan_5fe',['CY_CAPSENSE_TU_CMD_ONE_SCAN_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a4878ec99a8b651b4a1812af156b4df6d',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fping_5fe',['CY_CAPSENSE_TU_CMD_PING_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a133f8c8b5cdf8f35e298d8cd203d17c5',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5frestart_5fe',['CY_CAPSENSE_TU_CMD_RESTART_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79ab9eb1fff3c78f2eb26b9a33c667e5385',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fresume_5fe',['CY_CAPSENSE_TU_CMD_RESUME_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79ae9746952315a1ef0fc8e294383b37e0f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5frun_5fsnr_5ftest_5fe',['CY_CAPSENSE_TU_CMD_RUN_SNR_TEST_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a87282482662ce591d86c7767bae8217a',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fsuspend_5fe',['CY_CAPSENSE_TU_CMD_SUSPEND_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a86106715ac1df2c1149a7c9dedb51469',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fwrite_5fe',['CY_CAPSENSE_TU_CMD_WRITE_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a0598ab56c52f94b05400c1c4b52243b9',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5ffsm_5fone_5fscan',['CY_CAPSENSE_TU_FSM_ONE_SCAN',['../group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dca8bfd4b992045ded35c5a92a3fd1de30a',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5ffsm_5frunning',['CY_CAPSENSE_TU_FSM_RUNNING',['../group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dca90d0945b863d6c568c124179622abcb8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5ffsm_5fsuspended',['CY_CAPSENSE_TU_FSM_SUSPENDED',['../group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dcabd652b762757d2927ff7efc5b61d58ea',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftuner_5freceive_5fcallback_5ft',['cy_capsense_tuner_receive_callback_t',['../group__group__capsense__structures.html#gade1f00c852892b0fc498c9a3b9d28594',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftuner_5fsend_5fcallback_5ft',['cy_capsense_tuner_send_callback_t',['../group__group__capsense__structures.html#gabf58e6ce283cb73f9b8a398abf6bad17',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftx_5fpin',['CY_CAPSENSE_TX_PIN',['../group__group__capsense__macros__pin.html#ga18014a9f7faa11af20e25ecb1d0398ae',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fundefined_5fgroup',['CY_CAPSENSE_UNDEFINED_GROUP',['../group__group__capsense__macros__settings.html#gae86010c9d7c2b34d3825aed42c3bdb55',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5funregistercallback',['Cy_CapSense_UnRegisterCallback',['../group__group__capsense__high__level.html#gaf43b3cdfce7a3e8c0e5622f42e0a6319',1,'Cy_CapSense_UnRegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gaf43b3cdfce7a3e8c0e5622f42e0a6319',1,'Cy_CapSense_UnRegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fupdateallbaselines',['Cy_CapSense_UpdateAllBaselines',['../group__group__capsense__low__level.html#ga76d2e232d2e5247954a15a45de62d235',1,'Cy_CapSense_UpdateAllBaselines(const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga76d2e232d2e5247954a15a45de62d235',1,'Cy_CapSense_UpdateAllBaselines(const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5fupdatesensorbaseline',['Cy_CapSense_UpdateSensorBaseline',['../group__group__capsense__low__level.html#ga4d2ceb23fa0e3731878ad777f39474d2',1,'Cy_CapSense_UpdateSensorBaseline(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga4d2ceb23fa0e3731878ad777f39474d2',1,'Cy_CapSense_UpdateSensorBaseline(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5fupdatewidgetbaseline',['Cy_CapSense_UpdateWidgetBaseline',['../group__group__capsense__low__level.html#ga53420b198a6de128b82b3edb31f250c6',1,'Cy_CapSense_UpdateWidgetBaseline(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga53420b198a6de128b82b3edb31f250c6',1,'Cy_CapSense_UpdateWidgetBaseline(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5fuse_5fcapture',['CY_CAPSENSE_USE_CAPTURE',['../group__group__capsense__macros__general.html#gaf8e87c50be58d84b58e58323c12ae6f3',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fvref_5fpass',['CY_CAPSENSE_VREF_PASS',['../group__group__capsense__macros__settings.html#gab2666ce40783ce2b0259f7fd581cb400',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fvref_5fsrss',['CY_CAPSENSE_VREF_SRSS',['../group__group__capsense__macros__settings.html#ga07a0b01219871be66bd32242d678f82f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fvrefextpad_5fe',['CY_CAPSENSE_VREFEXTPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa420665561af172fd28659e2c7e728df5',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwakeup',['Cy_CapSense_Wakeup',['../group__group__capsense__high__level.html#gaf9436a7ec9b18880dbc046e91462710b',1,'Cy_CapSense_Wakeup(const cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gaf9436a7ec9b18880dbc046e91462710b',1,'Cy_CapSense_Wakeup(const cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fwd_5factive_5fmask',['CY_CAPSENSE_WD_ACTIVE_MASK',['../group__group__capsense__macros__general.html#gad47321d5011cc28ee15d2148c62af66f',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fwd_5fbutton_5fe',['CY_CAPSENSE_WD_BUTTON_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a12b429b17049aec3da05bba98d86d704',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fdisable_5fmask',['CY_CAPSENSE_WD_DISABLE_MASK',['../group__group__capsense__macros__general.html#ga0a84bc1036114a86ad2806f69110709d',1,'cy_capsense_common.h']]], - ['cy_5fcapsense_5fwd_5flinear_5fslider_5fe',['CY_CAPSENSE_WD_LINEAR_SLIDER_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60ab7ce0cce1660ed385f8f570fce1a89ea',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fmatrix_5fbutton_5fe',['CY_CAPSENSE_WD_MATRIX_BUTTON_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a49a619428a7d70767032000b70d3c5d5',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fproximity_5fe',['CY_CAPSENSE_WD_PROXIMITY_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a840f00e988ee5ed8d1b0ca0a6f91fe2c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fradial_5fslider_5fe',['CY_CAPSENSE_WD_RADIAL_SLIDER_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a50cac3d4ee616bbc7e0c9ed9dced309e',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5ftouchpad_5fe',['CY_CAPSENSE_WD_TOUCHPAD_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a71ed340a3d5c1ec96169c5a7d4ee91df',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fworking_5fmask',['CY_CAPSENSE_WD_WORKING_MASK',['../group__group__capsense__macros__general.html#ga00a019887f9b20124c916b3a2f431fdd',1,'cy_capsense_common.h']]], - ['cy_5fcsd_5fdrv2_5fversion',['CY_CSD_DRV2_VERSION',['../group__group__capsense__macros__general.html#ga69647cf4fe9cf4cd4082e53d4e14bfd8',1,'cy_capsense_common.h']]], - ['cy_5fcsd_5fdrv_5fversion_5frequired',['CY_CSD_DRV_VERSION_REQUIRED',['../group__group__capsense__macros__general.html#gae3c1bba4e246712abae8a73ff3be3f99',1,'cy_capsense_common.h']]], - ['cy_5fen_5fcapsense_5fbist_5fexternal_5fcap_5fid_5ft',['cy_en_capsense_bist_external_cap_id_t',['../group__group__capsense__enums.html#ga07f6f8cbe8fa1cebb08e2bd44e9de29b',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fen_5fcapsense_5fbist_5fhw_5fconfig_5ft',['cy_en_capsense_bist_hw_config_t',['../group__group__capsense__enums.html#ga8f12924cdfe09cc22def0407e512c60b',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fbist_5fio_5fstate_5ft',['cy_en_capsense_bist_io_state_t',['../group__group__capsense__enums.html#ga0e370bf700c29e03461030db2779ceec',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fbist_5fstatus_5ft',['cy_en_capsense_bist_status_t',['../group__group__capsense__enums.html#gafbe67572b1e6a637676b0a6e1040857c',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fcallback_5fevent_5ft',['cy_en_capsense_callback_event_t',['../group__group__capsense__enums.html#gabfbff81b8b80d4ee1a1d53c1fe0c9a11',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fcap_5fconnection_5ft',['cy_en_capsense_cap_connection_t',['../group__group__capsense__enums.html#gac15b3ea1caa3c42666ba5e50cabb416f',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5feltd_5ft',['cy_en_capsense_eltd_t',['../group__group__capsense__enums.html#ga8d3df6022888bbb21e3e64e2b045274d',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fmsc_5fraw_5fmode_5ft',['cy_en_capsense_msc_raw_mode_t',['../group__group__capsense__enums.html#ga2f401fe83daac81512b02b33fc967f57',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5freturn_5fstatus_5ft',['cy_en_capsense_return_status_t',['../group__group__capsense__enums.html#gaa96ebe173a9a3ec24f7461f696482b11',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5ftuner_5fcmd_5ft',['cy_en_capsense_tuner_cmd_t',['../group__group__capsense__enums.html#ga049118d05a2bdf4f2d37d7b75c511f79',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5ftuner_5fstate_5ft',['cy_en_capsense_tuner_state_t',['../group__group__capsense__enums.html#gaadb1f5ee70c7d52a5375cdae765093dc',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fwidget_5ftype_5ft',['cy_en_capsense_widget_type_t',['../group__group__capsense__enums.html#ga855d894b24929f0d7d2774dfc4266d60',1,'cy_capsense_structure.h']]], - ['cy_5fstc_5factive_5fscan_5fsns_5ft',['cy_stc_active_scan_sns_t',['../structcy__stc__active__scan__sns__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fadaptive_5ffilter_5fconfig_5ft',['cy_stc_capsense_adaptive_filter_config_t',['../structcy__stc__capsense__adaptive__filter__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fadvanced_5fcentroid_5fconfig_5ft',['cy_stc_capsense_advanced_centroid_config_t',['../structcy__stc__capsense__advanced__centroid__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fadvanced_5ftouchpad_5fconfig_5ft',['cy_stc_capsense_advanced_touchpad_config_t',['../structcy__stc__capsense__advanced__touchpad__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5falp_5ffltr_5fchannel_5ft',['cy_stc_capsense_alp_fltr_channel_t',['../structcy__stc__capsense__alp__fltr__channel__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5falp_5ffltr_5fconfig_5ft',['cy_stc_capsense_alp_fltr_config_t',['../structcy__stc__capsense__alp__fltr__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fauto_5ftune_5fconfig_5ft',['cy_stc_capsense_auto_tune_config_t',['../structcy__stc__capsense__auto__tune__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fballistic_5fconfig_5ft',['cy_stc_capsense_ballistic_config_t',['../structcy__stc__capsense__ballistic__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fballistic_5fcontext_5ft',['cy_stc_capsense_ballistic_context_t',['../structcy__stc__capsense__ballistic__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fballistic_5fdelta_5ft',['cy_stc_capsense_ballistic_delta_t',['../structcy__stc__capsense__ballistic__delta__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fbist_5fcontext_5ft',['cy_stc_capsense_bist_context_t',['../structcy__stc__capsense__bist__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fbist_5fcustom_5fparameters_5ft',['cy_stc_capsense_bist_custom_parameters_t',['../structcy__stc__capsense__bist__custom__parameters__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcommon_5fconfig_5ft',['cy_stc_capsense_common_config_t',['../structcy__stc__capsense__common__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcommon_5fcontext_5ft',['cy_stc_capsense_common_context_t',['../structcy__stc__capsense__common__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcontext_5ft',['cy_stc_capsense_context_t',['../structcy__stc__capsense__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcsx_5ftouch_5fbuffer_5ft',['cy_stc_capsense_csx_touch_buffer_t',['../structcy__stc__capsense__csx__touch__buffer__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcsx_5ftouch_5fhistory_5ft',['cy_stc_capsense_csx_touch_history_t',['../structcy__stc__capsense__csx__touch__history__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5felectrode_5fconfig_5ft',['cy_stc_capsense_electrode_config_t',['../structcy__stc__capsense__electrode__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fgesture_5fconfig_5ft',['cy_stc_capsense_gesture_config_t',['../structcy__stc__capsense__gesture__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fgesture_5fcontext_5ft',['cy_stc_capsense_gesture_context_t',['../structcy__stc__capsense__gesture__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fgesture_5fposition_5ft',['cy_stc_capsense_gesture_position_t',['../structcy__stc__capsense__gesture__position__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fhw_5fsmartsense_5fconfig_5ft',['cy_stc_capsense_hw_smartsense_config_t',['../structcy__stc__capsense__hw__smartsense__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fidac_5fgain_5ftable_5ft',['cy_stc_capsense_idac_gain_table_t',['../structcy__stc__capsense__idac__gain__table__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5finternal_5fcontext_5ft',['cy_stc_capsense_internal_context_t',['../structcy__stc__capsense__internal__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fmptx_5ftable_5ft',['cy_stc_capsense_mptx_table_t',['../structcy__stc__capsense__mptx__table__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofcd_5fcontext_5ft',['cy_stc_capsense_ofcd_context_t',['../structcy__stc__capsense__ofcd__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofdc_5fcontext_5ft',['cy_stc_capsense_ofdc_context_t',['../structcy__stc__capsense__ofdc__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofes_5fcontext_5ft',['cy_stc_capsense_ofes_context_t',['../structcy__stc__capsense__ofes__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5foffl_5fcontext_5ft',['cy_stc_capsense_offl_context_t',['../structcy__stc__capsense__offl__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofrt_5fcontext_5ft',['cy_stc_capsense_ofrt_context_t',['../structcy__stc__capsense__ofrt__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofsc_5fcontext_5ft',['cy_stc_capsense_ofsc_context_t',['../structcy__stc__capsense__ofsc__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofsl_5fcontext_5ft',['cy_stc_capsense_ofsl_context_t',['../structcy__stc__capsense__ofsl__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fpin_5fconfig_5ft',['cy_stc_capsense_pin_config_t',['../structcy__stc__capsense__pin__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fposition_5ft',['cy_stc_capsense_position_t',['../structcy__stc__capsense__position__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fscan_5fslot_5ft',['cy_stc_capsense_scan_slot_t',['../structcy__stc__capsense__scan__slot__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fsensor_5fcontext_5ft',['cy_stc_capsense_sensor_context_t',['../structcy__stc__capsense__sensor__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fsmartsense_5fcsd_5fnoise_5fenvelope_5ft',['cy_stc_capsense_smartsense_csd_noise_envelope_t',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fsmartsense_5fupdate_5fthresholds_5ft',['cy_stc_capsense_smartsense_update_thresholds_t',['../structcy__stc__capsense__smartsense__update__thresholds__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftfsc_5fcontext_5ft',['cy_stc_capsense_tfsc_context_t',['../structcy__stc__capsense__tfsc__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftfsl_5fcontext_5ft',['cy_stc_capsense_tfsl_context_t',['../structcy__stc__capsense__tfsl__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftfzm_5fcontext_5ft',['cy_stc_capsense_tfzm_context_t',['../structcy__stc__capsense__tfzm__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftouch_5ft',['cy_stc_capsense_touch_t',['../structcy__stc__capsense__touch__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fwidget_5fconfig_5ft',['cy_stc_capsense_widget_config_t',['../structcy__stc__capsense__widget__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fwidget_5fcontext_5ft',['cy_stc_capsense_widget_context_t',['../structcy__stc__capsense__widget__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fwidget_5fcrc_5fdata_5ft',['cy_stc_capsense_widget_crc_data_t',['../structcy__stc__capsense__widget__crc__data__t.html',1,'']]], - ['cy_5fstc_5fmsc_5fchannel_5fconfig_5ft',['cy_stc_msc_channel_config_t',['../structcy__stc__msc__channel__config__t.html',1,'']]], - ['callbacks',['Callbacks',['../group__group__capsense__callbacks.html',1,'']]], - ['capsense_26trade_3b_20middleware_20library_203_2e0',['CAPSENSE&trade; Middleware Library 3.0',['../index.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_3.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_3.html deleted file mode 100644 index 03405c0fb2..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_3.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_3.js deleted file mode 100644 index 36371eba65..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_3.js +++ /dev/null @@ -1,30 +0,0 @@ -var searchData= -[ - ['dataparam0',['dataParam0',['../structcy__stc__capsense__alp__fltr__channel__t.html#a4eeaf7e6e557a71e478f2ebdb50574de',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam1',['dataParam1',['../structcy__stc__capsense__alp__fltr__channel__t.html#a6cbff9d935df1845ac6cdf4172c7209b',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam2',['dataParam2',['../structcy__stc__capsense__alp__fltr__channel__t.html#ae21096248150ede5126f6372dc8bc6e9',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam3',['dataParam3',['../structcy__stc__capsense__alp__fltr__channel__t.html#a1bd5de721828504f592e4ed5d55e0564',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam4',['dataParam4',['../structcy__stc__capsense__alp__fltr__channel__t.html#ac62dc41e0fd4f3ccd948f866549ea11e',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam5',['dataParam5',['../structcy__stc__capsense__alp__fltr__channel__t.html#a4372588f14b58af19f65cb07aa13e847',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam6',['dataParam6',['../structcy__stc__capsense__alp__fltr__channel__t.html#a40660b6044aa1b08f4e54629dcf0ce22',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam7',['dataParam7',['../structcy__stc__capsense__alp__fltr__channel__t.html#a885a5ec429033d11ae602ebaf7676413',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['debounce',['debounce',['../structcy__stc__capsense__ofsl__context__t.html#a8b38d4d85c4c429162a82f66494bab4c',1,'cy_stc_capsense_ofsl_context_t::debounce()'],['../structcy__stc__capsense__tfsl__context__t.html#a716e4c137b9094a50dd9c85cb46327ea',1,'cy_stc_capsense_tfsl_context_t::debounce()'],['../structcy__stc__capsense__tfzm__context__t.html#a3a6d2543ec80c8af2b26ecd1e9cb4544',1,'cy_stc_capsense_tfzm_context_t::debounce()'],['../structcy__stc__capsense__ofrt__context__t.html#a3d14b869436d9a7a23c57db47a665140',1,'cy_stc_capsense_ofrt_context_t::debounce()']]], - ['deconvcoef',['deconvCoef',['../structcy__stc__capsense__mptx__table__t.html#ae8ac82d905314c32e7ef37ab51def597',1,'cy_stc_capsense_mptx_table_t']]], - ['deltax',['deltaX',['../structcy__stc__capsense__ballistic__delta__t.html#a454e97190a56ea9075d1764b214203d9',1,'cy_stc_capsense_ballistic_delta_t']]], - ['deltaxfrac',['deltaXfrac',['../structcy__stc__capsense__ballistic__context__t.html#a8fe77855d41716420ecb5b8a6a4726d5',1,'cy_stc_capsense_ballistic_context_t']]], - ['deltay',['deltaY',['../structcy__stc__capsense__ballistic__delta__t.html#a469d02345ffee521218243a7d2e61fb4',1,'cy_stc_capsense_ballistic_delta_t']]], - ['deltayfrac',['deltaYfrac',['../structcy__stc__capsense__ballistic__context__t.html#ada5af6548b412a22be7317001ceafa1d',1,'cy_stc_capsense_ballistic_context_t']]], - ['detected',['detected',['../structcy__stc__capsense__gesture__context__t.html#a607d08f453a989754dd877c3118ec4c4',1,'cy_stc_capsense_gesture_context_t']]], - ['diff',['diff',['../structcy__stc__capsense__sensor__context__t.html#ae3a77556515876cf00e178ccc7cbd606',1,'cy_stc_capsense_sensor_context_t']]], - ['direction',['direction',['../structcy__stc__capsense__ofsl__context__t.html#a16e86b0e4a4e18f39d1d04af5f19f77b',1,'cy_stc_capsense_ofsl_context_t::direction()'],['../structcy__stc__capsense__tfsl__context__t.html#af33814e8e0f9b68b402b92868d440997',1,'cy_stc_capsense_tfsl_context_t::direction()'],['../structcy__stc__capsense__gesture__context__t.html#a2951e786f1279c80f1210b5d69339681',1,'cy_stc_capsense_gesture_context_t::direction()']]], - ['distancemap',['distanceMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#aea8ff4b04a46ed06f2e05ebdb85d2e7a',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['distancex',['distanceX',['../structcy__stc__capsense__tfzm__context__t.html#aeba8c48b23a049c2c427c01d79f8cf4a',1,'cy_stc_capsense_tfzm_context_t']]], - ['distancey',['distanceY',['../structcy__stc__capsense__tfzm__context__t.html#af80b64aea8441ddd468baa43048846a4',1,'cy_stc_capsense_tfzm_context_t']]], - ['divisorvalue',['divisorValue',['../structcy__stc__capsense__ballistic__config__t.html#a847c20119361422daf67ca877c6ef456',1,'cy_stc_capsense_ballistic_config_t']]], - ['divval',['divVal',['../structcy__stc__capsense__adaptive__filter__config__t.html#a9a1c907add092d6754cb3d5669b26b19',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['dmachainrdchindex',['dmaChainRdChIndex',['../structcy__stc__msc__channel__config__t.html#a033754c3c8cbe3ef754684056f7f7154',1,'cy_stc_msc_channel_config_t']]], - ['dmachainwrchindex',['dmaChainWrChIndex',['../structcy__stc__msc__channel__config__t.html#a88bf57540e88d8a4fdf81e8ae19d952d',1,'cy_stc_msc_channel_config_t']]], - ['dmardchindex',['dmaRdChIndex',['../structcy__stc__msc__channel__config__t.html#ac8026a90b58820b2e621496847d83591',1,'cy_stc_msc_channel_config_t']]], - ['dmawrchindex',['dmaWrChIndex',['../structcy__stc__msc__channel__config__t.html#ac86892509bd5574480a67d459cdb9f8b',1,'cy_stc_msc_channel_config_t']]], - ['data_20structure',['Data Structure',['../group__group__capsense__data__structure.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_4.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_4.html deleted file mode 100644 index 8e1f4b9cd9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_4.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_4.js deleted file mode 100644 index e956dec56a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_4.js +++ /dev/null @@ -1,36 +0,0 @@ -var searchData= -[ - ['edge',['edge',['../structcy__stc__capsense__ofes__context__t.html#ac157aeb4721e704a38dff878b34f4bbf',1,'cy_stc_capsense_ofes_context_t']]], - ['edgeanglemax',['edgeAngleMax',['../structcy__stc__capsense__gesture__config__t.html#a3e6b32e61c14bedfe0dae9fa6fa2ae76',1,'cy_stc_capsense_gesture_config_t']]], - ['edgecorrectionen',['edgeCorrectionEn',['../structcy__stc__capsense__advanced__centroid__config__t.html#a5101330723664b0878203d70729b0f81',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['edgedistancemin',['edgeDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#a18f7465297e8f690506025215800585a',1,'cy_stc_capsense_gesture_config_t']]], - ['edgeedgesize',['edgeEdgeSize',['../structcy__stc__capsense__gesture__config__t.html#aa9a25c2b003808ad393ca2a00dc3f531',1,'cy_stc_capsense_gesture_config_t']]], - ['edgetimeoutmax',['edgeTimeoutMax',['../structcy__stc__capsense__gesture__config__t.html#a2b78f409219d6f4de0e86b0554c2ec57',1,'cy_stc_capsense_gesture_config_t']]], - ['eltdcapcsdisc',['eltdCapCsdISC',['../structcy__stc__capsense__bist__context__t.html#a22d5181fd636a7ff20a47559140e1e39',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapcsxisc',['eltdCapCsxISC',['../structcy__stc__capsense__bist__context__t.html#a6370446fb7f72be84768cb8fb68c7375',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapmodclk',['eltdCapModClk',['../structcy__stc__capsense__bist__context__t.html#a331645cdb0494af471f9bdd735ede166',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumcoarseinitchargecycles',['eltdCapNumCoarseInitChargeCycles',['../structcy__stc__capsense__bist__context__t.html#a55e98b35113dc48452e9abfb141630fb',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumcoarseinitsettlecycles',['eltdCapNumCoarseInitSettleCycles',['../structcy__stc__capsense__bist__context__t.html#a328937ede13f24976b5da9cbfd199850',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumepicycles',['eltdCapNumEpiCycles',['../structcy__stc__capsense__bist__context__t.html#ad088d340194dd87d2bf6eedbb35704c3',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumfineinitcycles',['eltdCapNumFineInitCycles',['../structcy__stc__capsense__bist__context__t.html#ad94089c4e62e6ea3eba8083fd7153e71',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumfineinitwaitcycles',['eltdCapNumFineInitWaitCycles',['../structcy__stc__capsense__bist__context__t.html#a318f6d95e0876a729148b7329afb133b',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcaprefcdac',['eltdCapRefCdac',['../structcy__stc__capsense__bist__context__t.html#a2216e6fded31e9f57f46da1ea33f2502',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapresolution',['eltdCapResolution',['../structcy__stc__capsense__bist__context__t.html#a234d9c4330bd5e4f6eaf0241d9b7da01',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapscanmode',['eltdCapScanMode',['../structcy__stc__capsense__bist__context__t.html#a68f923d9a58298b9df352b6a275425ae',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsensegroup',['eltdCapSenseGroup',['../structcy__stc__capsense__bist__context__t.html#a0c9e63a331fdb827a3eae43e735aa3cb',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsnsclk',['eltdCapSnsClk',['../structcy__stc__capsense__bist__context__t.html#a6b8b7d2d90ea3d1dde78f8cea3f7f40c',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsnsclkfreqhz',['eltdCapSnsClkFreqHz',['../structcy__stc__capsense__bist__context__t.html#a3fecccd03e56148f208e64836aa070b4',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsubconvnum',['eltdCapSubConvNum',['../structcy__stc__capsense__bist__context__t.html#a870579effe976006517e80af1bcc477d',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapvrefgain',['eltdCapVrefGain',['../structcy__stc__capsense__bist__context__t.html#a2acbf7fcbd54f316d5ed0cd6f0be6748',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapvrefmv',['eltdCapVrefMv',['../structcy__stc__capsense__bist__context__t.html#a00a9b297c1710c64237e41cf65b52dd4',1,'cy_stc_capsense_bist_context_t']]], - ['eltdinactivedm',['eltdInactiveDm',['../structcy__stc__capsense__bist__context__t.html#a7d5b5f1ee829b5f6efb84087d85c52f7',1,'cy_stc_capsense_bist_context_t']]], - ['eltdinactivehsiom',['eltdInactiveHsiom',['../structcy__stc__capsense__bist__context__t.html#a5216364c35b222d89751930d8eec0050',1,'cy_stc_capsense_bist_context_t']]], - ['endslotindex',['endSlotIndex',['../structcy__stc__capsense__internal__context__t.html#a0bb5e146f355a51b8bffced67bf1c4a8',1,'cy_stc_capsense_internal_context_t']]], - ['extcapidacpa',['extCapIdacPa',['../structcy__stc__capsense__bist__context__t.html#a02ec16251b0f3ad575db0d179f879c87',1,'cy_stc_capsense_bist_context_t']]], - ['extcapmodclk',['extCapModClk',['../structcy__stc__capsense__bist__context__t.html#a8ffe130298947c266c56ddfdd64f8420',1,'cy_stc_capsense_bist_context_t']]], - ['extcapsnsclk',['extCapSnsClk',['../structcy__stc__capsense__bist__context__t.html#a35acc7ff82625d0f4ddd9e3c020ee406',1,'cy_stc_capsense_bist_context_t']]], - ['extcapvrefgain',['extCapVrefGain',['../structcy__stc__capsense__bist__context__t.html#af41b354a7c567232a7572a73ed0bc5b9',1,'cy_stc_capsense_bist_context_t']]], - ['extcapvrefmv',['extCapVrefMv',['../structcy__stc__capsense__bist__context__t.html#a64ff2a0e0441bb1d7c9c1062283e897b',1,'cy_stc_capsense_bist_context_t']]], - ['extcapwdt',['extCapWDT',['../structcy__stc__capsense__bist__context__t.html#a71c6e39161ae61c940eb57c948efbf3c',1,'cy_stc_capsense_bist_context_t']]], - ['enumerated_20types',['Enumerated Types',['../group__group__capsense__enums.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_5.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_5.html deleted file mode 100644 index 89a879ea9b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_5.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_5.js deleted file mode 100644 index ead38a2ff3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_5.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['fineinittime',['fineInitTime',['../structcy__stc__capsense__bist__context__t.html#a5fc71d7b28788af5ec71a5e45c8ccf8e',1,'cy_stc_capsense_bist_context_t::fineInitTime()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#a73d52513a1573f6fe1ad64ed47956660',1,'cy_stc_capsense_bist_custom_parameters_t::fineInitTime()']]], - ['fingercap',['fingerCap',['../structcy__stc__capsense__auto__tune__config__t.html#a1cfd6c229a3feee37da2016b69128be8',1,'cy_stc_capsense_auto_tune_config_t::fingerCap()'],['../structcy__stc__capsense__hw__smartsense__config__t.html#a04fc4c86b50f4e4cde839b048b484b25',1,'cy_stc_capsense_hw_smartsense_config_t::fingerCap()'],['../structcy__stc__capsense__widget__context__t.html#aaddfea3cc416d040629708d1723c12f6',1,'cy_stc_capsense_widget_context_t::fingerCap()']]], - ['fingercapval',['fingerCapVal',['../structcy__stc__capsense__widget__crc__data__t.html#a2c02fa3c77712c71160208f61b1d7f66',1,'cy_stc_capsense_widget_crc_data_t']]], - ['fingerposindexmap',['fingerPosIndexMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#af4749658a6668c77f5ed0c326cf6308e',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['fingerth',['fingerTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#ab7f5ac133fa009e0999779d34ee0c59e',1,'cy_stc_capsense_advanced_centroid_config_t::fingerTh()'],['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a87e1518bbd9d2c9745c1e51aee9e1380',1,'cy_stc_capsense_smartsense_update_thresholds_t::fingerTh()'],['../structcy__stc__capsense__widget__context__t.html#ab1730b817a861922f4375527d7a1d3b4',1,'cy_stc_capsense_widget_context_t::fingerTh()']]], - ['fingerthval',['fingerThVal',['../structcy__stc__capsense__widget__crc__data__t.html#a373d9ef4767624a402f7b5212474c2e7',1,'cy_stc_capsense_widget_crc_data_t']]], - ['firstslotid',['firstSlotId',['../structcy__stc__capsense__widget__config__t.html#a87a81dc03b7e5a64d58ed7286765bd63',1,'cy_stc_capsense_widget_config_t']]], - ['flickdistancemin',['flickDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#a4368430ad62e713cfa9c91275ffcceda',1,'cy_stc_capsense_gesture_config_t']]], - ['flicktimeoutmax',['flickTimeoutMax',['../structcy__stc__capsense__gesture__config__t.html#ac6379bfa4aa94d4031692bc31eeee6e1',1,'cy_stc_capsense_gesture_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_6.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_6.html deleted file mode 100644 index 6afac06622..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_6.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_6.js deleted file mode 100644 index 7279594da5..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_6.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['gainreg',['gainReg',['../structcy__stc__capsense__idac__gain__table__t.html#ad44c7d56219cb4db0e7aaaba7821fb40',1,'cy_stc_capsense_idac_gain_table_t']]], - ['gainvalue',['gainValue',['../structcy__stc__capsense__idac__gain__table__t.html#ae0e27b2d2c7a17bde0d7ed7c00bd0074',1,'cy_stc_capsense_idac_gain_table_t']]], - ['gesturedetected',['gestureDetected',['../structcy__stc__capsense__widget__context__t.html#a1abcf6d1b22d6cc09006eb81576f81f6',1,'cy_stc_capsense_widget_context_t']]], - ['gesturedirection',['gestureDirection',['../structcy__stc__capsense__widget__context__t.html#a1bd21ada41343af3e4102b85ab62edab',1,'cy_stc_capsense_widget_context_t']]], - ['gestureenablemask',['gestureEnableMask',['../structcy__stc__capsense__gesture__config__t.html#a47ee76801d9ab0c1c11e057d12fb37cc',1,'cy_stc_capsense_gesture_config_t']]], - ['gesture_20structures',['Gesture Structures',['../group__group__capsense__gesture__structures.html',1,'']]], - ['general_20macros',['General Macros',['../group__group__capsense__macros__general.html',1,'']]], - ['gesture_20macros',['Gesture Macros',['../group__group__capsense__macros__gesture.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_7.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_7.html deleted file mode 100644 index de19107705..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_7.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_7.js deleted file mode 100644 index 4013f3474c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_7.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['high_2dlevel_20functions',['High-level Functions',['../group__group__capsense__high__level.html',1,'']]], - ['history',['history',['../structcy__stc__capsense__ofrt__context__t.html#a4df4b5e9a02cba4b6bba8e6c10c2c68e',1,'cy_stc_capsense_ofrt_context_t']]], - ['hwconfig',['hwConfig',['../structcy__stc__capsense__bist__context__t.html#a9bbdef6eb05a232f7086011dbea72715',1,'cy_stc_capsense_bist_context_t']]], - ['hwconfigstate',['hwConfigState',['../structcy__stc__capsense__internal__context__t.html#ae3fb1a265c11df1cab525e6ba7149110',1,'cy_stc_capsense_internal_context_t']]], - ['hysteresis',['hysteresis',['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a958e9740d154803f7fbf750862d8713c',1,'cy_stc_capsense_smartsense_update_thresholds_t::hysteresis()'],['../structcy__stc__capsense__widget__context__t.html#aa68dc0f3bc6719620eb8b98b0b8c9e43',1,'cy_stc_capsense_widget_context_t::hysteresis()']]], - ['hysteresisval',['hysteresisVal',['../structcy__stc__capsense__widget__crc__data__t.html#aed1891221adb2937e8de946ef4b2d02d',1,'cy_stc_capsense_widget_crc_data_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_8.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_8.html deleted file mode 100644 index 11e27cdb44..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_8.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_8.js deleted file mode 100644 index ee82f0bc95..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_8.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['id',['id',['../structcy__stc__capsense__position__t.html#ab5fb803657d04c35adc32a2685905e67',1,'cy_stc_capsense_position_t']]], - ['idaccomp',['idacComp',['../structcy__stc__capsense__sensor__context__t.html#a242877120ccdac585a0f001736fe7be2',1,'cy_stc_capsense_sensor_context_t::idacComp()'],['../structcy__stc__capsense__auto__tune__config__t.html#a7c937fca893ce53a81dd29d5541c2b75',1,'cy_stc_capsense_auto_tune_config_t::iDacComp()']]], - ['idacgain',['iDacGain',['../structcy__stc__capsense__auto__tune__config__t.html#aaa6b7ff2794e44d8f333ecf6048dd6f6',1,'cy_stc_capsense_auto_tune_config_t']]], - ['idacgainindex',['idacGainIndex',['../structcy__stc__capsense__widget__context__t.html#aca335177119844084a40aab5a8e4022e',1,'cy_stc_capsense_widget_context_t::idacGainIndex()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#a60c9a9e518194f83bd0bba955066474f',1,'cy_stc_capsense_bist_custom_parameters_t::idacGainIndex()']]], - ['idacgainindexval',['idacGainIndexVal',['../structcy__stc__capsense__widget__crc__data__t.html#a16b1ee33055b4f7d5c1d9c6ff0cdade2',1,'cy_stc_capsense_widget_crc_data_t']]], - ['idacgaintable',['idacGainTable',['../structcy__stc__capsense__common__config__t.html#aa420b265a50ab175b9a0902bcc3a0b08',1,'cy_stc_capsense_common_config_t']]], - ['idacmod',['iDacMod',['../structcy__stc__capsense__auto__tune__config__t.html#adbec8688c917a7a25a7cc4b14b1e49ed',1,'cy_stc_capsense_auto_tune_config_t::iDacMod()'],['../structcy__stc__capsense__widget__context__t.html#a0af701de0ec391286d2df0ba67299b9d',1,'cy_stc_capsense_widget_context_t::idacMod()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#ada4f2a1109cc40af7ad1455e67252153',1,'cy_stc_capsense_bist_custom_parameters_t::idacMod()']]], - ['idacmodval',['idacModVal',['../structcy__stc__capsense__widget__crc__data__t.html#a7377454579441d2f33c2d96b458e5bba',1,'cy_stc_capsense_widget_crc_data_t']]], - ['iircoeff',['iirCoeff',['../structcy__stc__capsense__widget__config__t.html#a3837d9686917c0fdfc96cadb261dbc03',1,'cy_stc_capsense_widget_config_t']]], - ['initdone',['initDone',['../structcy__stc__capsense__common__context__t.html#a0181ebd06d8e03e3b18ac5c08ca14742',1,'cy_stc_capsense_common_context_t']]], - ['intrcsdinactsnsconn',['intrCsdInactSnsConn',['../structcy__stc__capsense__internal__context__t.html#ac5af80cd4336ff0a3ca1e4b3a94c2343',1,'cy_stc_capsense_internal_context_t']]], - ['intrcsdrawtarget',['intrCsdRawTarget',['../structcy__stc__capsense__internal__context__t.html#a3e4d3c24280c56169f481c91db5928e7',1,'cy_stc_capsense_internal_context_t']]], - ['intrcsxinactsnsconn',['intrCsxInactSnsConn',['../structcy__stc__capsense__internal__context__t.html#a1b23217340d393196be42de9c458aec8',1,'cy_stc_capsense_internal_context_t']]], - ['intrcsxrawtarget',['intrCsxRawTarget',['../structcy__stc__capsense__internal__context__t.html#aa567c9166072174f081d982b47246c47',1,'cy_stc_capsense_internal_context_t']]], - ['intreltdcapcsdisc',['intrEltdCapCsdISC',['../structcy__stc__capsense__bist__context__t.html#ac61c103d20cb691984135ab15b7c7a24',1,'cy_stc_capsense_bist_context_t']]], - ['intreltdcapcsxisc',['intrEltdCapCsxISC',['../structcy__stc__capsense__bist__context__t.html#a5f7f79777ce7fb2bcd270d1001a7f932',1,'cy_stc_capsense_bist_context_t']]], - ['intreltdcapshieldisc',['intrEltdCapShieldISC',['../structcy__stc__capsense__bist__context__t.html#af75d6d1eea62a6f89d6d812cd6488252',1,'cy_stc_capsense_bist_context_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_9.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_9.html deleted file mode 100644 index f8abbbe590..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_9.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_9.js deleted file mode 100644 index b03891a5e6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_9.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['kref0',['kRef0',['../structcy__stc__capsense__hw__smartsense__config__t.html#ac994abd06182304e0f7b719d6227045c',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['kref1',['kRef1',['../structcy__stc__capsense__hw__smartsense__config__t.html#aaa311c6f97cd552002d089d0cbee73c8',1,'cy_stc_capsense_hw_smartsense_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_a.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_a.html deleted file mode 100644 index 9601fcee13..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_a.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_a.js deleted file mode 100644 index 8d42d9981e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_a.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['low_2dlevel_20functions',['Low-level Functions',['../group__group__capsense__low__level.html',1,'']]], - ['largemovth',['largeMovTh',['../structcy__stc__capsense__adaptive__filter__config__t.html#a61cd3ed526985b0b9d6c2a8a10e15c45',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['lfsrbits',['lfsrBits',['../structcy__stc__capsense__widget__context__t.html#a722806ceec62995188beb928c08fa6f2',1,'cy_stc_capsense_widget_context_t::lfsrBits()'],['../structcy__stc__capsense__widget__crc__data__t.html#acb3c7a99f4ee1d0d3fbeda0b4b213f7e',1,'cy_stc_capsense_widget_crc_data_t::lfsrBits()']]], - ['lfsrditherlimit',['lfsrDitherLimit',['../structcy__stc__capsense__widget__config__t.html#a445ca73990cf5d8d7eabf37dd3411267',1,'cy_stc_capsense_widget_config_t']]], - ['lfsrpoly',['lfsrPoly',['../structcy__stc__capsense__common__context__t.html#a6de81bf892d8f25e7cd5ea1428d9a2c9',1,'cy_stc_capsense_common_context_t']]], - ['lfsrscale',['lfsrScale',['../structcy__stc__capsense__common__context__t.html#a971f5a3a5454addde057e0f9179e77e8',1,'cy_stc_capsense_common_context_t']]], - ['linksmap',['linksMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a7046ab5dc8799356f0cc4730c855ed4a',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['littlemovth',['littleMovTh',['../structcy__stc__capsense__adaptive__filter__config__t.html#abee594ea7f9a29ee29651de847e43f86',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['lowbslnrst',['lowBslnRst',['../structcy__stc__capsense__widget__context__t.html#abcf89959f49d28d2d396d8beaae05710',1,'cy_stc_capsense_widget_context_t']]], - ['lowbslnrstval',['lowBslnRstVal',['../structcy__stc__capsense__widget__crc__data__t.html#a1b9cf99918a603703887386a91037fcb',1,'cy_stc_capsense_widget_crc_data_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_b.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_b.html deleted file mode 100644 index 0814e4e03d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_b.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_b.js deleted file mode 100644 index 45b08c0f0f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_b.js +++ /dev/null @@ -1,22 +0,0 @@ -var searchData= -[ - ['macros',['Macros',['../group__group__capsense__macros.html',1,'']]], - ['miscellaneous_20macros',['Miscellaneous Macros',['../group__group__capsense__macros__miscellaneous.html',1,'']]], - ['middleware_20state_20macros',['Middleware State Macros',['../group__group__capsense__macros__mw__state.html',1,'']]], - ['mapsensemethod',['mapSenseMethod',['../structcy__stc__capsense__internal__context__t.html#a399b90e9f0e47a18b2fa5ea534490669',1,'cy_stc_capsense_internal_context_t']]], - ['markindicesmap',['markIndicesMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a895f5397bf9d29ad2c0cbd4fadb111fe',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['masterchannelid',['masterChannelId',['../structcy__stc__capsense__common__config__t.html#a83193308eed26797a1ea8c9316a1614a',1,'cy_stc_capsense_common_config_t']]], - ['maxk',['maxK',['../structcy__stc__capsense__adaptive__filter__config__t.html#a917e444f748280dc2e325f062600e878',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['maxrawcount',['maxRawCount',['../structcy__stc__capsense__widget__context__t.html#a5bacc4b698a7982c3fb687a22b9e3287',1,'cy_stc_capsense_widget_context_t']]], - ['maxrawcountrow',['maxRawCountRow',['../structcy__stc__capsense__widget__context__t.html#a8539aedfd64eb185aa738e8f7db03547',1,'cy_stc_capsense_widget_context_t']]], - ['mfschannelindex',['mfsChannelIndex',['../structcy__stc__active__scan__sns__t.html#abb24deb10dc9b5f7e654cdcd0916938b',1,'cy_stc_active_scan_sns_t']]], - ['mfsconfig',['mfsConfig',['../structcy__stc__capsense__widget__config__t.html#aa3e4f9fe91ed0dd44f74246ea10ad98e',1,'cy_stc_capsense_widget_config_t']]], - ['mink',['minK',['../structcy__stc__capsense__adaptive__filter__config__t.html#a8202d5f56b17bd01a1957a05bea2f489',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['minsmap',['minsMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a4478e1addf6cd6f858c74a742a76f79f',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['modclk',['modClk',['../structcy__stc__capsense__bist__custom__parameters__t.html#aafb50e8ce6fad46c3a8b0224ce1714b6',1,'cy_stc_capsense_bist_custom_parameters_t::modClk()'],['../structcy__stc__capsense__common__context__t.html#a5468b6895f747291aeb4225a66ff2ccd',1,'cy_stc_capsense_common_context_t::modClk()']]], - ['modclock',['modClock',['../structcy__stc__capsense__hw__smartsense__config__t.html#a79876e7ae4c8fd5941ba81d55f5dbcf1',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['modcsdclk',['modCsdClk',['../structcy__stc__capsense__common__context__t.html#a867653a126683191970d79f8b6005926',1,'cy_stc_capsense_common_context_t']]], - ['modcsxclk',['modCsxClk',['../structcy__stc__capsense__common__context__t.html#a7284658d282945e1ed7f624683677829',1,'cy_stc_capsense_common_context_t']]], - ['mptxen',['mptxEn',['../structcy__stc__capsense__common__config__t.html#a2232960a59428e457f1e8a6157aa76af',1,'cy_stc_capsense_common_config_t']]], - ['mptxorder',['mptxOrder',['../structcy__stc__capsense__widget__config__t.html#a4e01e290b3e719d1511464cc166466e9',1,'cy_stc_capsense_widget_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_c.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_c.html deleted file mode 100644 index da08c387a3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_c.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_c.js deleted file mode 100644 index 310dbfe31b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_c.js +++ /dev/null @@ -1,35 +0,0 @@ -var searchData= -[ - ['negbslnrstcnt',['negBslnRstCnt',['../structcy__stc__capsense__sensor__context__t.html#a0dfea7d7b4a9b3858a203a54df8bc3fc',1,'cy_stc_capsense_sensor_context_t']]], - ['newactiveidsmask',['newActiveIdsMask',['../structcy__stc__capsense__csx__touch__buffer__t.html#a9267df7cd343b44ee9dddfdf64a4e210',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['newpeak',['newPeak',['../structcy__stc__capsense__csx__touch__buffer__t.html#a8ede0076f02b01e43bdf7d01a90e5d8b',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['newpeaknumber',['newPeakNumber',['../structcy__stc__capsense__csx__touch__buffer__t.html#a497b8e96e84f765fc258f34f071aa999',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['nnoiseth',['nNoiseTh',['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a0e03cc2b5dcfb072e46e2d4a6afb2ef6',1,'cy_stc_capsense_smartsense_update_thresholds_t::nNoiseTh()'],['../structcy__stc__capsense__widget__context__t.html#adc6e85b229b16fe88fed03b576f213cd',1,'cy_stc_capsense_widget_context_t::nNoiseTh()']]], - ['nnoisethval',['nNoiseThVal',['../structcy__stc__capsense__widget__crc__data__t.html#a3673f2332d36b3f3ed60dfcd46f88e6a',1,'cy_stc_capsense_widget_crc_data_t']]], - ['noiseth',['noiseTh',['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a6278afa4506e0f81410444bc8bd4ef6e',1,'cy_stc_capsense_smartsense_update_thresholds_t::noiseTh()'],['../structcy__stc__capsense__widget__context__t.html#abc7ea702d95e07827cb3f8b6d97aed8d',1,'cy_stc_capsense_widget_context_t::noiseTh()']]], - ['noisethval',['noiseThVal',['../structcy__stc__capsense__widget__crc__data__t.html#a8e0385e6387e58cdedfb31ea60628420',1,'cy_stc_capsense_widget_crc_data_t']]], - ['nomovth',['noMovTh',['../structcy__stc__capsense__adaptive__filter__config__t.html#ab838a235c299b6d9ea57bd3fc41568d8',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['nsub0',['nSub0',['../structcy__stc__capsense__hw__smartsense__config__t.html#a560e8916b9705aadf8e40ada836d20b1',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['nsub1',['nSub1',['../structcy__stc__capsense__hw__smartsense__config__t.html#a2a98613f09584619d05d12e233f6b7db',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['numbadscans',['numBadScans',['../structcy__stc__capsense__common__config__t.html#ab8710c21be1223cfc8b6caf158bd50ff',1,'cy_stc_capsense_common_config_t']]], - ['numchannels',['numChannels',['../structcy__stc__capsense__common__config__t.html#a192101f96101897abb7ab8a0767532ad',1,'cy_stc_capsense_common_config_t']]], - ['numchips',['numChips',['../structcy__stc__capsense__common__config__t.html#a20803ca9cbfacbfe4c29e604e4b2721f',1,'cy_stc_capsense_common_config_t']]], - ['numchopcycles',['numChopCycles',['../structcy__stc__capsense__widget__config__t.html#a4b355886a6abacc4fa1aa77423d092e6',1,'cy_stc_capsense_widget_config_t']]], - ['numcoarseinitchargecycles',['numCoarseInitChargeCycles',['../structcy__stc__capsense__common__config__t.html#aca02d6ad7d90825996c9c07a1c7e5656',1,'cy_stc_capsense_common_config_t::numCoarseInitChargeCycles()'],['../structcy__stc__capsense__internal__context__t.html#a8039192ef3f4f1c6b01788d8a5aeb460',1,'cy_stc_capsense_internal_context_t::numCoarseInitChargeCycles()']]], - ['numcoarseinitsettlecycles',['numCoarseInitSettleCycles',['../structcy__stc__capsense__common__config__t.html#a3b5b13d1df8ccf3ee3cda514b76a1e2c',1,'cy_stc_capsense_common_config_t::numCoarseInitSettleCycles()'],['../structcy__stc__capsense__internal__context__t.html#a950bbe3fc6f914895044e6dd83833340',1,'cy_stc_capsense_internal_context_t::numCoarseInitSettleCycles()']]], - ['numcols',['numCols',['../structcy__stc__capsense__widget__config__t.html#af281dfdef5176c9db5e88cf162686ad4',1,'cy_stc_capsense_widget_config_t']]], - ['numepicycles',['numEpiCycles',['../structcy__stc__capsense__common__config__t.html#a2f0d703959ecf591d93fead29797ef0b',1,'cy_stc_capsense_common_config_t::numEpiCycles()'],['../structcy__stc__capsense__internal__context__t.html#afb832cb1027389199a0a623eac3af95a',1,'cy_stc_capsense_internal_context_t::numEpiCycles()']]], - ['numfineinitcycles',['numFineInitCycles',['../structcy__stc__capsense__common__context__t.html#a77232b6c0e10717e7ae1af4353a03bcd',1,'cy_stc_capsense_common_context_t']]], - ['numfineinitwaitcycles',['numFineInitWaitCycles',['../structcy__stc__capsense__internal__context__t.html#a00823e55b0473a93b8fd46048472bcd9',1,'cy_stc_capsense_internal_context_t::numFineInitWaitCycles()'],['../structcy__stc__capsense__common__context__t.html#acbfaf0d277487c7b7d4c29373a0c1c28',1,'cy_stc_capsense_common_context_t::numFineInitWaitCycles()']]], - ['numpin',['numPin',['../structcy__stc__capsense__common__config__t.html#af1b66d5becece2209af864547ac16c65',1,'cy_stc_capsense_common_config_t']]], - ['numpins',['numPins',['../structcy__stc__capsense__electrode__config__t.html#a2ff8c3a5d8d8bd2fe260cf353064f54e',1,'cy_stc_capsense_electrode_config_t']]], - ['numposition',['numPosition',['../structcy__stc__capsense__gesture__context__t.html#a5f96cbd3fde2fc2007499bdfc5e8ad59',1,'cy_stc_capsense_gesture_context_t::numPosition()'],['../structcy__stc__capsense__touch__t.html#a06915bc608b7177c425659ab61d38513',1,'cy_stc_capsense_touch_t::numPosition()']]], - ['numpositionlast',['numPositionLast',['../structcy__stc__capsense__gesture__context__t.html#adfc86db072daa3b309979efb5768456d',1,'cy_stc_capsense_gesture_context_t']]], - ['numprooffsetcycles',['numProOffsetCycles',['../structcy__stc__capsense__common__config__t.html#a4bf21a13ce2b0961682f6c4a27e2cab8',1,'cy_stc_capsense_common_config_t::numProOffsetCycles()'],['../structcy__stc__capsense__internal__context__t.html#a979ee649383bb985c7d1c153cccf80af',1,'cy_stc_capsense_internal_context_t::numProOffsetCycles()']]], - ['numrows',['numRows',['../structcy__stc__capsense__widget__config__t.html#a93e1fecbb0649d67dee102b1ef2cd1b8',1,'cy_stc_capsense_widget_config_t']]], - ['numsensemethod',['numSenseMethod',['../structcy__stc__capsense__internal__context__t.html#a97d29c46669cb5004cdb5d468a8bee61',1,'cy_stc_capsense_internal_context_t']]], - ['numslots',['numSlots',['../structcy__stc__capsense__widget__config__t.html#a474207c2ce55e017800877298895cf53',1,'cy_stc_capsense_widget_config_t::numSlots()'],['../structcy__stc__capsense__common__config__t.html#a9f6966abfdbf32eee5caa1ab8f69dc04',1,'cy_stc_capsense_common_config_t::numSlots()']]], - ['numsns',['numSns',['../structcy__stc__capsense__widget__config__t.html#ae61718f5e9f507beaff5d105e03659a0',1,'cy_stc_capsense_widget_config_t::numSns()'],['../structcy__stc__capsense__common__config__t.html#a21d3bc1dab9651fed220ebdfead85453',1,'cy_stc_capsense_common_config_t::numSns()']]], - ['numsubconversions',['numSubConversions',['../structcy__stc__capsense__widget__context__t.html#a722c7050783603a3796dc6e3ea6ed994',1,'cy_stc_capsense_widget_context_t']]], - ['numwd',['numWd',['../structcy__stc__capsense__common__config__t.html#a4b2745560f410d1a0dc70797aeec3fab',1,'cy_stc_capsense_common_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_d.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_d.html deleted file mode 100644 index 9986c9cbf7..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_d.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_d.js deleted file mode 100644 index 7c4eb46b20..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_d.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['ofcdcontext',['ofcdContext',['../structcy__stc__capsense__gesture__context__t.html#ab916aaccb1b24a8dc5eee9385d0d2041',1,'cy_stc_capsense_gesture_context_t']]], - ['ofdccontext',['ofdcContext',['../structcy__stc__capsense__gesture__context__t.html#a41504e9edd68b6aab487492c95b6a059',1,'cy_stc_capsense_gesture_context_t']]], - ['ofescontext',['ofesContext',['../structcy__stc__capsense__gesture__context__t.html#a34feed1bf649ef82f09da51745d0514e',1,'cy_stc_capsense_gesture_context_t']]], - ['offlcontext',['offlContext',['../structcy__stc__capsense__gesture__context__t.html#a7a6f0b99bddc8e18cfea0fedb39e00b8',1,'cy_stc_capsense_gesture_context_t']]], - ['ofrtcontext',['ofrtContext',['../structcy__stc__capsense__gesture__context__t.html#a48dfae93de6b33ba60cdd10f8292e590',1,'cy_stc_capsense_gesture_context_t']]], - ['ofsccontext',['ofscContext',['../structcy__stc__capsense__gesture__context__t.html#a72755d5985247fd60078900d1482ddfc',1,'cy_stc_capsense_gesture_context_t']]], - ['ofslcontext',['ofslContext',['../structcy__stc__capsense__gesture__context__t.html#a7f7257503a55d3790ab222a6ac280a85',1,'cy_stc_capsense_gesture_context_t']]], - ['oldactiveidsmask',['oldActiveIdsMask',['../structcy__stc__capsense__csx__touch__history__t.html#a673eaa945ec772627c954df63b42a89e',1,'cy_stc_capsense_csx_touch_history_t']]], - ['oldpeak',['oldPeak',['../structcy__stc__capsense__csx__touch__history__t.html#a9cd73499eb9138949da6bd8812a654d1',1,'cy_stc_capsense_csx_touch_history_t']]], - ['oldpeaknumber',['oldPeakNumber',['../structcy__stc__capsense__csx__touch__history__t.html#aad62c7d9b921294d3caff02bcca10734',1,'cy_stc_capsense_csx_touch_history_t']]], - ['oldtimestamp',['oldTimestamp',['../structcy__stc__capsense__ballistic__context__t.html#a38d8589f93a3bc5fa8fb53e5076d6da6',1,'cy_stc_capsense_ballistic_context_t']]], - ['oldtouchnumber',['oldTouchNumber',['../structcy__stc__capsense__ballistic__context__t.html#a74a898f524e561622e4fb8d5b302fa77',1,'cy_stc_capsense_ballistic_context_t']]], - ['ondebounce',['onDebounce',['../structcy__stc__capsense__widget__context__t.html#a594bf2fb432dbeaa9b23545a9ff3d55a',1,'cy_stc_capsense_widget_context_t']]], - ['ondebounceval',['onDebounceVal',['../structcy__stc__capsense__widget__crc__data__t.html#a656e5777ec25c6e3a3b5b64ba54fc4dc',1,'cy_stc_capsense_widget_crc_data_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_e.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_e.html deleted file mode 100644 index 9fa42bbace..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_e.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_e.js deleted file mode 100644 index 3510fcf560..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_e.js +++ /dev/null @@ -1,102 +0,0 @@ -var searchData= -[ - ['pin_2drelated_20macros',['Pin-related Macros',['../group__group__capsense__macros__pin.html',1,'']]], - ['processing_20macros',['Processing Macros',['../group__group__capsense__macros__process.html',1,'']]], - ['padnumber',['padNumber',['../structcy__stc__capsense__pin__config__t.html#a6b042ec5a99e78c058418213b60621f5',1,'cy_stc_capsense_pin_config_t']]], - ['param0',['param0',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a05b74489afc68fe873e70519784f8763',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param1',['param1',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#aa946864ff892df81a594e217ceba1d55',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param2',['param2',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#abd13d4d25441135f993b97aa47e2c230',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param3',['param3',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a366c60ce71fcb0fce32659a16fa09e45',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param4',['param4',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a836e0975942aa929fabd0e74a8628e33',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param5',['param5',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#aa10ef391278327840a384056d062ae41',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param6',['param6',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a45d5c40b50ac10537e35b7e55dcc88f4',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['pcptr',['pcPtr',['../structcy__stc__capsense__pin__config__t.html#a6e73d425b113f359b2d0911e44b36e62',1,'cy_stc_capsense_pin_config_t']]], - ['penultimateth',['penultimateTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#a72dadc2970371bea639b29a91a7f4ff5',1,'cy_stc_capsense_advanced_centroid_config_t::penultimateTh()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#a990aa2b11b9bf7779a3de1eff80ded85',1,'cy_stc_capsense_advanced_touchpad_config_t::penultimateTh()']]], - ['periclkhz',['periClkHz',['../structcy__stc__capsense__common__config__t.html#a885d6f703d5687e6585b929f61265f9c',1,'cy_stc_capsense_common_config_t']]], - ['peridividerindex',['periDividerIndex',['../structcy__stc__capsense__common__config__t.html#af4c7933702ebe6de8d7a51ead347f8dc',1,'cy_stc_capsense_common_config_t']]], - ['peridividertype',['periDividerType',['../structcy__stc__capsense__common__config__t.html#ab1171e77b08743ec9cb1a0751f3a8a24',1,'cy_stc_capsense_common_config_t']]], - ['pincinta',['pinCintA',['../structcy__stc__capsense__common__config__t.html#a511bdf3dac96f6d21a99570a0d631a18',1,'cy_stc_capsense_common_config_t']]], - ['pincintb',['pinCintB',['../structcy__stc__capsense__common__config__t.html#ae19eb70caeeb497808e72757c4dc4d97',1,'cy_stc_capsense_common_config_t']]], - ['pincmod',['pinCmod',['../structcy__stc__capsense__common__config__t.html#a552e76fb483b1aef4e079c6a08343622',1,'cy_stc_capsense_common_config_t']]], - ['pincmod1',['pinCmod1',['../structcy__stc__msc__channel__config__t.html#ae838d730d95428e14496890968eabd09',1,'cy_stc_msc_channel_config_t']]], - ['pincmod2',['pinCmod2',['../structcy__stc__msc__channel__config__t.html#a606d05fcbddc870daab3dc5d0e7b4f5c',1,'cy_stc_msc_channel_config_t']]], - ['pincmodpad',['pinCmodPad',['../structcy__stc__capsense__common__config__t.html#a5115d84073d7d01cb4885798dcd8e0eb',1,'cy_stc_capsense_common_config_t']]], - ['pincsh',['pinCsh',['../structcy__stc__capsense__common__config__t.html#a1894d1621d3d0b85dcecb541580086b2',1,'cy_stc_capsense_common_config_t']]], - ['pincshpad',['pinCshPad',['../structcy__stc__capsense__common__config__t.html#affacfb2ff9e57a616462f673603d2da9',1,'cy_stc_capsense_common_config_t']]], - ['pinnumber',['pinNumber',['../structcy__stc__capsense__pin__config__t.html#a87a0da3c8c5c9f372c4bbfbdbf3498d7',1,'cy_stc_capsense_pin_config_t']]], - ['pinshieldpad',['pinShieldPad',['../structcy__stc__capsense__common__config__t.html#a408b1a89c4eb3f5aec4a24ba2d9942d2',1,'cy_stc_capsense_common_config_t']]], - ['pinvrefextpad',['pinVrefExtPad',['../structcy__stc__capsense__common__config__t.html#aff2a6b86b567e1b1c7328dae74aa4c0d',1,'cy_stc_capsense_common_config_t']]], - ['portcinta',['portCintA',['../structcy__stc__capsense__common__config__t.html#a325bae184f92fdb4eface75f45491a0a',1,'cy_stc_capsense_common_config_t']]], - ['portcintb',['portCintB',['../structcy__stc__capsense__common__config__t.html#ae8e8c568ea38fc8fde93b2dadc5e83f9',1,'cy_stc_capsense_common_config_t']]], - ['portcmod',['portCmod',['../structcy__stc__capsense__common__config__t.html#ab76476aba113baea0f471f559a36a99c',1,'cy_stc_capsense_common_config_t']]], - ['portcmod1',['portCmod1',['../structcy__stc__msc__channel__config__t.html#acaed92f654157ab395ea312cf85ce0af',1,'cy_stc_msc_channel_config_t']]], - ['portcmod2',['portCmod2',['../structcy__stc__msc__channel__config__t.html#a5c874221db44d7f08ca2e659c4025e7d',1,'cy_stc_msc_channel_config_t']]], - ['portcmodnum',['portCmodNum',['../structcy__stc__capsense__common__config__t.html#ae11a796b0265b7de228505259d4b8a98',1,'cy_stc_capsense_common_config_t']]], - ['portcmodpadnum',['portCmodPadNum',['../structcy__stc__capsense__common__config__t.html#a4176f5f4c3a0674e8db380c1cd53b077',1,'cy_stc_capsense_common_config_t']]], - ['portcsh',['portCsh',['../structcy__stc__capsense__common__config__t.html#ab8b3fc9607ea9d6a5902e69f6fa555eb',1,'cy_stc_capsense_common_config_t']]], - ['portcshnum',['portCshNum',['../structcy__stc__capsense__common__config__t.html#a72dcc792179198a2c8a7a92b38c5af15',1,'cy_stc_capsense_common_config_t']]], - ['portcshpadnum',['portCshPadNum',['../structcy__stc__capsense__common__config__t.html#a6f12b37bfb79c92ac49be9d9a10e1c85',1,'cy_stc_capsense_common_config_t']]], - ['portshieldpadnum',['portShieldPadNum',['../structcy__stc__capsense__common__config__t.html#a0757058df63bf046d385f86f141235f2',1,'cy_stc_capsense_common_config_t']]], - ['portvrefextpadnum',['portVrefExtPadNum',['../structcy__stc__capsense__common__config__t.html#acd41888daad97f1aa24dfbca213431a6',1,'cy_stc_capsense_common_config_t']]], - ['posfilterconfig',['posFilterConfig',['../structcy__stc__capsense__widget__config__t.html#a477c8db37f2ff589fa1967272d1f5260',1,'cy_stc_capsense_widget_config_t']]], - ['position1',['position1',['../structcy__stc__capsense__gesture__context__t.html#a35b0182d531b19cf23e454b49ce332bd',1,'cy_stc_capsense_gesture_context_t']]], - ['position2',['position2',['../structcy__stc__capsense__gesture__context__t.html#a57ddd934f52502d73624fd05c643fe01',1,'cy_stc_capsense_gesture_context_t']]], - ['positionfilteren',['positionFilterEn',['../structcy__stc__capsense__common__config__t.html#a0ff07b677d89662e56814ba7ef8d550f',1,'cy_stc_capsense_common_config_t']]], - ['positionlast1',['positionLast1',['../structcy__stc__capsense__gesture__context__t.html#aa9ca0fa15854876acb6836093813d18f',1,'cy_stc_capsense_gesture_context_t']]], - ['positionlast2',['positionLast2',['../structcy__stc__capsense__gesture__context__t.html#a41e2cc14c3e6e152afe249821d218619',1,'cy_stc_capsense_gesture_context_t']]], - ['prooffsetcdaccomp',['proOffsetCdacComp',['../structcy__stc__capsense__common__config__t.html#ac54e06d38473566cafcf6e7a735eafe4',1,'cy_stc_capsense_common_config_t::proOffsetCdacComp()'],['../structcy__stc__capsense__internal__context__t.html#a3b896d96a2684a887210bae5de46bfa8',1,'cy_stc_capsense_internal_context_t::proOffsetCdacComp()']]], - ['proxth',['proxTh',['../structcy__stc__capsense__widget__context__t.html#ac28a8ad287f401bde36886e1995ebd5d',1,'cy_stc_capsense_widget_context_t']]], - ['proxthval',['proxThVal',['../structcy__stc__capsense__widget__crc__data__t.html#ae33b026cd3a82c07e0dcdc80723b0e77',1,'cy_stc_capsense_widget_crc_data_t']]], - ['proxtouchcoeff',['proxTouchCoeff',['../structcy__stc__capsense__common__config__t.html#af700535efc4ea5d745cad94153d1d9a6',1,'cy_stc_capsense_common_config_t']]], - ['ptractivescansns',['ptrActiveScanSns',['../structcy__stc__capsense__context__t.html#a2719dc3e059d012106c5f4476faec66d',1,'cy_stc_capsense_context_t']]], - ['ptrballisticcontext',['ptrBallisticContext',['../structcy__stc__capsense__widget__config__t.html#ad510b796c693e08b4f4b8bf8f76c3fb5',1,'cy_stc_capsense_widget_config_t']]], - ['ptrbaseframecontext',['ptrBaseFrameContext',['../structcy__stc__capsense__context__t.html#a638028282143ad3653b80671da17da72',1,'cy_stc_capsense_context_t']]], - ['ptrbistcontext',['ptrBistContext',['../structcy__stc__capsense__context__t.html#a92125bdfe35272f254fcc58d857670ce',1,'cy_stc_capsense_context_t']]], - ['ptrbslninv',['ptrBslnInv',['../structcy__stc__capsense__widget__config__t.html#aa246164662305a0152b2736f56b67e5a',1,'cy_stc_capsense_widget_config_t']]], - ['ptrchshieldcap',['ptrChShieldCap',['../structcy__stc__capsense__bist__context__t.html#a613da7b7df71cbc3d2405eaf4d4df3e9',1,'cy_stc_capsense_bist_context_t']]], - ['ptrcommonconfig',['ptrCommonConfig',['../structcy__stc__capsense__context__t.html#a7e55b9983341848b270166d72d9b50ac',1,'cy_stc_capsense_context_t']]], - ['ptrcommoncontext',['ptrCommonContext',['../structcy__stc__capsense__context__t.html#a2f4f7d25d0816cf7fe6f04103c4d647e',1,'cy_stc_capsense_context_t']]], - ['ptrcsdbase',['ptrCsdBase',['../structcy__stc__capsense__common__config__t.html#a314b8ab78e6a189daeb4d150d3f51512',1,'cy_stc_capsense_common_config_t']]], - ['ptrcsdcontext',['ptrCsdContext',['../structcy__stc__capsense__common__config__t.html#a633cc2ca6a5528f5a82074e889287b1c',1,'cy_stc_capsense_common_config_t']]], - ['ptrcsdtouchbuffer',['ptrCsdTouchBuffer',['../structcy__stc__capsense__widget__config__t.html#a8da5973b3062723df1b1ebf6b7f5bd86',1,'cy_stc_capsense_widget_config_t']]], - ['ptrcsxtouchbuffer',['ptrCsxTouchBuffer',['../structcy__stc__capsense__widget__config__t.html#a35afcfaedb37e24127fa5642bab59b45',1,'cy_stc_capsense_widget_config_t']]], - ['ptrcsxtouchhistory',['ptrCsxTouchHistory',['../structcy__stc__capsense__widget__config__t.html#ac662c2d9016717ff89a9fd8c26c97c02',1,'cy_stc_capsense_widget_config_t']]], - ['ptrdebouncearr',['ptrDebounceArr',['../structcy__stc__capsense__widget__config__t.html#aa353e792734db1ff3873175bb8e832b9',1,'cy_stc_capsense_widget_config_t']]], - ['ptrdiplextable',['ptrDiplexTable',['../structcy__stc__capsense__widget__config__t.html#a6224ab7605e28404d786633b2c1c1f6b',1,'cy_stc_capsense_widget_config_t']]], - ['ptrdmacbase',['ptrDmacBase',['../structcy__stc__capsense__common__config__t.html#aee1c6dd599cbc74658de7bdb4cf8290a',1,'cy_stc_capsense_common_config_t']]], - ['ptrdmardchsnscfgaddr',['ptrDmaRdChSnsCfgAddr',['../structcy__stc__capsense__common__config__t.html#a2281327eb63df5b14de55bec05f2bf42',1,'cy_stc_capsense_common_config_t']]], - ['ptrdmawrchsnscfgaddr',['ptrDmaWrChSnsCfgAddr',['../structcy__stc__capsense__common__config__t.html#a43213bf328f0802f801aacfe4364b6af',1,'cy_stc_capsense_common_config_t']]], - ['ptreltdcapacitance',['ptrEltdCapacitance',['../structcy__stc__capsense__widget__config__t.html#aeb69ac183634b05ecb92ab57e1b8feb9',1,'cy_stc_capsense_widget_config_t']]], - ['ptreltdconfig',['ptrEltdConfig',['../structcy__stc__capsense__widget__config__t.html#a88a5166ff86cf001344434b0bb84d799',1,'cy_stc_capsense_widget_config_t::ptrEltdConfig()'],['../structcy__stc__active__scan__sns__t.html#abc6f5af6f05f765faaca0aa5f4d9da40',1,'cy_stc_active_scan_sns_t::ptrEltdConfig()']]], - ['ptreodsinitcallback',['ptrEODsInitCallback',['../structcy__stc__capsense__internal__context__t.html#afb45bb27c6e9ad4f0dc543e3ef55f688',1,'cy_stc_capsense_internal_context_t']]], - ['ptreoscallback',['ptrEOSCallback',['../structcy__stc__capsense__internal__context__t.html#afc29de83d66b588443581455aaf5c2de',1,'cy_stc_capsense_internal_context_t']]], - ['ptrgestureconfig',['ptrGestureConfig',['../structcy__stc__capsense__widget__config__t.html#a0f4c0e442a86b761a8a00cd76ecc83b5',1,'cy_stc_capsense_widget_config_t']]], - ['ptrgesturecontext',['ptrGestureContext',['../structcy__stc__capsense__widget__config__t.html#ad60be1a14aded108976eb2d66daac7f1',1,'cy_stc_capsense_widget_config_t']]], - ['ptrinternalcontext',['ptrInternalContext',['../structcy__stc__capsense__context__t.html#a9b84076b589b363d35097eb12420fd4b',1,'cy_stc_capsense_context_t']]], - ['ptrisrcallback',['ptrISRCallback',['../structcy__stc__capsense__internal__context__t.html#a686901c142a968b7e0cc0299839fefef',1,'cy_stc_capsense_internal_context_t']]], - ['ptrmptxtable',['ptrMptxTable',['../structcy__stc__capsense__widget__config__t.html#ab41fcb29baa28b2e59b25c2fb30f9e9c',1,'cy_stc_capsense_widget_config_t']]], - ['ptrmscbase',['ptrMscBase',['../structcy__stc__msc__channel__config__t.html#a387172bfd70280a49f0fac22a1dec27a',1,'cy_stc_msc_channel_config_t']]], - ['ptrmscchconfig',['ptrMscChConfig',['../structcy__stc__capsense__common__config__t.html#ae5f422b32a1f49b3a3331f8705f90a08',1,'cy_stc_capsense_common_config_t']]], - ['ptrmsccontext',['ptrMscContext',['../structcy__stc__msc__channel__config__t.html#a905adbf5a145e25b55c922f39bcd66ed',1,'cy_stc_msc_channel_config_t']]], - ['ptrnoiseenvelope',['ptrNoiseEnvelope',['../structcy__stc__capsense__widget__config__t.html#a8cbf228dd4ae8a901c911c162c70b30a',1,'cy_stc_capsense_widget_config_t']]], - ['ptrpin',['ptrPin',['../structcy__stc__capsense__electrode__config__t.html#a2cdfd659151f2fc6d9e0f49aaa2058f7',1,'cy_stc_capsense_electrode_config_t']]], - ['ptrpinconfig',['ptrPinConfig',['../structcy__stc__capsense__context__t.html#a9f676c61d0088ba82b3d7adaea8459e0',1,'cy_stc_capsense_context_t']]], - ['ptrposfilterhistory',['ptrPosFilterHistory',['../structcy__stc__capsense__widget__config__t.html#a6136eead3f476c9c0d1d3fa1dfd8c189',1,'cy_stc_capsense_widget_config_t']]], - ['ptrposition',['ptrPosition',['../structcy__stc__capsense__touch__t.html#a41f4181caf21c8cc60825a4c88a952c6',1,'cy_stc_capsense_touch_t']]], - ['ptrrawfilterhistory',['ptrRawFilterHistory',['../structcy__stc__capsense__widget__config__t.html#a3b1c56df207169c04a05b7fa8833b0fc',1,'cy_stc_capsense_widget_config_t']]], - ['ptrrawfilterhistorylow',['ptrRawFilterHistoryLow',['../structcy__stc__capsense__widget__config__t.html#a9c3303699258fdb9e0a1c51ac8542370',1,'cy_stc_capsense_widget_config_t']]], - ['ptrrxconfig',['ptrRxConfig',['../structcy__stc__active__scan__sns__t.html#ada5061a0a2b46e3bff3553d98644c041',1,'cy_stc_active_scan_sns_t']]], - ['ptrscanslots',['ptrScanSlots',['../structcy__stc__capsense__context__t.html#a701dc256c0227c806b5907061625ab43',1,'cy_stc_capsense_context_t']]], - ['ptrsenseclk',['ptrSenseClk',['../structcy__stc__capsense__auto__tune__config__t.html#ad6aa32b14c98f74107b4230446e35fed',1,'cy_stc_capsense_auto_tune_config_t']]], - ['ptrsensorframecontext',['ptrSensorFrameContext',['../structcy__stc__capsense__context__t.html#aac6608bbe9e738a5de77a047ecace2f1',1,'cy_stc_capsense_context_t']]], - ['ptrshieldpinconfig',['ptrShieldPinConfig',['../structcy__stc__capsense__context__t.html#a2a2bab67c44107594f5c43c785b0cb2e',1,'cy_stc_capsense_context_t']]], - ['ptrsnscapacitance',['ptrSnsCapacitance',['../structcy__stc__capsense__widget__config__t.html#a872610c19b274d4daa48c9d29990f7cc',1,'cy_stc_capsense_widget_config_t']]], - ['ptrsnscontext',['ptrSnsContext',['../structcy__stc__capsense__widget__config__t.html#aace32d41062b136d802d346231967ad5',1,'cy_stc_capsense_widget_config_t::ptrSnsContext()'],['../structcy__stc__active__scan__sns__t.html#aeb8898be429a7205311694ac340b0d2e',1,'cy_stc_active_scan_sns_t::ptrSnsContext()']]], - ['ptrsscallback',['ptrSSCallback',['../structcy__stc__capsense__internal__context__t.html#a616c1452d2ed85c13614910d63a9a513',1,'cy_stc_capsense_internal_context_t']]], - ['ptrtunerreceivecallback',['ptrTunerReceiveCallback',['../structcy__stc__capsense__internal__context__t.html#a84250135c81d689ac1d977faafb37f49',1,'cy_stc_capsense_internal_context_t']]], - ['ptrtunersendcallback',['ptrTunerSendCallback',['../structcy__stc__capsense__internal__context__t.html#a76c03a3f16ce28d70d2cfe61a6fcb459',1,'cy_stc_capsense_internal_context_t']]], - ['ptrtxconfig',['ptrTxConfig',['../structcy__stc__active__scan__sns__t.html#a9cceebad50f0ca6d92bbfc2408d2c21a',1,'cy_stc_active_scan_sns_t']]], - ['ptrwdconfig',['ptrWdConfig',['../structcy__stc__active__scan__sns__t.html#ab57fc4e1bdf74350bf3c6a701ad3c56a',1,'cy_stc_active_scan_sns_t::ptrWdConfig()'],['../structcy__stc__capsense__context__t.html#a9b12863ecde08d94f68285a852e6f69b',1,'cy_stc_capsense_context_t::ptrWdConfig()']]], - ['ptrwdcontext',['ptrWdContext',['../structcy__stc__capsense__widget__config__t.html#adb558f384dcfa5fe3701f6c377b94da3',1,'cy_stc_capsense_widget_config_t::ptrWdContext()'],['../structcy__stc__active__scan__sns__t.html#a81beffc93033c90901da1f8debfbd59c',1,'cy_stc_active_scan_sns_t::ptrWdContext()'],['../structcy__stc__capsense__context__t.html#a1686259414950156dca1818d0db45922',1,'cy_stc_capsense_context_t::ptrWdContext()']]], - ['ptrwdgtcrc',['ptrWdgtCrc',['../structcy__stc__capsense__bist__context__t.html#af1dcb8fad4599fa893c49f69abac5724',1,'cy_stc_capsense_bist_context_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_f.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_f.html deleted file mode 100644 index 6ecfc0ed83..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_f.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_f.js deleted file mode 100644 index 0ad4def863..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/all_f.js +++ /dev/null @@ -1,44 +0,0 @@ -var searchData= -[ - ['raw',['raw',['../structcy__stc__capsense__hw__smartsense__config__t.html#a1bd2b732a41c3fc740cc0ec395e7da69',1,'cy_stc_capsense_hw_smartsense_config_t::raw()'],['../structcy__stc__capsense__sensor__context__t.html#a54bbaaded1ac1a6857ce84a996224ccc',1,'cy_stc_capsense_sensor_context_t::raw()']]], - ['rawfilterconfig',['rawFilterConfig',['../structcy__stc__capsense__widget__config__t.html#a67d55b8afd94b5ff3de3587a4241c628',1,'cy_stc_capsense_widget_config_t']]], - ['refcdac',['refCdac',['../structcy__stc__capsense__hw__smartsense__config__t.html#a8112761c4d7f4e5b9b9ff988013a5b7c',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['regambuf',['regAmbuf',['../structcy__stc__capsense__bist__context__t.html#ae8f8770f51182beb960139917bceb6e3',1,'cy_stc_capsense_bist_context_t']]], - ['regambufshield',['regAmbufShield',['../structcy__stc__capsense__bist__context__t.html#a2ab8cac868956282420db3b54a7e0978',1,'cy_stc_capsense_bist_context_t']]], - ['regconfig',['regConfig',['../structcy__stc__capsense__bist__context__t.html#ae5f47666b04bc546cc716cd77c00446b',1,'cy_stc_capsense_bist_context_t']]], - ['regconfigshield',['regConfigShield',['../structcy__stc__capsense__bist__context__t.html#a1ab075dfb6504435139ec6b7bf68a42b',1,'cy_stc_capsense_bist_context_t']]], - ['reghscmpscan',['regHscmpScan',['../structcy__stc__capsense__bist__context__t.html#ac44249ae8e20f8dfb19e42566fad97d0',1,'cy_stc_capsense_bist_context_t']]], - ['reghscmpscanshield',['regHscmpScanShield',['../structcy__stc__capsense__bist__context__t.html#ad6fcce2910023a51b7f479a62d0b12ce',1,'cy_stc_capsense_bist_context_t']]], - ['regiosel',['regIoSel',['../structcy__stc__capsense__bist__context__t.html#aad9f6bc6d2d8f7e2e9843a0013c43f55',1,'cy_stc_capsense_bist_context_t']]], - ['regioselshield',['regIoSelShield',['../structcy__stc__capsense__bist__context__t.html#a20a4beb0abe24168be77ad9072590b57',1,'cy_stc_capsense_bist_context_t']]], - ['regswamuxbufsel',['regSwAmuxbufSel',['../structcy__stc__capsense__bist__context__t.html#a8e0f79069bf4362e97a1fb82d0166bb6',1,'cy_stc_capsense_bist_context_t']]], - ['regswamuxbufselshield',['regSwAmuxbufSelShield',['../structcy__stc__capsense__bist__context__t.html#a82f8b8b8d650377c292bd35b4188f070',1,'cy_stc_capsense_bist_context_t']]], - ['regswbypsel',['regSwBypSel',['../structcy__stc__capsense__bist__context__t.html#a3aeb8661cd85b1aa2f266cee60be0240',1,'cy_stc_capsense_bist_context_t']]], - ['regswbypselshield',['regSwBypSelShield',['../structcy__stc__capsense__bist__context__t.html#a68ebea3b267bf015d1e9e9802693a1c7',1,'cy_stc_capsense_bist_context_t']]], - ['regswdsisel',['regSwDsiSel',['../structcy__stc__capsense__bist__context__t.html#ac8babb76107f68ffc3b92736fb5f3a72',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselcmodinit',['regSwHsPSelCmodInit',['../structcy__stc__capsense__bist__context__t.html#a8e341ec1a291ce5bc030fcf60610fca9',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselctankinit',['regSwHsPSelCtankInit',['../structcy__stc__capsense__bist__context__t.html#a338ca675ef90b7fdb80ab9a95eba5f8d',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselscan',['regSwHsPSelScan',['../structcy__stc__capsense__bist__context__t.html#ae9b8e85cb52436b653b5e7d1fb1e5133',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselscanshield',['regSwHsPSelScanShield',['../structcy__stc__capsense__bist__context__t.html#a25926bffe9b5af767f6db69988b7a506',1,'cy_stc_capsense_bist_context_t']]], - ['regswrefgensel',['regSwRefgenSel',['../structcy__stc__capsense__bist__context__t.html#a8d0e2a3ef5a233e8da6471eedd227f08',1,'cy_stc_capsense_bist_context_t']]], - ['regswresinit',['regSwResInit',['../structcy__stc__capsense__bist__context__t.html#a20d613bddf0e9ea1dcb6196a579ce414',1,'cy_stc_capsense_bist_context_t']]], - ['regswresscan',['regSwResScan',['../structcy__stc__capsense__bist__context__t.html#ade86e6ef5b7e98386370aa2c567ee60e',1,'cy_stc_capsense_bist_context_t']]], - ['regswshieldselscan',['regSwShieldSelScan',['../structcy__stc__capsense__bist__context__t.html#af8eeec145da8af1555e3bea62c8a2b6a',1,'cy_stc_capsense_bist_context_t']]], - ['regswshieldselscanshield',['regSwShieldSelScanShield',['../structcy__stc__capsense__bist__context__t.html#ac1503ac45a53e4be199d38ed77fee26f',1,'cy_stc_capsense_bist_context_t']]], - ['reserved0',['reserved0',['../structcy__stc__capsense__adaptive__filter__config__t.html#aeac367c4efeec355b75e991a523dfba1',1,'cy_stc_capsense_adaptive_filter_config_t::reserved0()'],['../structcy__stc__capsense__ballistic__config__t.html#af99a6dbf493de76f2c44a7e001075cd8',1,'cy_stc_capsense_ballistic_config_t::reserved0()'],['../structcy__stc__capsense__ballistic__context__t.html#aaf3e7d3b18b2ecf51031b644db4292a3',1,'cy_stc_capsense_ballistic_context_t::reserved0()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#a76405d828e3531855ab1ae70668d76a6',1,'cy_stc_capsense_advanced_touchpad_config_t::reserved0()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#a1891b4360a526d25c2b6d2966fdba5be',1,'cy_stc_capsense_bist_custom_parameters_t::reserved0()']]], - ['reserved1',['reserved1',['../structcy__stc__capsense__adaptive__filter__config__t.html#a7b4b8bb5ec1ed763d04cea68627b33f8',1,'cy_stc_capsense_adaptive_filter_config_t::reserved1()'],['../structcy__stc__capsense__ballistic__config__t.html#a69d7a152771429f807f0fb2e3e34998b',1,'cy_stc_capsense_ballistic_config_t::reserved1()'],['../structcy__stc__capsense__ballistic__context__t.html#accd9ff41ad610ac269d04e3065af52c2',1,'cy_stc_capsense_ballistic_context_t::reserved1()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#a64845aacc58c2a1007eace4832b5a362',1,'cy_stc_capsense_advanced_touchpad_config_t::reserved1()']]], - ['reserved2',['reserved2',['../structcy__stc__capsense__ballistic__config__t.html#a51724cd248eff5076374e145950157d7',1,'cy_stc_capsense_ballistic_config_t::reserved2()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#ab3ff0d6932c836ccb0b0e005578ef00c',1,'cy_stc_capsense_advanced_touchpad_config_t::reserved2()']]], - ['resolution',['resolution',['../structcy__stc__capsense__widget__context__t.html#a68e0c56527b8e16513c149bfc5adb623',1,'cy_stc_capsense_widget_context_t']]], - ['resolutionval',['resolutionVal',['../structcy__stc__capsense__widget__crc__data__t.html#a74ffdaa191f9c9bd3d17ff3170200bac',1,'cy_stc_capsense_widget_crc_data_t']]], - ['resolutionx',['resolutionX',['../structcy__stc__capsense__gesture__config__t.html#abcdafc8f4ecbb01e2202dee3ed252364',1,'cy_stc_capsense_gesture_config_t::resolutionX()'],['../structcy__stc__capsense__advanced__centroid__config__t.html#af68f4b04172c275b6be6e12768dc7991',1,'cy_stc_capsense_advanced_centroid_config_t::resolutionX()']]], - ['resolutiony',['resolutionY',['../structcy__stc__capsense__gesture__config__t.html#ac418cd1cf76d0dcfe90232450954eb82',1,'cy_stc_capsense_gesture_config_t::resolutionY()'],['../structcy__stc__capsense__advanced__centroid__config__t.html#a41e2b2272353ff198fca4fbe4397d9bd',1,'cy_stc_capsense_advanced_centroid_config_t::resolutionY()']]], - ['rotatedebounce',['rotateDebounce',['../structcy__stc__capsense__gesture__config__t.html#aeebc2692f6432fa15394678fb0278a9b',1,'cy_stc_capsense_gesture_config_t']]], - ['rotatedistancemin',['rotateDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#adf604320c16786aa9e89b5f02f02a643',1,'cy_stc_capsense_gesture_config_t']]], - ['rowcdacref',['rowCdacRef',['../structcy__stc__capsense__widget__context__t.html#a86df00e59d6d922a0e229694d24f7288',1,'cy_stc_capsense_widget_context_t::rowCdacRef()'],['../structcy__stc__capsense__widget__crc__data__t.html#ac77f44aed58de14a95c07a817211ee67',1,'cy_stc_capsense_widget_crc_data_t::rowCdacRef()']]], - ['rowidacmod',['rowIdacMod',['../structcy__stc__capsense__widget__context__t.html#aa420c590b3aaccc2ba2666b5a75390f7',1,'cy_stc_capsense_widget_context_t']]], - ['rowidacmodval',['rowIdacModVal',['../structcy__stc__capsense__widget__crc__data__t.html#a0959fffcf46f6de97e132d4246767b96',1,'cy_stc_capsense_widget_crc_data_t']]], - ['rowmap',['rowMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a2235820c150af3e6594730e9031066de',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['rowsnsclk',['rowSnsClk',['../structcy__stc__capsense__widget__context__t.html#a2dd4e90d01407e1c2a0ed33f637e3b4f',1,'cy_stc_capsense_widget_context_t']]], - ['rowsnsclkval',['rowSnsClkVal',['../structcy__stc__capsense__widget__crc__data__t.html#af9f145585e1986461ae4ba26927bbe3c',1,'cy_stc_capsense_widget_crc_data_t']]], - ['rxindex',['rxIndex',['../structcy__stc__active__scan__sns__t.html#a35dbb63147b6c493bed49f7bdfc7819d',1,'cy_stc_active_scan_sns_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/classes_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/classes_0.html deleted file mode 100644 index 1c3e406ac8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/classes_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/classes_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/classes_0.js deleted file mode 100644 index 7602c8ea3c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/classes_0.js +++ /dev/null @@ -1,49 +0,0 @@ -var searchData= -[ - ['cy_5fstc_5factive_5fscan_5fsns_5ft',['cy_stc_active_scan_sns_t',['../structcy__stc__active__scan__sns__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fadaptive_5ffilter_5fconfig_5ft',['cy_stc_capsense_adaptive_filter_config_t',['../structcy__stc__capsense__adaptive__filter__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fadvanced_5fcentroid_5fconfig_5ft',['cy_stc_capsense_advanced_centroid_config_t',['../structcy__stc__capsense__advanced__centroid__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fadvanced_5ftouchpad_5fconfig_5ft',['cy_stc_capsense_advanced_touchpad_config_t',['../structcy__stc__capsense__advanced__touchpad__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5falp_5ffltr_5fchannel_5ft',['cy_stc_capsense_alp_fltr_channel_t',['../structcy__stc__capsense__alp__fltr__channel__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5falp_5ffltr_5fconfig_5ft',['cy_stc_capsense_alp_fltr_config_t',['../structcy__stc__capsense__alp__fltr__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fauto_5ftune_5fconfig_5ft',['cy_stc_capsense_auto_tune_config_t',['../structcy__stc__capsense__auto__tune__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fballistic_5fconfig_5ft',['cy_stc_capsense_ballistic_config_t',['../structcy__stc__capsense__ballistic__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fballistic_5fcontext_5ft',['cy_stc_capsense_ballistic_context_t',['../structcy__stc__capsense__ballistic__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fballistic_5fdelta_5ft',['cy_stc_capsense_ballistic_delta_t',['../structcy__stc__capsense__ballistic__delta__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fbist_5fcontext_5ft',['cy_stc_capsense_bist_context_t',['../structcy__stc__capsense__bist__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fbist_5fcustom_5fparameters_5ft',['cy_stc_capsense_bist_custom_parameters_t',['../structcy__stc__capsense__bist__custom__parameters__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcommon_5fconfig_5ft',['cy_stc_capsense_common_config_t',['../structcy__stc__capsense__common__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcommon_5fcontext_5ft',['cy_stc_capsense_common_context_t',['../structcy__stc__capsense__common__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcontext_5ft',['cy_stc_capsense_context_t',['../structcy__stc__capsense__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcsx_5ftouch_5fbuffer_5ft',['cy_stc_capsense_csx_touch_buffer_t',['../structcy__stc__capsense__csx__touch__buffer__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fcsx_5ftouch_5fhistory_5ft',['cy_stc_capsense_csx_touch_history_t',['../structcy__stc__capsense__csx__touch__history__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5felectrode_5fconfig_5ft',['cy_stc_capsense_electrode_config_t',['../structcy__stc__capsense__electrode__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fgesture_5fconfig_5ft',['cy_stc_capsense_gesture_config_t',['../structcy__stc__capsense__gesture__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fgesture_5fcontext_5ft',['cy_stc_capsense_gesture_context_t',['../structcy__stc__capsense__gesture__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fgesture_5fposition_5ft',['cy_stc_capsense_gesture_position_t',['../structcy__stc__capsense__gesture__position__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fhw_5fsmartsense_5fconfig_5ft',['cy_stc_capsense_hw_smartsense_config_t',['../structcy__stc__capsense__hw__smartsense__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fidac_5fgain_5ftable_5ft',['cy_stc_capsense_idac_gain_table_t',['../structcy__stc__capsense__idac__gain__table__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5finternal_5fcontext_5ft',['cy_stc_capsense_internal_context_t',['../structcy__stc__capsense__internal__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fmptx_5ftable_5ft',['cy_stc_capsense_mptx_table_t',['../structcy__stc__capsense__mptx__table__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofcd_5fcontext_5ft',['cy_stc_capsense_ofcd_context_t',['../structcy__stc__capsense__ofcd__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofdc_5fcontext_5ft',['cy_stc_capsense_ofdc_context_t',['../structcy__stc__capsense__ofdc__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofes_5fcontext_5ft',['cy_stc_capsense_ofes_context_t',['../structcy__stc__capsense__ofes__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5foffl_5fcontext_5ft',['cy_stc_capsense_offl_context_t',['../structcy__stc__capsense__offl__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofrt_5fcontext_5ft',['cy_stc_capsense_ofrt_context_t',['../structcy__stc__capsense__ofrt__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofsc_5fcontext_5ft',['cy_stc_capsense_ofsc_context_t',['../structcy__stc__capsense__ofsc__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fofsl_5fcontext_5ft',['cy_stc_capsense_ofsl_context_t',['../structcy__stc__capsense__ofsl__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fpin_5fconfig_5ft',['cy_stc_capsense_pin_config_t',['../structcy__stc__capsense__pin__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fposition_5ft',['cy_stc_capsense_position_t',['../structcy__stc__capsense__position__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fscan_5fslot_5ft',['cy_stc_capsense_scan_slot_t',['../structcy__stc__capsense__scan__slot__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fsensor_5fcontext_5ft',['cy_stc_capsense_sensor_context_t',['../structcy__stc__capsense__sensor__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fsmartsense_5fcsd_5fnoise_5fenvelope_5ft',['cy_stc_capsense_smartsense_csd_noise_envelope_t',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fsmartsense_5fupdate_5fthresholds_5ft',['cy_stc_capsense_smartsense_update_thresholds_t',['../structcy__stc__capsense__smartsense__update__thresholds__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftfsc_5fcontext_5ft',['cy_stc_capsense_tfsc_context_t',['../structcy__stc__capsense__tfsc__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftfsl_5fcontext_5ft',['cy_stc_capsense_tfsl_context_t',['../structcy__stc__capsense__tfsl__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftfzm_5fcontext_5ft',['cy_stc_capsense_tfzm_context_t',['../structcy__stc__capsense__tfzm__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5ftouch_5ft',['cy_stc_capsense_touch_t',['../structcy__stc__capsense__touch__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fwidget_5fconfig_5ft',['cy_stc_capsense_widget_config_t',['../structcy__stc__capsense__widget__config__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fwidget_5fcontext_5ft',['cy_stc_capsense_widget_context_t',['../structcy__stc__capsense__widget__context__t.html',1,'']]], - ['cy_5fstc_5fcapsense_5fwidget_5fcrc_5fdata_5ft',['cy_stc_capsense_widget_crc_data_t',['../structcy__stc__capsense__widget__crc__data__t.html',1,'']]], - ['cy_5fstc_5fmsc_5fchannel_5fconfig_5ft',['cy_stc_msc_channel_config_t',['../structcy__stc__msc__channel__config__t.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/close.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/close.png deleted file mode 100644 index 9342d3dfee..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/close.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enums_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enums_0.html deleted file mode 100644 index ee343ac0bb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enums_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enums_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enums_0.js deleted file mode 100644 index 00c7336462..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enums_0.js +++ /dev/null @@ -1,15 +0,0 @@ -var searchData= -[ - ['cy_5fen_5fcapsense_5fbist_5fexternal_5fcap_5fid_5ft',['cy_en_capsense_bist_external_cap_id_t',['../group__group__capsense__enums.html#ga07f6f8cbe8fa1cebb08e2bd44e9de29b',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fen_5fcapsense_5fbist_5fhw_5fconfig_5ft',['cy_en_capsense_bist_hw_config_t',['../group__group__capsense__enums.html#ga8f12924cdfe09cc22def0407e512c60b',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fbist_5fio_5fstate_5ft',['cy_en_capsense_bist_io_state_t',['../group__group__capsense__enums.html#ga0e370bf700c29e03461030db2779ceec',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fbist_5fstatus_5ft',['cy_en_capsense_bist_status_t',['../group__group__capsense__enums.html#gafbe67572b1e6a637676b0a6e1040857c',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fcallback_5fevent_5ft',['cy_en_capsense_callback_event_t',['../group__group__capsense__enums.html#gabfbff81b8b80d4ee1a1d53c1fe0c9a11',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fcap_5fconnection_5ft',['cy_en_capsense_cap_connection_t',['../group__group__capsense__enums.html#gac15b3ea1caa3c42666ba5e50cabb416f',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5feltd_5ft',['cy_en_capsense_eltd_t',['../group__group__capsense__enums.html#ga8d3df6022888bbb21e3e64e2b045274d',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fmsc_5fraw_5fmode_5ft',['cy_en_capsense_msc_raw_mode_t',['../group__group__capsense__enums.html#ga2f401fe83daac81512b02b33fc967f57',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5freturn_5fstatus_5ft',['cy_en_capsense_return_status_t',['../group__group__capsense__enums.html#gaa96ebe173a9a3ec24f7461f696482b11',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5ftuner_5fcmd_5ft',['cy_en_capsense_tuner_cmd_t',['../group__group__capsense__enums.html#ga049118d05a2bdf4f2d37d7b75c511f79',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5ftuner_5fstate_5ft',['cy_en_capsense_tuner_state_t',['../group__group__capsense__enums.html#gaadb1f5ee70c7d52a5375cdae765093dc',1,'cy_capsense_structure.h']]], - ['cy_5fen_5fcapsense_5fwidget_5ftype_5ft',['cy_en_capsense_widget_type_t',['../group__group__capsense__enums.html#ga855d894b24929f0d7d2774dfc4266d60',1,'cy_capsense_structure.h']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enumvalues_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enumvalues_0.html deleted file mode 100644 index 9387b6a373..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enumvalues_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enumvalues_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enumvalues_0.js deleted file mode 100644 index 58509f3aeb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/enumvalues_0.js +++ /dev/null @@ -1,62 +0,0 @@ -var searchData= -[ - ['cy_5fcapsense_5fbad_5fparam_5fe',['CY_CAPSENSE_BAD_PARAM_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11ae2fbf89a3a3b2871d0a0e5e5d3d8c1e3',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fbad_5fconfig_5fe',['CY_CAPSENSE_BIST_BAD_CONFIG_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857cae73550f4b25fe2bb7f8a6504c85dd93c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fbad_5fparam_5fe',['CY_CAPSENSE_BIST_BAD_PARAM_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca66ae37f5dda5bc54f08f39a3c47af841',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fcinta_5fid_5fe',['CY_CAPSENSE_BIST_CINTA_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29bacfe90ee851fdb0c5990cf9c255c2142d',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5fcintb_5fid_5fe',['CY_CAPSENSE_BIST_CINTB_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29ba8d03343ec314140673d8b7034caeacc8',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5fcmod_5fid_5fe',['CY_CAPSENSE_BIST_CMOD_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29baf3745617d4c520ecd77a4b87a8fe8172',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5fcsh_5fid_5fe',['CY_CAPSENSE_BIST_CSH_ID_E',['../group__group__capsense__enums.html#gga07f6f8cbe8fa1cebb08e2bd44e9de29ba86cb63cafed2d806f3a916f9ab51890f',1,'cy_capsense_selftest_v2.h']]], - ['cy_5fcapsense_5fbist_5ferror_5fe',['CY_CAPSENSE_BIST_ERROR_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca8454fc9f2934cdb63ed2a9962b318749',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5ffail_5fe',['CY_CAPSENSE_BIST_FAIL_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca561a9faf24c500cc9990b46117fdcace',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5ffeature_5fdisabled_5fe',['CY_CAPSENSE_BIST_FEATURE_DISABLED_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857caaaa05668fc0be7bfb934a228b0d9410c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhigh_5flimit_5fe',['CY_CAPSENSE_BIST_HIGH_LIMIT_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857cad8c13f3c18b3baae715bf7655356a528',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fbusy_5fe',['CY_CAPSENSE_BIST_HW_BUSY_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca6c651f6e693a610e55047aed09a0ac5f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5feltd_5fcap_5fe',['CY_CAPSENSE_BIST_HW_ELTD_CAP_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bac3f24b124e6502bc91a2a87c8dea3467',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5feltd_5fcap_5fsh_5fe',['CY_CAPSENSE_BIST_HW_ELTD_CAP_SH_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bae8573fab188fc42701a49c742c883086',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fexternal_5fcap_5fe',['CY_CAPSENSE_BIST_HW_EXTERNAL_CAP_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba0cccf8fa84261cb7e4f6836458bad6f8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fshort_5fe',['CY_CAPSENSE_BIST_HW_SHORT_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60bae808fdf59791814d38e48e3d4e3d6cab',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fundefined_5fe',['CY_CAPSENSE_BIST_HW_UNDEFINED_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba6721027a5041a590fb580bbb387468c4',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fhw_5fvdda_5fe',['CY_CAPSENSE_BIST_HW_VDDA_E',['../group__group__capsense__enums.html#gga8f12924cdfe09cc22def0407e512c60ba820f53158bd2e8d1cfb2651079032936',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fhighza_5fe',['CY_CAPSENSE_BIST_IO_HIGHZA_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca7532ce3fd04bc5ae9a9a554367f24e54',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fsense_5fe',['CY_CAPSENSE_BIST_IO_SENSE_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca3f1270ba1326fae64c3df88540c7bb7f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fshield_5fe',['CY_CAPSENSE_BIST_IO_SHIELD_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca15bc3a003e4a77d67be2807aa1b6bdba',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fstrong_5fe',['CY_CAPSENSE_BIST_IO_STRONG_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca4e7f6404fa329f5f8a4e8801a34e8080',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fstrong_5fhigh_5fe',['CY_CAPSENSE_BIST_IO_STRONG_HIGH_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca532cc6485eb0f37cac049f6a268465a6',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fio_5fundefined_5fe',['CY_CAPSENSE_BIST_IO_UNDEFINED_E',['../group__group__capsense__enums.html#gga0e370bf700c29e03461030db2779ceeca1b4ffa3b03cc730480b1ee44be73d09c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5flow_5flimit_5fe',['CY_CAPSENSE_BIST_LOW_LIMIT_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca903bdfd6556833de241df23a903f7b62',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5fsuccess_5fe',['CY_CAPSENSE_BIST_SUCCESS_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca446645c89682b433f4294cc2251217f1',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fbist_5ftimeout_5fe',['CY_CAPSENSE_BIST_TIMEOUT_E',['../group__group__capsense__enums.html#ggafbe67572b1e6a637676b0a6e1040857ca7c3531ff81e35c5a17b9bb6326027710',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fcmodpad_5fe',['CY_CAPSENSE_CMODPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa40e8044b7c69e4bf9cfe872fccec8db2',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fcshieldpad_5fe',['CY_CAPSENSE_CSHIELDPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa4443cabccd1c4ba6e0161421b2e68ef7',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fctankpad_5fe',['CY_CAPSENSE_CTANKPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa818a3440d9895ed39574ccaba909ca02',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5feltd_5ftype_5fmut_5frx_5fe',['CY_CAPSENSE_ELTD_TYPE_MUT_RX_E',['../group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274da4ca96cabafe3a952831e44d17b8dff12',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5feltd_5ftype_5fmut_5ftx_5fe',['CY_CAPSENSE_ELTD_TYPE_MUT_TX_E',['../group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274daf6a726323bc533e487382a42b87f4887',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5feltd_5ftype_5fself_5fe',['CY_CAPSENSE_ELTD_TYPE_SELF_E',['../group__group__capsense__enums.html#gga8d3df6022888bbb21e3e64e2b045274da6b30d1746bc14d69c2fff2005dafcda8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fend_5fof_5fscan_5fe',['CY_CAPSENSE_END_OF_SCAN_E',['../group__group__capsense__enums.html#ggabfbff81b8b80d4ee1a1d53c1fe0c9a11adb60f8a07fdcd4959e1cc682b050ac58',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fhw_5fbusy_5fe',['CY_CAPSENSE_HW_BUSY_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a862eaeca0dacb3f3eb6d3209ed7f9fe1',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fhw_5flocked_5fe',['CY_CAPSENSE_HW_LOCKED_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11abb6a9f4b907a0729c96d87544d6e1c09',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fmsc_5fraw_5foverflow_5fe',['CY_CAPSENSE_MSC_RAW_OVERFLOW_E',['../group__group__capsense__enums.html#gga2f401fe83daac81512b02b33fc967f57ad65e8f38f552e1a10fc39b779fcbe6a2',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fmsc_5fraw_5fsaturate_5fe',['CY_CAPSENSE_MSC_RAW_SATURATE_E',['../group__group__capsense__enums.html#gga2f401fe83daac81512b02b33fc967f57a7f25b1c06cfbe093b6d3c3355a31a19c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fstart_5fsample_5fe',['CY_CAPSENSE_START_SAMPLE_E',['../group__group__capsense__enums.html#ggabfbff81b8b80d4ee1a1d53c1fe0c9a11a32ca7c2ce1843b83c83e7461de88e42f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fsuccess_5fe',['CY_CAPSENSE_SUCCESS_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a3ddd2a0c59c25f817f852c4d899784c3',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftimeout_5fe',['CY_CAPSENSE_TIMEOUT_E',['../group__group__capsense__enums.html#ggaa96ebe173a9a3ec24f7461f696482b11a98e6cd62cd72566bbd7025c1c4d9995c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fnone_5fe',['CY_CAPSENSE_TU_CMD_NONE_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a3fdf6f04116abcaf626fda9269e9dba8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fone_5fscan_5fe',['CY_CAPSENSE_TU_CMD_ONE_SCAN_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a4878ec99a8b651b4a1812af156b4df6d',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fping_5fe',['CY_CAPSENSE_TU_CMD_PING_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a133f8c8b5cdf8f35e298d8cd203d17c5',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5frestart_5fe',['CY_CAPSENSE_TU_CMD_RESTART_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79ab9eb1fff3c78f2eb26b9a33c667e5385',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fresume_5fe',['CY_CAPSENSE_TU_CMD_RESUME_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79ae9746952315a1ef0fc8e294383b37e0f',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5frun_5fsnr_5ftest_5fe',['CY_CAPSENSE_TU_CMD_RUN_SNR_TEST_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a87282482662ce591d86c7767bae8217a',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fsuspend_5fe',['CY_CAPSENSE_TU_CMD_SUSPEND_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a86106715ac1df2c1149a7c9dedb51469',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5fcmd_5fwrite_5fe',['CY_CAPSENSE_TU_CMD_WRITE_E',['../group__group__capsense__enums.html#gga049118d05a2bdf4f2d37d7b75c511f79a0598ab56c52f94b05400c1c4b52243b9',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5ffsm_5fone_5fscan',['CY_CAPSENSE_TU_FSM_ONE_SCAN',['../group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dca8bfd4b992045ded35c5a92a3fd1de30a',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5ffsm_5frunning',['CY_CAPSENSE_TU_FSM_RUNNING',['../group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dca90d0945b863d6c568c124179622abcb8',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftu_5ffsm_5fsuspended',['CY_CAPSENSE_TU_FSM_SUSPENDED',['../group__group__capsense__enums.html#ggaadb1f5ee70c7d52a5375cdae765093dcabd652b762757d2927ff7efc5b61d58ea',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fvrefextpad_5fe',['CY_CAPSENSE_VREFEXTPAD_E',['../group__group__capsense__enums.html#ggac15b3ea1caa3c42666ba5e50cabb416fa420665561af172fd28659e2c7e728df5',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fbutton_5fe',['CY_CAPSENSE_WD_BUTTON_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a12b429b17049aec3da05bba98d86d704',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5flinear_5fslider_5fe',['CY_CAPSENSE_WD_LINEAR_SLIDER_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60ab7ce0cce1660ed385f8f570fce1a89ea',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fmatrix_5fbutton_5fe',['CY_CAPSENSE_WD_MATRIX_BUTTON_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a49a619428a7d70767032000b70d3c5d5',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fproximity_5fe',['CY_CAPSENSE_WD_PROXIMITY_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a840f00e988ee5ed8d1b0ca0a6f91fe2c',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5fradial_5fslider_5fe',['CY_CAPSENSE_WD_RADIAL_SLIDER_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a50cac3d4ee616bbc7e0c9ed9dced309e',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fwd_5ftouchpad_5fe',['CY_CAPSENSE_WD_TOUCHPAD_E',['../group__group__capsense__enums.html#gga855d894b24929f0d7d2774dfc4266d60a71ed340a3d5c1ec96169c5a7d4ee91df',1,'cy_capsense_structure.h']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/functions_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/functions_0.html deleted file mode 100644 index 4e6d87d152..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/functions_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/functions_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/functions_0.js deleted file mode 100644 index 3c21b8e072..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/functions_0.js +++ /dev/null @@ -1,76 +0,0 @@ -var searchData= -[ - ['cy_5fcapsense_5fcalibrateallslots',['Cy_CapSense_CalibrateAllSlots',['../group__group__capsense__low__level.html#ga1130ee418f843fce4e68832efa37e28f',1,'Cy_CapSense_CalibrateAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga1130ee418f843fce4e68832efa37e28f',1,'Cy_CapSense_CalibrateAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fcalibrateallwidgets',['Cy_CapSense_CalibrateAllWidgets',['../group__group__capsense__low__level.html#ga3a30f2e4cdef59eab57f589b0091d937',1,'Cy_CapSense_CalibrateAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#ga3a30f2e4cdef59eab57f589b0091d937',1,'Cy_CapSense_CalibrateAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fcalibratewidget',['Cy_CapSense_CalibrateWidget',['../group__group__capsense__low__level.html#ga889e60b9ca2470b37b37c772558f44ad',1,'Cy_CapSense_CalibrateWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#ga889e60b9ca2470b37b37c772558f44ad',1,'Cy_CapSense_CalibrateWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fcheckcrcwidget',['Cy_CapSense_CheckCRCWidget',['../group__group__capsense__low__level.html#ga8266fcf05ad962580844a2c9c01f2fb8',1,'Cy_CapSense_CheckCRCWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga8266fcf05ad962580844a2c9c01f2fb8',1,'Cy_CapSense_CheckCRCWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fcheckintegritysensorbaseline',['Cy_CapSense_CheckIntegritySensorBaseline',['../group__group__capsense__low__level.html#gab5574b4c085f9cf891457cbf835e6ca1',1,'Cy_CapSense_CheckIntegritySensorBaseline(uint32_t widgetId, uint32_t sensorId, uint16_t baselineHighLimit, uint16_t baselineLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#gab5574b4c085f9cf891457cbf835e6ca1',1,'Cy_CapSense_CheckIntegritySensorBaseline(uint32_t widgetId, uint32_t sensorId, uint16_t baselineHighLimit, uint16_t baselineLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fcheckintegritysensorpins',['Cy_CapSense_CheckIntegritySensorPins',['../group__group__capsense__low__level.html#gadcc9fa570b4c5aa91c66570f5c6f57d4',1,'Cy_CapSense_CheckIntegritySensorPins(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#gadcc9fa570b4c5aa91c66570f5c6f57d4',1,'Cy_CapSense_CheckIntegritySensorPins(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fcheckintegritysensorrawcount',['Cy_CapSense_CheckIntegritySensorRawcount',['../group__group__capsense__low__level.html#ga617c2c407a13538ca6662314402e3f61',1,'Cy_CapSense_CheckIntegritySensorRawcount(uint32_t widgetId, uint32_t sensorId, uint16_t rawcountHighLimit, uint16_t rawcountLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga617c2c407a13538ca6662314402e3f61',1,'Cy_CapSense_CheckIntegritySensorRawcount(uint32_t widgetId, uint32_t sensorId, uint16_t rawcountHighLimit, uint16_t rawcountLowLimit, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fchecktunercmdintegrity',['Cy_CapSense_CheckTunerCmdIntegrity',['../group__group__capsense__high__level.html#ga1f0fdedcec1ad936f5e9e4ae28f17274',1,'Cy_CapSense_CheckTunerCmdIntegrity(const uint8_t *commandPacket): cy_capsense_tuner.c'],['../group__group__capsense__high__level.html#ga1f0fdedcec1ad936f5e9e4ae28f17274',1,'Cy_CapSense_CheckTunerCmdIntegrity(const uint8_t *commandPacket): cy_capsense_tuner.c']]], - ['cy_5fcapsense_5fdecodewidgetgestures',['Cy_CapSense_DecodeWidgetGestures',['../group__group__capsense__high__level.html#ga55fa694191705971b3aa2c29021fb9aa',1,'Cy_CapSense_DecodeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__high__level.html#ga55fa694191705971b3aa2c29021fb9aa',1,'Cy_CapSense_DecodeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5fdeepsleepcallback',['Cy_CapSense_DeepSleepCallback',['../group__group__capsense__high__level.html#ga9c47887109b22521eba45109b7a27f31',1,'Cy_CapSense_DeepSleepCallback(cy_stc_syspm_callback_params_t *callbackParams, cy_en_syspm_callback_mode_t mode): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga9c47887109b22521eba45109b7a27f31',1,'Cy_CapSense_DeepSleepCallback(cy_stc_syspm_callback_params_t *callbackParams, cy_en_syspm_callback_mode_t mode): cy_capsense_control.c']]], - ['cy_5fcapsense_5fdeinit',['Cy_CapSense_DeInit',['../group__group__capsense__high__level.html#ga7b8a365213dde3be6c6932dc23fdcee6',1,'Cy_CapSense_DeInit(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga7b8a365213dde3be6c6932dc23fdcee6',1,'Cy_CapSense_DeInit(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fenable',['Cy_CapSense_Enable',['../group__group__capsense__high__level.html#gade28f1f915ce6b97f13399074a819c0d',1,'Cy_CapSense_Enable(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gade28f1f915ce6b97f13399074a819c0d',1,'Cy_CapSense_Enable(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fgetcrc',['Cy_CapSense_GetCRC',['../group__group__capsense__low__level.html#ga2de812825cd421ee05fec733206e157a',1,'Cy_CapSense_GetCRC(const uint8_t *ptrData, uint32_t len): cy_capsense_structure.c'],['../group__group__capsense__low__level.html#ga2de812825cd421ee05fec733206e157a',1,'Cy_CapSense_GetCRC(const uint8_t *ptrData, uint32_t len): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fgetparam',['Cy_CapSense_GetParam',['../group__group__capsense__low__level.html#gaa89c8ed15cddd778c2232c85300eb02d',1,'Cy_CapSense_GetParam(uint32_t paramId, uint32_t *value, const void *ptrTuner, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__low__level.html#gaa89c8ed15cddd778c2232c85300eb02d',1,'Cy_CapSense_GetParam(uint32_t paramId, uint32_t *value, const void *ptrTuner, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fgettouchinfo',['Cy_CapSense_GetTouchInfo',['../group__group__capsense__high__level.html#ga6192ba34167662ac9573c0a4cd71682f',1,'Cy_CapSense_GetTouchInfo(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga6192ba34167662ac9573c0a4cd71682f',1,'Cy_CapSense_GetTouchInfo(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fincrementgesturetimestamp',['Cy_CapSense_IncrementGestureTimestamp',['../group__group__capsense__high__level.html#ga904eb69e694e4daf45bc778281b39d9e',1,'Cy_CapSense_IncrementGestureTimestamp(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga904eb69e694e4daf45bc778281b39d9e',1,'Cy_CapSense_IncrementGestureTimestamp(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5finit',['Cy_CapSense_Init',['../group__group__capsense__high__level.html#ga19b3aa9e14a04b76188f917c0dc004f5',1,'Cy_CapSense_Init(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga19b3aa9e14a04b76188f917c0dc004f5',1,'Cy_CapSense_Init(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5finitializeallbaselines',['Cy_CapSense_InitializeAllBaselines',['../group__group__capsense__low__level.html#ga55216d9c145b2ab42d7cec23960fb31e',1,'Cy_CapSense_InitializeAllBaselines(cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga55216d9c145b2ab42d7cec23960fb31e',1,'Cy_CapSense_InitializeAllBaselines(cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializeallfilters',['Cy_CapSense_InitializeAllFilters',['../group__group__capsense__low__level.html#ga1fcb002d0216bb96ab818276954606e7',1,'Cy_CapSense_InitializeAllFilters(const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga1fcb002d0216bb96ab818276954606e7',1,'Cy_CapSense_InitializeAllFilters(const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializeallstatuses',['Cy_CapSense_InitializeAllStatuses',['../group__group__capsense__low__level.html#ga91d3ccdc21ed235f4e3b61a0a583c7a1',1,'Cy_CapSense_InitializeAllStatuses(const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga91d3ccdc21ed235f4e3b61a0a583c7a1',1,'Cy_CapSense_InitializeAllStatuses(const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5finitializesensorbaseline',['Cy_CapSense_InitializeSensorBaseline',['../group__group__capsense__low__level.html#ga695fc72a3809224e52c8a0212835d4f7',1,'Cy_CapSense_InitializeSensorBaseline(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga695fc72a3809224e52c8a0212835d4f7',1,'Cy_CapSense_InitializeSensorBaseline(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializewidgetbaseline',['Cy_CapSense_InitializeWidgetBaseline',['../group__group__capsense__low__level.html#gae217c3d40eff007bf28add89814f17d2',1,'Cy_CapSense_InitializeWidgetBaseline(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#gae217c3d40eff007bf28add89814f17d2',1,'Cy_CapSense_InitializeWidgetBaseline(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializewidgetfilter',['Cy_CapSense_InitializeWidgetFilter',['../group__group__capsense__low__level.html#ga101174469c4b6a2df8d44bddb0e33fcf',1,'Cy_CapSense_InitializeWidgetFilter(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga101174469c4b6a2df8d44bddb0e33fcf',1,'Cy_CapSense_InitializeWidgetFilter(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5finitializewidgetgestures',['Cy_CapSense_InitializeWidgetGestures',['../group__group__capsense__low__level.html#ga1a42bc8b8c045d4c4fa3ea9b4411c247',1,'Cy_CapSense_InitializeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga1a42bc8b8c045d4c4fa3ea9b4411c247',1,'Cy_CapSense_InitializeWidgetGestures(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5finitializewidgetstatus',['Cy_CapSense_InitializeWidgetStatus',['../group__group__capsense__low__level.html#ga0cd8087cced318d7a2ddd0aabe5d0b65',1,'Cy_CapSense_InitializeWidgetStatus(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga0cd8087cced318d7a2ddd0aabe5d0b65',1,'Cy_CapSense_InitializeWidgetStatus(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5finterrupthandler',['Cy_CapSense_InterruptHandler',['../group__group__capsense__high__level.html#gaeab57caca852dae59618fbfbcd431c27',1,'Cy_CapSense_InterruptHandler(void *base, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#gaeab57caca852dae59618fbfbcd431c27',1,'Cy_CapSense_InterruptHandler(void *base, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fisanywidgetactive',['Cy_CapSense_IsAnyWidgetActive',['../group__group__capsense__high__level.html#ga036e1061e289e038c3e13df5c8751aed',1,'Cy_CapSense_IsAnyWidgetActive(const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga036e1061e289e038c3e13df5c8751aed',1,'Cy_CapSense_IsAnyWidgetActive(const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fisbusy',['Cy_CapSense_IsBusy',['../group__group__capsense__high__level.html#ga7f8739755bba6b51c274f45b569b9ba0',1,'Cy_CapSense_IsBusy(const cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#ga7f8739755bba6b51c274f45b569b9ba0',1,'Cy_CapSense_IsBusy(const cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fisproximitysensoractive',['Cy_CapSense_IsProximitySensorActive',['../group__group__capsense__high__level.html#ga96509342c580a9c5f6e17bdf8c74e53a',1,'Cy_CapSense_IsProximitySensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga96509342c580a9c5f6e17bdf8c74e53a',1,'Cy_CapSense_IsProximitySensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fissensoractive',['Cy_CapSense_IsSensorActive',['../group__group__capsense__high__level.html#gaeaa2dc78e56e2fc1ec0cc2b265851d69',1,'Cy_CapSense_IsSensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#gaeaa2dc78e56e2fc1ec0cc2b265851d69',1,'Cy_CapSense_IsSensorActive(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fiswidgetactive',['Cy_CapSense_IsWidgetActive',['../group__group__capsense__high__level.html#ga4afba79341aef27afc40054d376d7193',1,'Cy_CapSense_IsWidgetActive(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__high__level.html#ga4afba79341aef27afc40054d376d7193',1,'Cy_CapSense_IsWidgetActive(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fmeasurecapacitancecap',['Cy_CapSense_MeasureCapacitanceCap',['../group__group__capsense__low__level.html#ga80ad1c421ea794bd493bb37e76c48a2b',1,'Cy_CapSense_MeasureCapacitanceCap(cy_en_capsense_bist_external_cap_id_t integrationCapId, uint32_t *ptrValue, uint32_t maxCapacitance, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga80ad1c421ea794bd493bb37e76c48a2b',1,'Cy_CapSense_MeasureCapacitanceCap(cy_en_capsense_bist_external_cap_id_t integrationCapId, uint32_t *ptrValue, uint32_t maxCapacitance, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fmeasurecapacitancesensor',['Cy_CapSense_MeasureCapacitanceSensor',['../group__group__capsense__low__level.html#ga3bf9894c313d4ffce1be841141d6b8e5',1,'Cy_CapSense_MeasureCapacitanceSensor(uint32_t widgetId, uint32_t sensorId, uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c'],['../group__group__capsense__low__level.html#ga3bf9894c313d4ffce1be841141d6b8e5',1,'Cy_CapSense_MeasureCapacitanceSensor(uint32_t widgetId, uint32_t sensorId, uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c']]], - ['cy_5fcapsense_5fmeasurecapacitancesensorelectrode',['Cy_CapSense_MeasureCapacitanceSensorElectrode',['../group__group__capsense__low__level.html#ga23f23f4e684b25788f999851f20aa58c',1,'Cy_CapSense_MeasureCapacitanceSensorElectrode(uint32_t widgetId, uint32_t eltdId, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c'],['../group__group__capsense__low__level.html#ga23f23f4e684b25788f999851f20aa58c',1,'Cy_CapSense_MeasureCapacitanceSensorElectrode(uint32_t widgetId, uint32_t eltdId, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c']]], - ['cy_5fcapsense_5fmeasurecapacitanceshield',['Cy_CapSense_MeasureCapacitanceShield',['../group__group__capsense__low__level.html#gacc9c800180cd40a8ca3e53321d6a249b',1,'Cy_CapSense_MeasureCapacitanceShield(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c'],['../group__group__capsense__low__level.html#gacc9c800180cd40a8ca3e53321d6a249b',1,'Cy_CapSense_MeasureCapacitanceShield(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest_v2.c']]], - ['cy_5fcapsense_5fmeasurecapacitanceshieldelectrode',['Cy_CapSense_MeasureCapacitanceShieldElectrode',['../group__group__capsense__low__level.html#gaff014dbf80fc7824a7e6e3e377d2942f',1,'Cy_CapSense_MeasureCapacitanceShieldElectrode(uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c'],['../group__group__capsense__low__level.html#gaff014dbf80fc7824a7e6e3e377d2942f',1,'Cy_CapSense_MeasureCapacitanceShieldElectrode(uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c']]], - ['cy_5fcapsense_5fmeasurecapacitanceslotsensors',['Cy_CapSense_MeasureCapacitanceSlotSensors',['../group__group__capsense__low__level.html#gadb467c284dc3fea4c7347a25c5ff57df',1,'Cy_CapSense_MeasureCapacitanceSlotSensors(uint32_t slotId, uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c'],['../group__group__capsense__low__level.html#gadb467c284dc3fea4c7347a25c5ff57df',1,'Cy_CapSense_MeasureCapacitanceSlotSensors(uint32_t slotId, uint32_t skipChMask, cy_stc_capsense_context_t *context): cy_capsense_selftest_v3.c']]], - ['cy_5fcapsense_5fmeasurevdda',['Cy_CapSense_MeasureVdda',['../group__group__capsense__low__level.html#ga0214428f5737ef46a2f755620c4e7316',1,'Cy_CapSense_MeasureVdda(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__low__level.html#ga0214428f5737ef46a2f755620c4e7316',1,'Cy_CapSense_MeasureVdda(uint32_t *ptrValue, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fmwstate',['Cy_CapSense_MwState',['../group__group__capsense__high__level.html#ga1530a032b2c5239f7efde29fa23d1793',1,'Cy_CapSense_MwState(const cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__high__level.html#ga1530a032b2c5239f7efde29fa23d1793',1,'Cy_CapSense_MwState(const cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fpreprocesssensor',['Cy_CapSense_PreProcessSensor',['../group__group__capsense__low__level.html#gaf58d5ee3d30799c52819dccecad6730b',1,'Cy_CapSense_PreProcessSensor(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#gaf58d5ee3d30799c52819dccecad6730b',1,'Cy_CapSense_PreProcessSensor(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5fpreprocesswidget',['Cy_CapSense_PreProcessWidget',['../group__group__capsense__low__level.html#gad0772250c35cb3f630a8522b0b156692',1,'Cy_CapSense_PreProcessWidget(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#gad0772250c35cb3f630a8522b0b156692',1,'Cy_CapSense_PreProcessWidget(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5fprocessallwidgets',['Cy_CapSense_ProcessAllWidgets',['../group__group__capsense__high__level.html#ga2a185db228d5cae975fbc92bd3bc6367',1,'Cy_CapSense_ProcessAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga2a185db228d5cae975fbc92bd3bc6367',1,'Cy_CapSense_ProcessAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesssensorext',['Cy_CapSense_ProcessSensorExt',['../group__group__capsense__low__level.html#ga05d3f6e7d7fbef845ab4eb575e653dec',1,'Cy_CapSense_ProcessSensorExt(uint32_t widgetId, uint32_t sensorId, uint32_t mode, const cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__low__level.html#ga05d3f6e7d7fbef845ab4eb575e653dec',1,'Cy_CapSense_ProcessSensorExt(uint32_t widgetId, uint32_t sensorId, uint32_t mode, const cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesswidget',['Cy_CapSense_ProcessWidget',['../group__group__capsense__high__level.html#ga52874ea98333723ec92aef1bb4791a7d',1,'Cy_CapSense_ProcessWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga52874ea98333723ec92aef1bb4791a7d',1,'Cy_CapSense_ProcessWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesswidgetext',['Cy_CapSense_ProcessWidgetExt',['../group__group__capsense__low__level.html#gafbfe743a98bd2c24a623a2c734c03f0e',1,'Cy_CapSense_ProcessWidgetExt(uint32_t widgetId, uint32_t mode, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__low__level.html#gafbfe743a98bd2c24a623a2c734c03f0e',1,'Cy_CapSense_ProcessWidgetExt(uint32_t widgetId, uint32_t mode, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fprocesswidgetmptxdeconvolution',['Cy_CapSense_ProcessWidgetMptxDeconvolution',['../group__group__capsense__low__level.html#ga200f346a4973b003640adad8dfca0748',1,'Cy_CapSense_ProcessWidgetMptxDeconvolution(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga200f346a4973b003640adad8dfca0748',1,'Cy_CapSense_ProcessWidgetMptxDeconvolution(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5fregistercallback',['Cy_CapSense_RegisterCallback',['../group__group__capsense__high__level.html#ga289c4fd495135399a9ad9897920836a7',1,'Cy_CapSense_RegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_capsense_callback_t callbackFunction, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga289c4fd495135399a9ad9897920836a7',1,'Cy_CapSense_RegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_capsense_callback_t callbackFunction, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5frestore',['Cy_CapSense_Restore',['../group__group__capsense__high__level.html#gaf87102783ec511c2e5f2024680112d16',1,'Cy_CapSense_Restore(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gaf87102783ec511c2e5f2024680112d16',1,'Cy_CapSense_Restore(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5frunmfsmedian',['Cy_CapSense_RunMfsMedian',['../group__group__capsense__low__level.html#ga0226119d718185acba8bfb8098682ec7',1,'Cy_CapSense_RunMfsMedian(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c'],['../group__group__capsense__low__level.html#ga0226119d718185acba8bfb8098682ec7',1,'Cy_CapSense_RunMfsMedian(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_processing.c']]], - ['cy_5fcapsense_5frunselftest',['Cy_CapSense_RunSelfTest',['../group__group__capsense__high__level.html#gab1f1514db0566e14ba20fd8647ecb3ad',1,'Cy_CapSense_RunSelfTest(uint32_t testEnMask, cy_stc_capsense_context_t *context): cy_capsense_selftest.c'],['../group__group__capsense__high__level.html#gab1f1514db0566e14ba20fd8647ecb3ad',1,'Cy_CapSense_RunSelfTest(uint32_t testEnMask, cy_stc_capsense_context_t *context): cy_capsense_selftest.c']]], - ['cy_5fcapsense_5fruntuner',['Cy_CapSense_RunTuner',['../group__group__capsense__high__level.html#ga0c613df550388c119fdab4e50341a6b4',1,'Cy_CapSense_RunTuner(cy_stc_capsense_context_t *context): cy_capsense_tuner.c'],['../group__group__capsense__high__level.html#ga0c613df550388c119fdab4e50341a6b4',1,'Cy_CapSense_RunTuner(cy_stc_capsense_context_t *context): cy_capsense_tuner.c']]], - ['cy_5fcapsense_5fsave',['Cy_CapSense_Save',['../group__group__capsense__high__level.html#ga899ef1058ead082503771da68e584b82',1,'Cy_CapSense_Save(cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#ga899ef1058ead082503771da68e584b82',1,'Cy_CapSense_Save(cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fscan',['Cy_CapSense_Scan',['../group__group__capsense__high__level.html#ga6473761292c2696bdea571b8bb10b308',1,'Cy_CapSense_Scan(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__high__level.html#ga6473761292c2696bdea571b8bb10b308',1,'Cy_CapSense_Scan(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fscanabort',['Cy_CapSense_ScanAbort',['../group__group__capsense__low__level.html#ga264c6bafda78c56a0d620a7c88363269',1,'Cy_CapSense_ScanAbort(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga264c6bafda78c56a0d620a7c88363269',1,'Cy_CapSense_ScanAbort(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fscanallslots',['Cy_CapSense_ScanAllSlots',['../group__group__capsense__high__level.html#ga045f3f46ff4e43c4f4dbe087c0156f56',1,'Cy_CapSense_ScanAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__high__level.html#ga045f3f46ff4e43c4f4dbe087c0156f56',1,'Cy_CapSense_ScanAllSlots(cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fscanallwidgets',['Cy_CapSense_ScanAllWidgets',['../group__group__capsense__high__level.html#ga50e6ef42f2834083715abe86d8a85b48',1,'Cy_CapSense_ScanAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#ga50e6ef42f2834083715abe86d8a85b48',1,'Cy_CapSense_ScanAllWidgets(cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fscanext',['Cy_CapSense_ScanExt',['../group__group__capsense__low__level.html#ga31834a3fce1f5b57c72107b419626bab',1,'Cy_CapSense_ScanExt(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__low__level.html#ga31834a3fce1f5b57c72107b419626bab',1,'Cy_CapSense_ScanExt(cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fscansensor',['Cy_CapSense_ScanSensor',['../group__group__capsense__low__level.html#gae3f80b48c2596c149ca0b392a9a3da62',1,'Cy_CapSense_ScanSensor(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#gae3f80b48c2596c149ca0b392a9a3da62',1,'Cy_CapSense_ScanSensor(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fscanslots',['Cy_CapSense_ScanSlots',['../group__group__capsense__high__level.html#gaf10ce0cc817442374d2df04c9d241f9b',1,'Cy_CapSense_ScanSlots(uint32_t startSlotId, uint32_t numberSlots, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__high__level.html#gaf10ce0cc817442374d2df04c9d241f9b',1,'Cy_CapSense_ScanSlots(uint32_t startSlotId, uint32_t numberSlots, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fscanwidget',['Cy_CapSense_ScanWidget',['../group__group__capsense__high__level.html#gad98e953def0673cd879f01a00fb2d01b',1,'Cy_CapSense_ScanWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__high__level.html#gad98e953def0673cd879f01a00fb2d01b',1,'Cy_CapSense_ScanWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fsetcalibrationtargets',['Cy_CapSense_SetCalibrationTargets',['../group__group__capsense__low__level.html#ga2a87df9f6b6810a12465149f451fd64f',1,'Cy_CapSense_SetCalibrationTargets(uint32_t csdCalibrTarget, uint32_t csxCalibrTarget, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga2a87df9f6b6810a12465149f451fd64f',1,'Cy_CapSense_SetCalibrationTargets(uint32_t csdCalibrTarget, uint32_t csxCalibrTarget, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5fsetgesturetimestamp',['Cy_CapSense_SetGestureTimestamp',['../group__group__capsense__high__level.html#gabf0789f59e23077cba0005b1499468f9',1,'Cy_CapSense_SetGestureTimestamp(uint32_t value, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gabf0789f59e23077cba0005b1499468f9',1,'Cy_CapSense_SetGestureTimestamp(uint32_t value, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fsetinactiveelectrodestate',['Cy_CapSense_SetInactiveElectrodeState',['../group__group__capsense__low__level.html#ga760c8b9c8e17b5c9689bf9305a34e393',1,'Cy_CapSense_SetInactiveElectrodeState(uint32_t inactiveState, uint32_t sensingGroup, cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#ga760c8b9c8e17b5c9689bf9305a34e393',1,'Cy_CapSense_SetInactiveElectrodeState(uint32_t inactiveState, uint32_t sensingGroup, cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fsetparam',['Cy_CapSense_SetParam',['../group__group__capsense__low__level.html#ga6049654627a08e866ebe5e93ac414177',1,'Cy_CapSense_SetParam(uint32_t paramId, uint32_t value, void *ptrTuner, cy_stc_capsense_context_t *context): cy_capsense_structure.c'],['../group__group__capsense__low__level.html#ga6049654627a08e866ebe5e93ac414177',1,'Cy_CapSense_SetParam(uint32_t paramId, uint32_t value, void *ptrTuner, cy_stc_capsense_context_t *context): cy_capsense_structure.c']]], - ['cy_5fcapsense_5fsetpinstate',['Cy_CapSense_SetPinState',['../group__group__capsense__low__level.html#gaf51fd91df09631045f83396237395777',1,'Cy_CapSense_SetPinState(uint32_t widgetId, uint32_t sensorElement, uint32_t state, const cy_stc_capsense_context_t *context): cy_capsense_sensing.c'],['../group__group__capsense__low__level.html#gaf51fd91df09631045f83396237395777',1,'Cy_CapSense_SetPinState(uint32_t widgetId, uint32_t sensorElement, uint32_t state, const cy_stc_capsense_context_t *context): cy_capsense_sensing.c']]], - ['cy_5fcapsense_5fsetupwidget',['Cy_CapSense_SetupWidget',['../group__group__capsense__high__level.html#ga9f798069c57bf91f7ce2bc19bb086191',1,'Cy_CapSense_SetupWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__high__level.html#ga9f798069c57bf91f7ce2bc19bb086191',1,'Cy_CapSense_SetupWidget(uint32_t widgetId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fsetupwidgetext',['Cy_CapSense_SetupWidgetExt',['../group__group__capsense__low__level.html#gaf43c0cf61a95f11a5981f82f5b0d4e86',1,'Cy_CapSense_SetupWidgetExt(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c'],['../group__group__capsense__low__level.html#gaf43c0cf61a95f11a5981f82f5b0d4e86',1,'Cy_CapSense_SetupWidgetExt(uint32_t widgetId, uint32_t sensorId, cy_stc_capsense_context_t *context): cy_capsense_sensing_v2.c']]], - ['cy_5fcapsense_5fslotpinstate',['Cy_CapSense_SlotPinState',['../group__group__capsense__low__level.html#ga5d8f778457e13ccfa3f34239aef25f47',1,'Cy_CapSense_SlotPinState(uint32_t slotId, const cy_stc_capsense_electrode_config_t *ptrEltdCfg, uint32_t pinState, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c'],['../group__group__capsense__low__level.html#ga5d8f778457e13ccfa3f34239aef25f47',1,'Cy_CapSense_SlotPinState(uint32_t slotId, const cy_stc_capsense_electrode_config_t *ptrEltdCfg, uint32_t pinState, cy_stc_capsense_context_t *context): cy_capsense_sensing_v3.c']]], - ['cy_5fcapsense_5funregistercallback',['Cy_CapSense_UnRegisterCallback',['../group__group__capsense__high__level.html#gaf43b3cdfce7a3e8c0e5622f42e0a6319',1,'Cy_CapSense_UnRegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gaf43b3cdfce7a3e8c0e5622f42e0a6319',1,'Cy_CapSense_UnRegisterCallback(cy_en_capsense_callback_event_t callbackType, cy_stc_capsense_context_t *context): cy_capsense_control.c']]], - ['cy_5fcapsense_5fupdateallbaselines',['Cy_CapSense_UpdateAllBaselines',['../group__group__capsense__low__level.html#ga76d2e232d2e5247954a15a45de62d235',1,'Cy_CapSense_UpdateAllBaselines(const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga76d2e232d2e5247954a15a45de62d235',1,'Cy_CapSense_UpdateAllBaselines(const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5fupdatesensorbaseline',['Cy_CapSense_UpdateSensorBaseline',['../group__group__capsense__low__level.html#ga4d2ceb23fa0e3731878ad777f39474d2',1,'Cy_CapSense_UpdateSensorBaseline(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga4d2ceb23fa0e3731878ad777f39474d2',1,'Cy_CapSense_UpdateSensorBaseline(uint32_t widgetId, uint32_t sensorId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5fupdatewidgetbaseline',['Cy_CapSense_UpdateWidgetBaseline',['../group__group__capsense__low__level.html#ga53420b198a6de128b82b3edb31f250c6',1,'Cy_CapSense_UpdateWidgetBaseline(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c'],['../group__group__capsense__low__level.html#ga53420b198a6de128b82b3edb31f250c6',1,'Cy_CapSense_UpdateWidgetBaseline(uint32_t widgetId, const cy_stc_capsense_context_t *context): cy_capsense_filter.c']]], - ['cy_5fcapsense_5fwakeup',['Cy_CapSense_Wakeup',['../group__group__capsense__high__level.html#gaf9436a7ec9b18880dbc046e91462710b',1,'Cy_CapSense_Wakeup(const cy_stc_capsense_context_t *context): cy_capsense_control.c'],['../group__group__capsense__high__level.html#gaf9436a7ec9b18880dbc046e91462710b',1,'Cy_CapSense_Wakeup(const cy_stc_capsense_context_t *context): cy_capsense_control.c']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_0.html deleted file mode 100644 index 1ede28dffd..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_0.js deleted file mode 100644 index e458c1bfae..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['built_2din_20self_2dtest_20macros',['Built-in Self-test Macros',['../group__group__capsense__macros__bist.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_1.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_1.html deleted file mode 100644 index 3c05216a38..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_1.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_1.js deleted file mode 100644 index 0cc73348ac..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['callbacks',['Callbacks',['../group__group__capsense__callbacks.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_2.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_2.html deleted file mode 100644 index 7191495454..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_2.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_2.js deleted file mode 100644 index c11cdbcac7..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_2.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['data_20structure',['Data Structure',['../group__group__capsense__data__structure.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_3.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_3.html deleted file mode 100644 index 3af27ea961..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_3.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_3.js deleted file mode 100644 index f666ece58f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_3.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['enumerated_20types',['Enumerated Types',['../group__group__capsense__enums.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_4.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_4.html deleted file mode 100644 index e7abc74957..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_4.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_4.js deleted file mode 100644 index c4107bc6c8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_4.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['gesture_20structures',['Gesture Structures',['../group__group__capsense__gesture__structures.html',1,'']]], - ['general_20macros',['General Macros',['../group__group__capsense__macros__general.html',1,'']]], - ['gesture_20macros',['Gesture Macros',['../group__group__capsense__macros__gesture.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_5.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_5.html deleted file mode 100644 index edc563e36a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_5.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_5.js deleted file mode 100644 index 106afab6f0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_5.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['high_2dlevel_20functions',['High-level Functions',['../group__group__capsense__high__level.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_6.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_6.html deleted file mode 100644 index 176b61a972..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_6.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_6.js deleted file mode 100644 index 4febf19c80..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_6.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['low_2dlevel_20functions',['Low-level Functions',['../group__group__capsense__low__level.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_7.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_7.html deleted file mode 100644 index 0b8fa02fb6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_7.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_7.js deleted file mode 100644 index 9fa4d77a61..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_7.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['macros',['Macros',['../group__group__capsense__macros.html',1,'']]], - ['miscellaneous_20macros',['Miscellaneous Macros',['../group__group__capsense__macros__miscellaneous.html',1,'']]], - ['middleware_20state_20macros',['Middleware State Macros',['../group__group__capsense__macros__mw__state.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_8.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_8.html deleted file mode 100644 index 5bee59288a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_8.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_8.js deleted file mode 100644 index 2f4bd812f6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_8.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['pin_2drelated_20macros',['Pin-related Macros',['../group__group__capsense__macros__pin.html',1,'']]], - ['processing_20macros',['Processing Macros',['../group__group__capsense__macros__process.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_9.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_9.html deleted file mode 100644 index 00d9cb30ef..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_9.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_9.js deleted file mode 100644 index 57bc1cebfb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_9.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['settings_20macros',['Settings Macros',['../group__group__capsense__macros__settings.html',1,'']]], - ['status_20macros',['Status Macros',['../group__group__capsense__macros__status.html',1,'']]], - ['structures',['Structures',['../group__group__capsense__structures.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_a.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_a.html deleted file mode 100644 index 49499304b9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_a.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_a.js deleted file mode 100644 index d666b99e1c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/groups_a.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['touch_2drelated_20macros',['Touch-related Macros',['../group__group__capsense__macros__touch.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/mag_sel.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/mag_sel.png deleted file mode 100644 index 81f6040a20..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/mag_sel.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/nomatches.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/nomatches.html deleted file mode 100644 index b1ded27e9a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/nomatches.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - -
    -
    No Matches
    -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/pages_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/pages_0.html deleted file mode 100644 index 4955b9e4f8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/pages_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/pages_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/pages_0.js deleted file mode 100644 index 66d70ad667..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/pages_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['capsense_26trade_3b_20middleware_20library_203_2e0',['CAPSENSE&trade; Middleware Library 3.0',['../index.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/search.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/search.css deleted file mode 100644 index 3cf9df94a4..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/search.css +++ /dev/null @@ -1,271 +0,0 @@ -/*---------------- Search Box */ - -#FSearchBox { - float: left; -} - -#MSearchBox { - white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; - z-index: 102; -} - -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; -} - -#MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; -} - -#MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; - border:none; - width:115px; - margin-left:20px; - padding-left:4px; - color: #909090; - outline: none; - font: 9pt Arial, Verdana, sans-serif; - -webkit-border-radius: 0px; -} - -#FSearchBox #MSearchField { - margin-left:15px; -} - -#MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; -} - -#MSearchClose { - display: none; - position: absolute; - top: 4px; - background : none; - border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; - outline: none; -} - -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; -} - -.MSearchBoxActive #MSearchField { - color: #000000; -} - -/*---------------- Search filter selection */ - -#MSearchSelectWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #90A5CE; - background-color: #F9FAFC; - z-index: 10001; - padding-top: 4px; - padding-bottom: 4px; - -moz-border-radius: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -.SelectItem { - font: 8pt Arial, Verdana, sans-serif; - padding-left: 2px; - padding-right: 12px; - border: 0px; -} - -span.SelectionMark { - margin-right: 4px; - font-family: monospace; - outline-style: none; - text-decoration: none; -} - -a.SelectItem { - display: block; - outline-style: none; - color: #000000; - text-decoration: none; - padding-left: 6px; - padding-right: 12px; -} - -a.SelectItem:focus, -a.SelectItem:active { - color: #000000; - outline-style: none; - text-decoration: none; -} - -a.SelectItem:hover { - color: #FFFFFF; - background-color: #3D578C; - outline-style: none; - text-decoration: none; - cursor: pointer; - display: block; -} - -/*---------------- Search results window */ - -iframe#MSearchResults { - width: 60ex; - height: 15em; -} - -#MSearchResultsWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #000; - background-color: #EEF1F7; - z-index:10000; -} - -/* ----------------------------------- */ - - -#SRIndex { - clear:both; - padding-bottom: 15px; -} - -.SREntry { - font-size: 10pt; - padding-left: 1ex; -} - -.SRPage .SREntry { - font-size: 8pt; - padding: 1px 5px; -} - -body.SRPage { - margin: 5px 2px; -} - -.SRChildren { - padding-left: 3ex; padding-bottom: .5em -} - -.SRPage .SRChildren { - display: none; -} - -.SRSymbol { - font-weight: bold; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRScope { - display: block; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRSymbol:focus, a.SRSymbol:active, -a.SRScope:focus, a.SRScope:active { - text-decoration: underline; -} - -span.SRScope { - padding-left: 4px; -} - -.SRPage .SRStatus { - padding: 2px 5px; - font-size: 8pt; - font-style: italic; -} - -.SRResult { - display: none; -} - -DIV.searchresults { - margin-left: 10px; - margin-right: 10px; -} - -/*---------------- External search page results */ - -.searchresult { - background-color: #F0F3F8; -} - -.pages b { - color: white; - padding: 5px 5px 3px 5px; - background-image: url("../tab_a.png"); - background-repeat: repeat-x; - text-shadow: 0 1px 1px #000000; -} - -.pages { - line-height: 17px; - margin-left: 4px; - text-decoration: none; -} - -.hl { - font-weight: bold; -} - -#searchresults { - margin-bottom: 20px; -} - -.searchpages { - margin-top: 10px; -} - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/search.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/search.js deleted file mode 100644 index dedce3bf09..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/search.js +++ /dev/null @@ -1,791 +0,0 @@ -function convertToId(search) -{ - var result = ''; - for (i=0;i do a search - { - this.Search(); - } - } - - this.OnSearchSelectKey = function(evt) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==40 && this.searchIndex0) // Up - { - this.searchIndex--; - this.OnSelectItem(this.searchIndex); - } - else if (e.keyCode==13 || e.keyCode==27) - { - this.OnSelectItem(this.searchIndex); - this.CloseSelectionWindow(); - this.DOMSearchField().focus(); - } - return false; - } - - // --------- Actions - - // Closes the results window. - this.CloseResultsWindow = function() - { - this.DOMPopupSearchResultsWindow().style.display = 'none'; - this.DOMSearchClose().style.display = 'none'; - this.Activate(false); - } - - this.CloseSelectionWindow = function() - { - this.DOMSearchSelectWindow().style.display = 'none'; - } - - // Performs a search. - this.Search = function() - { - this.keyTimeout = 0; - - // strip leading whitespace - var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); - - var code = searchValue.toLowerCase().charCodeAt(0); - var idxChar = searchValue.substr(0, 1).toLowerCase(); - if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair - { - idxChar = searchValue.substr(0, 2); - } - - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; - - var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); - if (idx!=-1) - { - var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; - } - else // nothing available for this search term - { - resultsPage = this.resultsPath + '/nomatches.html'; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; - } - - window.frames.MSearchResults.location = resultsPageWithSearch; - var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); - - if (domPopupSearchResultsWindow.style.display!='block') - { - var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; - if (this.insideFrame) - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - domPopupSearchResultsWindow.style.position = 'relative'; - domPopupSearchResultsWindow.style.display = 'block'; - var width = document.body.clientWidth - 8; // the -8 is for IE :-( - domPopupSearchResultsWindow.style.width = width + 'px'; - domPopupSearchResults.style.width = width + 'px'; - } - else - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - } - } - - this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; - } - - // -------- Activation Functions - - // Activates or deactivates the search panel, resetting things to - // their default values if necessary. - this.Activate = function(isActive) - { - if (isActive || // open it - this.DOMPopupSearchResultsWindow().style.display == 'block' - ) - { - this.DOMSearchBox().className = 'MSearchBoxActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == this.searchLabel) // clear "Search" term upon entry - { - searchField.value = ''; - this.searchActive = true; - } - } - else if (!isActive) // directly remove the panel - { - this.DOMSearchBox().className = 'MSearchBoxInactive'; - this.DOMSearchField().value = this.searchLabel; - this.searchActive = false; - this.lastSearchValue = '' - this.lastResultsPage = ''; - } - } -} - -// ----------------------------------------------------------------------- - -// The class that handles everything on the search results page. -function SearchResults(name) -{ - // The number of matches from the last run of . - this.lastMatchCount = 0; - this.lastKey = 0; - this.repeatOn = false; - - // Toggles the visibility of the passed element ID. - this.FindChildElement = function(id) - { - var parentElement = document.getElementById(id); - var element = parentElement.firstChild; - - while (element && element!=parentElement) - { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') - { - return element; - } - - if (element.nodeName == 'DIV' && element.hasChildNodes()) - { - element = element.firstChild; - } - else if (element.nextSibling) - { - element = element.nextSibling; - } - else - { - do - { - element = element.parentNode; - } - while (element && element!=parentElement && !element.nextSibling); - - if (element && element!=parentElement) - { - element = element.nextSibling; - } - } - } - } - - this.Toggle = function(id) - { - var element = this.FindChildElement(id); - if (element) - { - if (element.style.display == 'block') - { - element.style.display = 'none'; - } - else - { - element.style.display = 'block'; - } - } - } - - // Searches for the passed string. If there is no parameter, - // it takes it from the URL query. - // - // Always returns true, since other documents may try to call it - // and that may or may not be possible. - this.Search = function(search) - { - if (!search) // get search word from URL - { - search = window.location.search; - search = search.substring(1); // Remove the leading '?' - search = unescape(search); - } - - search = search.replace(/^ +/, ""); // strip leading spaces - search = search.replace(/ +$/, ""); // strip trailing spaces - search = search.toLowerCase(); - search = convertToId(search); - - var resultRows = document.getElementsByTagName("div"); - var matches = 0; - - var i = 0; - while (i < resultRows.length) - { - var row = resultRows.item(i); - if (row.className == "SRResult") - { - var rowMatchName = row.id.toLowerCase(); - rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' - - if (search.length<=rowMatchName.length && - rowMatchName.substr(0, search.length)==search) - { - row.style.display = 'block'; - matches++; - } - else - { - row.style.display = 'none'; - } - } - i++; - } - document.getElementById("Searching").style.display='none'; - if (matches == 0) // no results - { - document.getElementById("NoMatches").style.display='block'; - } - else // at least one result - { - document.getElementById("NoMatches").style.display='none'; - } - this.lastMatchCount = matches; - return true; - } - - // return the first item with index index or higher that is visible - this.NavNext = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index++; - } - return focusItem; - } - - this.NavPrev = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index--; - } - return focusItem; - } - - this.ProcessKeys = function(e) - { - if (e.type == "keydown") - { - this.repeatOn = false; - this.lastKey = e.keyCode; - } - else if (e.type == "keypress") - { - if (!this.repeatOn) - { - if (this.lastKey) this.repeatOn = true; - return false; // ignore first keypress after keydown - } - } - else if (e.type == "keyup") - { - this.lastKey = 0; - this.repeatOn = false; - } - return this.lastKey!=0; - } - - this.Nav = function(evt,itemIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - var newIndex = itemIndex-1; - var focusItem = this.NavPrev(newIndex); - if (focusItem) - { - var child = this.FindChildElement(focusItem.parentNode.parentNode.id); - if (child && child.style.display == 'block') // children visible - { - var n=0; - var tmpElem; - while (1) // search for last child - { - tmpElem = document.getElementById('Item'+newIndex+'_c'+n); - if (tmpElem) - { - focusItem = tmpElem; - } - else // found it! - { - break; - } - n++; - } - } - } - if (focusItem) - { - focusItem.focus(); - } - else // return focus to search field - { - parent.document.getElementById("MSearchField").focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = itemIndex+1; - var focusItem; - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem && elem.style.display == 'block') // children visible - { - focusItem = document.getElementById('Item'+itemIndex+'_c0'); - } - if (!focusItem) focusItem = this.NavNext(newIndex); - if (focusItem) focusItem.focus(); - } - else if (this.lastKey==39) // Right - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'block'; - } - else if (this.lastKey==37) // Left - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'none'; - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } - - this.NavChild = function(evt,itemIndex,childIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - if (childIndex>0) - { - var newIndex = childIndex-1; - document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); - } - else // already at first child, jump to parent - { - document.getElementById('Item'+itemIndex).focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = childIndex+1; - var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); - if (!elem) // last child, jump to parent next parent - { - elem = this.NavNext(itemIndex+1); - } - if (elem) - { - elem.focus(); - } - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } -} - -function setKeyActions(elem,action) -{ - elem.setAttribute('onkeydown',action); - elem.setAttribute('onkeypress',action); - elem.setAttribute('onkeyup',action); -} - -function setClassAttr(elem,attr) -{ - elem.setAttribute('class',attr); - elem.setAttribute('className',attr); -} - -function createResults() -{ - var results = document.getElementById("SRResults"); - for (var e=0; e - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/typedefs_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/typedefs_0.js deleted file mode 100644 index d474c94564..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/typedefs_0.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['cy_5fcapsense_5fcallback_5ft',['cy_capsense_callback_t',['../group__group__capsense__structures.html#ga908447ccc2720f31c861d9eb79ff75d2',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fds_5finit_5fcallback_5ft',['cy_capsense_ds_init_callback_t',['../group__group__capsense__structures.html#gaeebeea548d4c2235b14aba63f1dd4bcf',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fmw_5fstate_5ft',['cy_capsense_mw_state_t',['../group__group__capsense__structures.html#gaae9a4f12c83f84c5a02079bb0eeeb3c9',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5fstatus_5ft',['cy_capsense_status_t',['../group__group__capsense__structures.html#gadb42bb859316b21e708ad01184fba9c7',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftuner_5freceive_5fcallback_5ft',['cy_capsense_tuner_receive_callback_t',['../group__group__capsense__structures.html#gade1f00c852892b0fc498c9a3b9d28594',1,'cy_capsense_structure.h']]], - ['cy_5fcapsense_5ftuner_5fsend_5fcallback_5ft',['cy_capsense_tuner_send_callback_t',['../group__group__capsense__structures.html#gabf58e6ce283cb73f9b8a398abf6bad17',1,'cy_capsense_structure.h']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_0.html deleted file mode 100644 index 74ce807248..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_0.js deleted file mode 100644 index 68000003db..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_0.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['accelcoeff',['accelCoeff',['../structcy__stc__capsense__ballistic__config__t.html#af168ee9cd6deb06a3dd59c63cd63be27',1,'cy_stc_capsense_ballistic_config_t']]], - ['advconfig',['advConfig',['../structcy__stc__capsense__widget__config__t.html#a94b1400ac7cf425e79664f4e19f54d0b',1,'cy_stc_capsense_widget_config_t']]], - ['aiirconfig',['aiirConfig',['../structcy__stc__capsense__widget__config__t.html#a44c45fc836a80c8fe858ab3d5133d751',1,'cy_stc_capsense_widget_config_t']]], - ['analogwakeupdelay',['analogWakeupDelay',['../structcy__stc__capsense__common__config__t.html#a625ca1e473af912530d0da3225e0ca40',1,'cy_stc_capsense_common_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_1.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_1.html deleted file mode 100644 index 84237b6e77..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_1.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_1.js deleted file mode 100644 index 7451066f45..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_1.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['ballisticconfig',['ballisticConfig',['../structcy__stc__capsense__widget__config__t.html#a5fc7dffe9f218833d42b73769d0e6965',1,'cy_stc_capsense_widget_config_t']]], - ['bisten',['bistEn',['../structcy__stc__capsense__common__config__t.html#a945e057e66cff3bcae327e897f3ef1a8',1,'cy_stc_capsense_common_config_t']]], - ['bsln',['bsln',['../structcy__stc__capsense__sensor__context__t.html#ae70bc85c4ea36acf3f7f24083ee12358',1,'cy_stc_capsense_sensor_context_t']]], - ['bslncoeff',['bslnCoeff',['../structcy__stc__capsense__widget__context__t.html#abc22672d34d27dc281a8401b7b94544f',1,'cy_stc_capsense_widget_context_t']]], - ['bslnext',['bslnExt',['../structcy__stc__capsense__sensor__context__t.html#a00e13c949413eec88791b6b89215dc67',1,'cy_stc_capsense_sensor_context_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_10.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_10.html deleted file mode 100644 index 548ac843ec..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_10.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_10.js deleted file mode 100644 index 6103ef1efc..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_10.js +++ /dev/null @@ -1,49 +0,0 @@ -var searchData= -[ - ['scancounter',['scanCounter',['../structcy__stc__capsense__common__context__t.html#a6406229ffd99b912c09ca0c80ea3f4ee',1,'cy_stc_capsense_common_context_t']]], - ['scanningmode',['scanningMode',['../structcy__stc__capsense__common__config__t.html#a24d346b99ac5c013f41b3189a2972a99',1,'cy_stc_capsense_common_config_t']]], - ['scanscope',['scanScope',['../structcy__stc__active__scan__sns__t.html#a6ad0b697f5e856d2436d402f085fbd86',1,'cy_stc_active_scan_sns_t']]], - ['scansingleslot',['scanSingleSlot',['../structcy__stc__capsense__internal__context__t.html#a369e954564bb658a81176a8e343a8e52',1,'cy_stc_capsense_internal_context_t']]], - ['scrolldebounce',['scrollDebounce',['../structcy__stc__capsense__gesture__config__t.html#a3048bc2987cdde967abbbd4a18051ae1',1,'cy_stc_capsense_gesture_config_t']]], - ['scrolldistancemin',['scrollDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#a27e76edb6a8d860482a55b8f4071f337',1,'cy_stc_capsense_gesture_config_t']]], - ['secondclickdistancemax',['secondClickDistanceMax',['../structcy__stc__capsense__gesture__config__t.html#a32dd076cfd7800d96f465c6574059443',1,'cy_stc_capsense_gesture_config_t']]], - ['secondclickintervalmax',['secondClickIntervalMax',['../structcy__stc__capsense__gesture__config__t.html#a1504ee52ad24c04ac285a6fa3acb3bde',1,'cy_stc_capsense_gesture_config_t']]], - ['secondclickintervalmin',['secondClickIntervalMin',['../structcy__stc__capsense__gesture__config__t.html#a138b9550ac79485932c329daeb3a552f',1,'cy_stc_capsense_gesture_config_t']]], - ['sensemethod',['senseMethod',['../structcy__stc__capsense__widget__config__t.html#a417a8786dfe62d3940fd7d5e265b9e2e',1,'cy_stc_capsense_widget_config_t']]], - ['sensorcap',['sensorCap',['../structcy__stc__capsense__auto__tune__config__t.html#a1d0e22bde6cc10e84ce2e37524486fc1',1,'cy_stc_capsense_auto_tune_config_t']]], - ['sensorconnection',['sensorConnection',['../structcy__stc__capsense__common__config__t.html#af1ac09b694a33a673b6212ff746e1405',1,'cy_stc_capsense_common_config_t']]], - ['sensorindex',['sensorIndex',['../structcy__stc__active__scan__sns__t.html#af779789a94df30c50548991176f02a10',1,'cy_stc_active_scan_sns_t']]], - ['shieldcap',['shieldCap',['../structcy__stc__capsense__bist__context__t.html#ad9d7572ae68f02fff90133e676cc1bdb',1,'cy_stc_capsense_bist_context_t']]], - ['shieldcapisc',['shieldCapISC',['../structcy__stc__capsense__bist__context__t.html#a8e6f44610a21e97402349e14d6c090d1',1,'cy_stc_capsense_bist_context_t']]], - ['shortedsnsid',['shortedSnsId',['../structcy__stc__capsense__bist__context__t.html#aefc11745803885a1b87cc4017288d7fa',1,'cy_stc_capsense_bist_context_t']]], - ['shortedwdid',['shortedWdId',['../structcy__stc__capsense__bist__context__t.html#a4d106f872eeea02719e146b4427c1d18',1,'cy_stc_capsense_bist_context_t']]], - ['sigpfc',['sigPFC',['../structcy__stc__capsense__auto__tune__config__t.html#a02620f92d5236d731cfd30c52b3881c5',1,'cy_stc_capsense_auto_tune_config_t::sigPFC()'],['../structcy__stc__capsense__hw__smartsense__config__t.html#a9df8e2b2dad78e69b5e78bc2a0451e62',1,'cy_stc_capsense_hw_smartsense_config_t::sigPFC()'],['../structcy__stc__capsense__widget__context__t.html#a818a66cb212ab10f9e4fb4f25a5b8a14',1,'cy_stc_capsense_widget_context_t::sigPFC()']]], - ['sigpfcval',['sigPFCVal',['../structcy__stc__capsense__widget__crc__data__t.html#a2742dd33a65b5791a4aca1dd86f60910',1,'cy_stc_capsense_widget_crc_data_t']]], - ['skipchannelmask',['skipChannelMask',['../structcy__stc__capsense__bist__context__t.html#a14373485d1d094cce5897260b380d3a1',1,'cy_stc_capsense_bist_context_t']]], - ['slotautocalibrmode',['slotAutoCalibrMode',['../structcy__stc__capsense__internal__context__t.html#ab0829c3076d68da791c664969585b54d',1,'cy_stc_capsense_internal_context_t']]], - ['snscapacitance',['snsCapacitance',['../structcy__stc__capsense__hw__smartsense__config__t.html#ab468c0e00fd96979d2a47cadcb8d0d4c',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['snsclk',['snsClk',['../structcy__stc__capsense__widget__context__t.html#ac2c184d4476a32763d29fd3c1813d533',1,'cy_stc_capsense_widget_context_t::snsClk()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#aa9db7044638f1e6ee7a56a850f31d67d',1,'cy_stc_capsense_bist_custom_parameters_t::snsClk()']]], - ['snsclkconstantr',['snsClkConstantR',['../structcy__stc__capsense__auto__tune__config__t.html#a6ec095fe5aeb9289f98829815219ea37',1,'cy_stc_capsense_auto_tune_config_t']]], - ['snsclkinputclock',['snsClkInputClock',['../structcy__stc__capsense__auto__tune__config__t.html#a104c0df5a13ed859885dd8be3d274dc2',1,'cy_stc_capsense_auto_tune_config_t']]], - ['snsclksource',['snsClkSource',['../structcy__stc__capsense__widget__context__t.html#ab9a639859b9bb45518c041e37bfca15a',1,'cy_stc_capsense_widget_context_t']]], - ['snsclksourceautoselmode',['snsClkSourceAutoSelMode',['../structcy__stc__capsense__widget__config__t.html#ad6f1c79005cc909bf91dc5f18ef9c695',1,'cy_stc_capsense_widget_config_t']]], - ['snsclksourceval',['snsClkSourceVal',['../structcy__stc__capsense__widget__crc__data__t.html#a56160b9d3867b8b59fda1ebface25359',1,'cy_stc_capsense_widget_crc_data_t']]], - ['snsclkval',['snsClkVal',['../structcy__stc__capsense__widget__crc__data__t.html#a888a88ed2d857e30e18b5240731fafb7',1,'cy_stc_capsense_widget_crc_data_t']]], - ['snscountx',['snsCountX',['../structcy__stc__capsense__advanced__centroid__config__t.html#a6516dd861d60a16f4542edd695e6411a',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['snscounty',['snsCountY',['../structcy__stc__capsense__advanced__centroid__config__t.html#a3ca2e3fdf2d68035f14bd1f67c50f9bd',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['snsctlreg',['snsCtlReg',['../structcy__stc__capsense__internal__context__t.html#a28352e11f481d2a39d6a4b0cd5ba5da9',1,'cy_stc_capsense_internal_context_t']]], - ['snsid',['snsId',['../structcy__stc__capsense__scan__slot__t.html#aa15549f34439186a6a055f883995c51d',1,'cy_stc_capsense_scan_slot_t']]], - ['snsintgshortsettlingtime',['snsIntgShortSettlingTime',['../structcy__stc__capsense__bist__context__t.html#a5b5122344f3fac96dd7ba538eff80298',1,'cy_stc_capsense_bist_context_t']]], - ['snsresistance',['snsResistance',['../structcy__stc__capsense__hw__smartsense__config__t.html#a2f7adbc38868c74a94f36b97e62e9827',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['speedcoeff',['speedCoeff',['../structcy__stc__capsense__ballistic__config__t.html#ad5992e4bc35b511b1d49699ead2d5d18',1,'cy_stc_capsense_ballistic_config_t']]], - ['speedthresholdx',['speedThresholdX',['../structcy__stc__capsense__ballistic__config__t.html#ab4deccb79d0803f081e1283ee7006acd',1,'cy_stc_capsense_ballistic_config_t']]], - ['speedthresholdy',['speedThresholdY',['../structcy__stc__capsense__ballistic__config__t.html#adb09b97cfc40452a62b7cc4c92dda9a3',1,'cy_stc_capsense_ballistic_config_t']]], - ['ssirefsource',['ssIrefSource',['../structcy__stc__capsense__common__config__t.html#a0c80e26b5fe28518248152c5c9c6681a',1,'cy_stc_capsense_common_config_t']]], - ['ssvrefsource',['ssVrefSource',['../structcy__stc__capsense__common__config__t.html#a9d4938569f715d511d5a92c65337903a',1,'cy_stc_capsense_common_config_t']]], - ['state',['state',['../structcy__stc__capsense__ofsc__context__t.html#a8b9f3178a921e342a800d39f2c276911',1,'cy_stc_capsense_ofsc_context_t::state()'],['../structcy__stc__capsense__ofdc__context__t.html#a68bdeb81301daf15477f4e5130a60b6d',1,'cy_stc_capsense_ofdc_context_t::state()'],['../structcy__stc__capsense__ofcd__context__t.html#affdde7ae14962e5fb4a245bcc6431f46',1,'cy_stc_capsense_ofcd_context_t::state()'],['../structcy__stc__capsense__tfsc__context__t.html#a8e22783a5b0ccb54c439fceb105978e4',1,'cy_stc_capsense_tfsc_context_t::state()'],['../structcy__stc__capsense__ofsl__context__t.html#a7df429d86ffa5f133a64f3fa4a9c63bc',1,'cy_stc_capsense_ofsl_context_t::state()'],['../structcy__stc__capsense__tfsl__context__t.html#aff4bf63c794f8b5f1c07d5473dbfa670',1,'cy_stc_capsense_tfsl_context_t::state()'],['../structcy__stc__capsense__offl__context__t.html#ab75c1891770f28ddf2e351352ad44ec9',1,'cy_stc_capsense_offl_context_t::state()'],['../structcy__stc__capsense__ofes__context__t.html#aceb2451dce6a58a27a57aad7567d96de',1,'cy_stc_capsense_ofes_context_t::state()'],['../structcy__stc__capsense__tfzm__context__t.html#a4d55acf75ebf067266e51707eace00c2',1,'cy_stc_capsense_tfzm_context_t::state()'],['../structcy__stc__capsense__ofrt__context__t.html#a15e10b8b2d960028f26f3781bd86d1b2',1,'cy_stc_capsense_ofrt_context_t::state()']]], - ['status',['status',['../structcy__stc__capsense__sensor__context__t.html#ac0c3267b406b40d89fb8219b75536eee',1,'cy_stc_capsense_sensor_context_t::status()'],['../structcy__stc__capsense__widget__context__t.html#ad7b0478d50436b8f1cdb982b5d731a68',1,'cy_stc_capsense_widget_context_t::status()'],['../structcy__stc__capsense__common__context__t.html#ae823664536f36878278584c2e8967035',1,'cy_stc_capsense_common_context_t::status()']]], - ['swsensorautoreseten',['swSensorAutoResetEn',['../structcy__stc__capsense__common__config__t.html#a16001bf367c6118143ff1ec3511646fb',1,'cy_stc_capsense_common_config_t']]], - ['syncclocken',['syncClockEn',['../structcy__stc__capsense__common__config__t.html#a1a7933f4724093478a9434d5a7442aac',1,'cy_stc_capsense_common_config_t']]], - ['syncframestarten',['syncFrameStartEn',['../structcy__stc__capsense__common__config__t.html#a81f8d65e5d8e38368a8c8afd643a1f5b',1,'cy_stc_capsense_common_config_t']]], - ['syncmode',['syncMode',['../structcy__stc__capsense__common__config__t.html#aec6656386d576886a6f2d1d1b6c3f681',1,'cy_stc_capsense_common_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_11.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_11.html deleted file mode 100644 index d5be914513..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_11.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_11.js deleted file mode 100644 index 95196acb49..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_11.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['testresultmask',['testResultMask',['../structcy__stc__capsense__bist__context__t.html#a85203f9070ae007e98d8e86b716ea971',1,'cy_stc_capsense_bist_context_t']]], - ['tfsccontext',['tfscContext',['../structcy__stc__capsense__gesture__context__t.html#a56adc5033fdd287a8fefb4a6c8b1a251',1,'cy_stc_capsense_gesture_context_t']]], - ['tfslcontext',['tfslContext',['../structcy__stc__capsense__gesture__context__t.html#a3e8c82cbc4289674f444114478fc1a7b',1,'cy_stc_capsense_gesture_context_t']]], - ['tfzmcontext',['tfzmContext',['../structcy__stc__capsense__gesture__context__t.html#abdb25e19025b77d4115b551bf54454b5',1,'cy_stc_capsense_gesture_context_t']]], - ['timestamp',['timestamp',['../structcy__stc__capsense__gesture__context__t.html#a2a24ea7e25b9910d7f02e7e19e43195a',1,'cy_stc_capsense_gesture_context_t::timestamp()'],['../structcy__stc__capsense__common__context__t.html#a770a1fafdbe45e1e3355abca3caa859c',1,'cy_stc_capsense_common_context_t::timestamp()']]], - ['timestampinterval',['timestampInterval',['../structcy__stc__capsense__common__context__t.html#a6178b4758bc7095bbafe2bf8bc62783a',1,'cy_stc_capsense_common_context_t']]], - ['touchnumber',['touchNumber',['../structcy__stc__capsense__ballistic__context__t.html#a8b2a6fe6bc8bf68463bf94a93c7e3a2b',1,'cy_stc_capsense_ballistic_context_t']]], - ['touchstartposition1',['touchStartPosition1',['../structcy__stc__capsense__ofsc__context__t.html#a9015721f99554c92a7dc46e2c21f94ed',1,'cy_stc_capsense_ofsc_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofdc__context__t.html#a22e58ee9031099dd6d48aee61a1aadc2',1,'cy_stc_capsense_ofdc_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofcd__context__t.html#aa31dd67b76a421f313721950384c14ab',1,'cy_stc_capsense_ofcd_context_t::touchStartPosition1()'],['../structcy__stc__capsense__tfsc__context__t.html#ac2bb0da57282c795cbf0f3d4c1c50e94',1,'cy_stc_capsense_tfsc_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofsl__context__t.html#ab6b900847f84996ed25c000469c6cba4',1,'cy_stc_capsense_ofsl_context_t::touchStartPosition1()'],['../structcy__stc__capsense__tfsl__context__t.html#aaf2bf408c8cea2a3ad8331676a487aa3',1,'cy_stc_capsense_tfsl_context_t::touchStartPosition1()'],['../structcy__stc__capsense__offl__context__t.html#aa4bcab6ceb424cae93b48af4ba2ef1c0',1,'cy_stc_capsense_offl_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofes__context__t.html#ac6dceb387c709e7425014e0b6cbba69d',1,'cy_stc_capsense_ofes_context_t::touchStartPosition1()'],['../structcy__stc__capsense__tfzm__context__t.html#a60cf7f1c4af96f6113fbe04db092a80e',1,'cy_stc_capsense_tfzm_context_t::touchStartPosition1()'],['../structcy__stc__capsense__ofrt__context__t.html#a3655e2f6e6fccd33a99ae0919965a02d',1,'cy_stc_capsense_ofrt_context_t::touchStartPosition1()']]], - ['touchstartposition2',['touchStartPosition2',['../structcy__stc__capsense__tfsc__context__t.html#a8b6bd5906acd0001b1ceae797db7a8a3',1,'cy_stc_capsense_tfsc_context_t::touchStartPosition2()'],['../structcy__stc__capsense__tfsl__context__t.html#abda60903e50cdc56ca4bc60476c2fedf',1,'cy_stc_capsense_tfsl_context_t::touchStartPosition2()'],['../structcy__stc__capsense__tfzm__context__t.html#a47690ba09642262dc60c9996471cf3a7',1,'cy_stc_capsense_tfzm_context_t::touchStartPosition2()']]], - ['touchstarttime1',['touchStartTime1',['../structcy__stc__capsense__ofsc__context__t.html#a659fadd332317157ed92646ab617c108',1,'cy_stc_capsense_ofsc_context_t::touchStartTime1()'],['../structcy__stc__capsense__ofdc__context__t.html#a4301e8f87ce8a40ecc73c415ebd56eab',1,'cy_stc_capsense_ofdc_context_t::touchStartTime1()'],['../structcy__stc__capsense__ofcd__context__t.html#adac662a3fdcbff352d05b47127722437',1,'cy_stc_capsense_ofcd_context_t::touchStartTime1()'],['../structcy__stc__capsense__tfsc__context__t.html#a8c266f5d2b658bb7e3fa61d33c02d02e',1,'cy_stc_capsense_tfsc_context_t::touchStartTime1()'],['../structcy__stc__capsense__offl__context__t.html#a3c51b81c7a63872b85d1abafc9f3e35d',1,'cy_stc_capsense_offl_context_t::touchStartTime1()'],['../structcy__stc__capsense__ofes__context__t.html#aaf7cec8bf10a12f82431b1cfdc76fa3c',1,'cy_stc_capsense_ofes_context_t::touchStartTime1()']]], - ['touchstarttime2',['touchStartTime2',['../structcy__stc__capsense__tfsc__context__t.html#ad05feec06a31053de7213da66168c4ff',1,'cy_stc_capsense_tfsc_context_t']]], - ['tunercmd',['tunerCmd',['../structcy__stc__capsense__common__context__t.html#afae9853b830d6549b35bafc214acc040',1,'cy_stc_capsense_common_context_t']]], - ['tunercnt',['tunerCnt',['../structcy__stc__capsense__common__context__t.html#ac6502f0565b37d6ba97cce1c81a773b3',1,'cy_stc_capsense_common_context_t']]], - ['tunerst',['tunerSt',['../structcy__stc__capsense__common__context__t.html#a26f741c17c454d43f6a07dbf87d8154e',1,'cy_stc_capsense_common_context_t']]], - ['twofingersen',['twoFingersEn',['../structcy__stc__capsense__advanced__centroid__config__t.html#a541c1a949ee1bb818933bbb95f153ada',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['txindex',['txIndex',['../structcy__stc__active__scan__sns__t.html#aef1caed388c9d1fb076e710ab7db49a4',1,'cy_stc_active_scan_sns_t']]], - ['type',['type',['../structcy__stc__capsense__electrode__config__t.html#a3f987328f5df9cd9fe4f6b4daf80ec8e',1,'cy_stc_capsense_electrode_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_12.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_12.html deleted file mode 100644 index b62e1ee13e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_12.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_12.js deleted file mode 100644 index 1c4eb947ce..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_12.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['vdda',['vdda',['../structcy__stc__capsense__common__config__t.html#a04857de80018693091a81dce3b19bd66',1,'cy_stc_capsense_common_config_t']]], - ['vddaacqcycles',['vddaAcqCycles',['../structcy__stc__capsense__bist__context__t.html#a5d877d6bd67e8cf57bcb411cbf684abe',1,'cy_stc_capsense_bist_context_t']]], - ['vddaazcycles',['vddaAzCycles',['../structcy__stc__capsense__bist__context__t.html#a069d1684c20cb8b73c04c4c5c109773e',1,'cy_stc_capsense_bist_context_t']]], - ['vddaidacdefault',['vddaIdacDefault',['../structcy__stc__capsense__bist__context__t.html#aa06208613dd9f24d6e61d762b57b7d5a',1,'cy_stc_capsense_bist_context_t']]], - ['vddamodclk',['vddaModClk',['../structcy__stc__capsense__bist__context__t.html#aa97a347c3230f3b8227df50a734e487c',1,'cy_stc_capsense_bist_context_t']]], - ['vddavoltage',['vddaVoltage',['../structcy__stc__capsense__bist__context__t.html#acae5fb65a370e8e1c14d13c2da578f12',1,'cy_stc_capsense_bist_context_t']]], - ['vddavrefgain',['vddaVrefGain',['../structcy__stc__capsense__bist__context__t.html#ada60c4a93a43cb77e509556a97962655',1,'cy_stc_capsense_bist_context_t']]], - ['vddavrefmv',['vddaVrefMv',['../structcy__stc__capsense__bist__context__t.html#a596d6e49bff364072a0ab877e14c90d5',1,'cy_stc_capsense_bist_context_t']]], - ['vector',['vector',['../structcy__stc__capsense__mptx__table__t.html#a98c4201904ce3acae1128bf0dffa8476',1,'cy_stc_capsense_mptx_table_t']]], - ['velocity',['velocity',['../structcy__stc__capsense__csx__touch__history__t.html#a5a32e8b0644a7bc98f45a4b345188810',1,'cy_stc_capsense_csx_touch_history_t']]], - ['virtualsnsth',['virtualSnsTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#a99998bdcb8adfc186748f5e8ecff0724',1,'cy_stc_capsense_advanced_centroid_config_t::virtualSnsTh()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#ade2331205a63402295830fb1ed8bd3a7',1,'cy_stc_capsense_advanced_touchpad_config_t::virtualSnsTh()']]], - ['visitedmap',['visitedMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a0c72b5063ccfa7e97c086c06d943ffc9',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['vref',['vRef',['../structcy__stc__capsense__auto__tune__config__t.html#a50522d0350068cbfba0aeebaff115d9c',1,'cy_stc_capsense_auto_tune_config_t']]], - ['vrefgain',['vrefGain',['../structcy__stc__capsense__bist__custom__parameters__t.html#aa24f7a01ccebf1ad20e600ca27565eac',1,'cy_stc_capsense_bist_custom_parameters_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_13.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_13.html deleted file mode 100644 index 15437be23f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_13.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_13.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_13.js deleted file mode 100644 index 02564bd287..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_13.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['wdgtcrccalc',['wdgtCrcCalc',['../structcy__stc__capsense__bist__context__t.html#a21a8e2f2c74ad54372244ad94f9245b5',1,'cy_stc_capsense_bist_context_t']]], - ['wdid',['wdId',['../structcy__stc__capsense__scan__slot__t.html#af62581a007e94d23a25ecf891e2347af',1,'cy_stc_capsense_scan_slot_t']]], - ['wdtouch',['wdTouch',['../structcy__stc__capsense__widget__context__t.html#a8278c09fe62e33e5e460f3064b90e614',1,'cy_stc_capsense_widget_context_t']]], - ['wdtype',['wdType',['../structcy__stc__capsense__widget__config__t.html#a78fb9e1d1b8c8cdad2d4257f5881ddc2',1,'cy_stc_capsense_widget_config_t']]], - ['widgetindex',['widgetIndex',['../structcy__stc__active__scan__sns__t.html#a3976b21c01b88709fb4c641d147a95ba',1,'cy_stc_active_scan_sns_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_14.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_14.html deleted file mode 100644 index 3745fec35f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_14.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_14.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_14.js deleted file mode 100644 index 9e9d14fb77..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_14.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['x',['x',['../structcy__stc__capsense__gesture__position__t.html#aa7c7a9666ddec68e4ace38a030ecfdab',1,'cy_stc_capsense_gesture_position_t::x()'],['../structcy__stc__capsense__position__t.html#aaa333fb1aa5285e28ffdf6cc47248741',1,'cy_stc_capsense_position_t::x()'],['../structcy__stc__capsense__ballistic__context__t.html#ae07addb7a565119d5b2244a5bd64dde6',1,'cy_stc_capsense_ballistic_context_t::x()']]], - ['xdelta',['xDelta',['../structcy__stc__capsense__widget__context__t.html#a723b1a11630c801ad30546fd35cec715',1,'cy_stc_capsense_widget_context_t']]], - ['xresolution',['xResolution',['../structcy__stc__capsense__widget__config__t.html#adfae2ef0d4316555d1e3c54e39c4aeb5',1,'cy_stc_capsense_widget_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_15.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_15.html deleted file mode 100644 index 7432fd79aa..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_15.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_15.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_15.js deleted file mode 100644 index 046e285c59..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_15.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['y',['y',['../structcy__stc__capsense__gesture__position__t.html#a3a1c2f83221a848b380ec4c10362187a',1,'cy_stc_capsense_gesture_position_t::y()'],['../structcy__stc__capsense__position__t.html#a29b1ad8aeb8ab133b7696273fbdfa6cf',1,'cy_stc_capsense_position_t::y()'],['../structcy__stc__capsense__ballistic__context__t.html#abadcc7e1af463b1668eb93183cb87252',1,'cy_stc_capsense_ballistic_context_t::y()']]], - ['ydelta',['yDelta',['../structcy__stc__capsense__widget__context__t.html#a869b23837236045aba13b4fbde082e95',1,'cy_stc_capsense_widget_context_t']]], - ['yresolution',['yResolution',['../structcy__stc__capsense__widget__config__t.html#ae527a11d29c8deb400a6c2a58d677aee',1,'cy_stc_capsense_widget_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_16.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_16.html deleted file mode 100644 index 737584f9d4..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_16.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_16.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_16.js deleted file mode 100644 index 1059df5a71..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_16.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['z',['z',['../structcy__stc__capsense__position__t.html#a9a62c41da414fc72932fd1bcd8fbfc96',1,'cy_stc_capsense_position_t']]], - ['zoomdebounce',['zoomDebounce',['../structcy__stc__capsense__gesture__config__t.html#a13a289ac07a253455c04f3b124e9a7db',1,'cy_stc_capsense_gesture_config_t']]], - ['zoomdistancemin',['zoomDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#ac80c3e733cdc3999e48f02b94c629f05',1,'cy_stc_capsense_gesture_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_2.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_2.html deleted file mode 100644 index 5c9de1aabf..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_2.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_2.js deleted file mode 100644 index eb6e2a91fb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_2.js +++ /dev/null @@ -1,138 +0,0 @@ -var searchData= -[ - ['caltarget',['calTarget',['../structcy__stc__capsense__auto__tune__config__t.html#a48acefee1f92f23853cc7d58511327a2',1,'cy_stc_capsense_auto_tune_config_t']]], - ['capacitorsettlingtime',['capacitorSettlingTime',['../structcy__stc__capsense__bist__context__t.html#a2adb7abe65479371b8474bed393b719b',1,'cy_stc_capsense_bist_context_t']]], - ['cdaccomp',['cdacComp',['../structcy__stc__capsense__sensor__context__t.html#ae79c13f9386a3a7e995dc63857eaa63c',1,'cy_stc_capsense_sensor_context_t']]], - ['cdaccompdivider',['cdacCompDivider',['../structcy__stc__capsense__widget__context__t.html#a9af84926eb2b426096323ccb6bea68f8',1,'cy_stc_capsense_widget_context_t::cdacCompDivider()'],['../structcy__stc__capsense__widget__crc__data__t.html#a5ff43b7bc1a7a6356e421a580a189645',1,'cy_stc_capsense_widget_crc_data_t::cdacCompDivider()']]], - ['cdacditheren',['cdacDitherEn',['../structcy__stc__capsense__widget__context__t.html#a82a04a4c0dbb4de9fc2d5ae21ce943f3',1,'cy_stc_capsense_widget_context_t']]], - ['cdacditherpoly',['cdacDitherPoly',['../structcy__stc__capsense__common__context__t.html#a75c97af43dbcd9a4553d556bd8c454d7',1,'cy_stc_capsense_common_context_t']]], - ['cdacditherseed',['cdacDitherSeed',['../structcy__stc__capsense__common__context__t.html#a4ea8ee5aae4993e4f86a9d2cd05b537c',1,'cy_stc_capsense_common_context_t']]], - ['cdacdithervalue',['cdacDitherValue',['../structcy__stc__capsense__widget__context__t.html#ab6edaa841fd57f6e920b1f796d7f8cf4',1,'cy_stc_capsense_widget_context_t']]], - ['cdacref',['cdacRef',['../structcy__stc__capsense__widget__context__t.html#a1ca9544ef549d7fc214f7703efc596c7',1,'cy_stc_capsense_widget_context_t::cdacRef()'],['../structcy__stc__capsense__widget__crc__data__t.html#ada53db417307cc1d13caf7987244cfe1',1,'cy_stc_capsense_widget_crc_data_t::cdacRef()']]], - ['centroidconfig',['centroidConfig',['../structcy__stc__capsense__widget__config__t.html#ad2825a42c272b5c46dbcb15a21ec913f',1,'cy_stc_capsense_widget_config_t']]], - ['channeloffset',['channelOffset',['../structcy__stc__capsense__common__config__t.html#af4ae13ecd0378411c29e1c611f7a1adc',1,'cy_stc_capsense_common_config_t']]], - ['chid',['chId',['../structcy__stc__capsense__pin__config__t.html#aa174ebb6a2d3ef3b8918b1065320599b',1,'cy_stc_capsense_pin_config_t::chId()'],['../structcy__stc__capsense__electrode__config__t.html#a05da24520b2abe15d7d03d63f0590650',1,'cy_stc_capsense_electrode_config_t::chId()']]], - ['choppolarity',['chopPolarity',['../structcy__stc__capsense__common__config__t.html#aaa7080d2cfb50d41a453421d668f5f7b',1,'cy_stc_capsense_common_config_t']]], - ['cicfiltermode',['cicFilterMode',['../structcy__stc__capsense__common__config__t.html#aef1b0103bfeee576e0254d72a9ad0ab7',1,'cy_stc_capsense_common_config_t']]], - ['cicrate',['cicRate',['../structcy__stc__capsense__widget__context__t.html#ad9f98bd3c96b57f8da2246dbf30c697d',1,'cy_stc_capsense_widget_context_t::cicRate()'],['../structcy__stc__capsense__widget__crc__data__t.html#a29965512e099c71169b5413d3e7f8f05',1,'cy_stc_capsense_widget_crc_data_t::cicRate()']]], - ['cintacap',['cIntACap',['../structcy__stc__capsense__bist__context__t.html#a0844067d1e2f03296d01c0946542673f',1,'cy_stc_capsense_bist_context_t']]], - ['cintbcap',['cIntBCap',['../structcy__stc__capsense__bist__context__t.html#a5c87c14d0ef2d932eeb01a53eb77501b',1,'cy_stc_capsense_bist_context_t']]], - ['clickdistancemax',['clickDistanceMax',['../structcy__stc__capsense__gesture__config__t.html#a4bce321bd5bc00feafad1e32f35c6c0b',1,'cy_stc_capsense_gesture_config_t']]], - ['clicktimeoutmax',['clickTimeoutMax',['../structcy__stc__capsense__gesture__config__t.html#a3b1107f255188a2b7ad34f2445d45ca7',1,'cy_stc_capsense_gesture_config_t']]], - ['clicktimeoutmin',['clickTimeoutMin',['../structcy__stc__capsense__gesture__config__t.html#a3fd78e04e45942e2780ed93e8bfabcf2',1,'cy_stc_capsense_gesture_config_t']]], - ['cmodcap',['cModCap',['../structcy__stc__capsense__bist__context__t.html#a5456d1702855400f82a5e896cf426583',1,'cy_stc_capsense_bist_context_t']]], - ['coarseinitbypassen',['coarseInitBypassEn',['../structcy__stc__capsense__widget__context__t.html#af748f831b4efb44e9d1be8fb5242de7d',1,'cy_stc_capsense_widget_context_t']]], - ['colmap',['colMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a53be7999d05b8199561fad7160b0ff8a',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['configid',['configId',['../structcy__stc__capsense__common__context__t.html#aa9d6aeaa1e73aac634d4ca090d353af2',1,'cy_stc_capsense_common_context_t']]], - ['configparam0',['configParam0',['../structcy__stc__capsense__alp__fltr__config__t.html#a1899bfbe169a38238c06904b75dede02',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam1',['configParam1',['../structcy__stc__capsense__alp__fltr__config__t.html#a5c8856d048cb9985f4ce1f3f437d8408',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam2',['configParam2',['../structcy__stc__capsense__alp__fltr__config__t.html#a591b9d314484d0279c3addcbbe3f334a',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam3',['configParam3',['../structcy__stc__capsense__alp__fltr__config__t.html#ad3d404cffa7e3a5dc7a3f473fee0b2ab',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam4',['configParam4',['../structcy__stc__capsense__alp__fltr__config__t.html#a6e088e048f665d7517d05ca7c1742832',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['configparam5',['configParam5',['../structcy__stc__capsense__alp__fltr__config__t.html#aea8c1e50bc2f69b60a0ac593571baeb7',1,'cy_stc_capsense_alp_fltr_config_t']]], - ['connectedsnsstate',['connectedSnsState',['../structcy__stc__active__scan__sns__t.html#a2bdf357c40aa4a699ed2c3dc929a32d3',1,'cy_stc_active_scan_sns_t']]], - ['convnum',['convNum',['../structcy__stc__capsense__bist__custom__parameters__t.html#a064aef0add09fe3405402613b9195060',1,'cy_stc_capsense_bist_custom_parameters_t']]], - ['correctioncoeff',['correctionCoeff',['../structcy__stc__capsense__hw__smartsense__config__t.html#a8eaf48cf9b439edec69d4a1928789cf7',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['countermode',['counterMode',['../structcy__stc__capsense__common__config__t.html#a61b95b2bc4ed8eee7ba9f8e02aded59d',1,'cy_stc_capsense_common_config_t']]], - ['cpuclkhz',['cpuClkHz',['../structcy__stc__capsense__common__config__t.html#a53051c09692058cebfe2d5a4faa935c8',1,'cy_stc_capsense_common_config_t']]], - ['crcwdgtid',['crcWdgtId',['../structcy__stc__capsense__bist__context__t.html#a8a26753c42ea1a7f25a5018246c6d941',1,'cy_stc_capsense_bist_context_t']]], - ['crosscouplingth',['crossCouplingTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#a09416d6547439c3fd7ec944f3aa7893f',1,'cy_stc_capsense_advanced_centroid_config_t::crossCouplingTh()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#ad86060f2b4310c6150e555277c209791',1,'cy_stc_capsense_advanced_touchpad_config_t::crossCouplingTh()']]], - ['csdautotuneen',['csdAutotuneEn',['../structcy__stc__capsense__common__config__t.html#a46dabab191776af278a263e931f0c77b',1,'cy_stc_capsense_common_config_t']]], - ['csdcalibrationerror',['csdCalibrationError',['../structcy__stc__capsense__common__config__t.html#a83913223b272b76642a87af8b4e78153',1,'cy_stc_capsense_common_config_t']]], - ['csdcdacautocalen',['csdCdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#af753b92540958a90dc07a2056bf550e4',1,'cy_stc_capsense_common_config_t']]], - ['csdcdacautocalibmin',['csdCdacAutoCalibMin',['../structcy__stc__capsense__common__config__t.html#a9b8bcc292bb98791b20cec38114b40bb',1,'cy_stc_capsense_common_config_t']]], - ['csdcdaccompdivautoen',['csdCdacCompDivAutoEn',['../structcy__stc__capsense__common__config__t.html#a0e144be45499b5bcd7eb38261a6ee745',1,'cy_stc_capsense_common_config_t']]], - ['csdcdaccompen',['csdCdacCompEn',['../structcy__stc__capsense__common__config__t.html#a442673001f67deb01b06f0cc643bc8e5',1,'cy_stc_capsense_common_config_t']]], - ['csdchargetransfer',['csdChargeTransfer',['../structcy__stc__capsense__common__config__t.html#a5e64ba40e4bc04161f1cfff08365b55b',1,'cy_stc_capsense_common_config_t']]], - ['csdcmodconnection',['csdCmodConnection',['../structcy__stc__capsense__internal__context__t.html#a52536fed664d3fc02213044a637d9d80',1,'cy_stc_capsense_internal_context_t']]], - ['csdcshconnection',['csdCshConnection',['../structcy__stc__capsense__internal__context__t.html#a3a30b3c133e73edbb7247dde94b8cfd9',1,'cy_stc_capsense_internal_context_t']]], - ['csdctankshielden',['csdCTankShieldEn',['../structcy__stc__capsense__common__config__t.html#a74c2e88f6c338ad404e26b6e11e5bbc7',1,'cy_stc_capsense_common_config_t']]], - ['csden',['csdEn',['../structcy__stc__capsense__common__config__t.html#a7fddda182e82215e18769618b498357c',1,'cy_stc_capsense_common_config_t']]], - ['csdfineinittime',['csdFineInitTime',['../structcy__stc__capsense__common__config__t.html#a937ca9a7b6a86c4eb8969b4ea1b9fa8f',1,'cy_stc_capsense_common_config_t']]], - ['csdidacaconfig',['csdIdacAConfig',['../structcy__stc__capsense__internal__context__t.html#aa322ece65334e5f6bdc305e196c174e4',1,'cy_stc_capsense_internal_context_t']]], - ['csdidacautocalen',['csdIdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#a2ba2ca9a903e0f7414351629b25f0e92',1,'cy_stc_capsense_common_config_t']]], - ['csdidacautogainen',['csdIdacAutoGainEn',['../structcy__stc__capsense__common__config__t.html#a5302a149824787161c2695232b32c9fa',1,'cy_stc_capsense_common_config_t']]], - ['csdidacbconfig',['csdIdacBConfig',['../structcy__stc__capsense__internal__context__t.html#a60ad882d18e3b4c5ce1137b158ad3676',1,'cy_stc_capsense_internal_context_t']]], - ['csdidaccompen',['csdIdacCompEn',['../structcy__stc__capsense__common__config__t.html#a437d937b2f790a23c4009af497bd3e35',1,'cy_stc_capsense_common_config_t']]], - ['csdidacgaininitindex',['csdIdacGainInitIndex',['../structcy__stc__capsense__common__config__t.html#a50f450472fd4ff69bbfcc992cd1e0a03',1,'cy_stc_capsense_common_config_t']]], - ['csdidacmin',['csdIdacMin',['../structcy__stc__capsense__common__config__t.html#a4fbf20312d5350474cd3b1c6c90c1ce8',1,'cy_stc_capsense_common_config_t']]], - ['csdidacrowcolalignen',['csdIdacRowColAlignEn',['../structcy__stc__capsense__common__config__t.html#a3abde8bd7d00d217b698b202dcd2bb34',1,'cy_stc_capsense_common_config_t']]], - ['csdinactivesnsconnection',['csdInactiveSnsConnection',['../structcy__stc__capsense__common__config__t.html#abe52b6e2f195fc5f638808538c0c0df5',1,'cy_stc_capsense_common_config_t']]], - ['csdinactivesnsdm',['csdInactiveSnsDm',['../structcy__stc__capsense__internal__context__t.html#a2f898bf4518847f17b47956a335f6353',1,'cy_stc_capsense_internal_context_t']]], - ['csdinactivesnshsiom',['csdInactiveSnsHsiom',['../structcy__stc__capsense__internal__context__t.html#a911c7ad42212f5ebc0d82849c27b6e04',1,'cy_stc_capsense_internal_context_t']]], - ['csdinitswres',['csdInitSwRes',['../structcy__stc__capsense__common__config__t.html#adc75f58a3536e80f4aeddbd1b749ff7b',1,'cy_stc_capsense_common_config_t']]], - ['csdmfsdivideroffsetf1',['csdMfsDividerOffsetF1',['../structcy__stc__capsense__common__config__t.html#a2086ec7840bcff2a38a1f4dbc96297ee',1,'cy_stc_capsense_common_config_t']]], - ['csdmfsdivideroffsetf2',['csdMfsDividerOffsetF2',['../structcy__stc__capsense__common__config__t.html#ae84b54901b2a622357902f34444502ca',1,'cy_stc_capsense_common_config_t']]], - ['csdrawtarget',['csdRawTarget',['../structcy__stc__capsense__common__config__t.html#ab21e95353a8fa1abae498d2a110db030',1,'cy_stc_capsense_common_config_t']]], - ['csdrconst',['csdRConst',['../structcy__stc__capsense__common__config__t.html#a3023ed9a75800748f3af86571b42a5b0',1,'cy_stc_capsense_common_config_t']]], - ['csdrefcdacautoen',['csdRefCdacAutoEn',['../structcy__stc__capsense__common__config__t.html#a90837672b37f5f4e86b553c4d53010b4',1,'cy_stc_capsense_common_config_t']]], - ['csdrefcdacrowcolumnalignen',['csdRefCdacRowColumnAlignEn',['../structcy__stc__capsense__common__config__t.html#ab311773c2afdf9dcf1fc58af15a0477d',1,'cy_stc_capsense_common_config_t']]], - ['csdregamuxbufinit',['csdRegAmuxbufInit',['../structcy__stc__capsense__internal__context__t.html#a6c28b93814ffaa55e6fb872700b4ca39',1,'cy_stc_capsense_internal_context_t']]], - ['csdregconfig',['csdRegConfig',['../structcy__stc__capsense__internal__context__t.html#a904304439ab60e08be051b7f3d41e44d',1,'cy_stc_capsense_internal_context_t']]], - ['csdreghscmpinit',['csdRegHscmpInit',['../structcy__stc__capsense__internal__context__t.html#a449bf02b29d79cf2a38e8681041d5552',1,'cy_stc_capsense_internal_context_t']]], - ['csdreghscmpscan',['csdRegHscmpScan',['../structcy__stc__capsense__internal__context__t.html#a9b8255706a4d3e0206a7afdbd4373c94',1,'cy_stc_capsense_internal_context_t']]], - ['csdregiosel',['csdRegIoSel',['../structcy__stc__capsense__internal__context__t.html#a69a75b1f9b0b9ee96d91fec2150e0b2e',1,'cy_stc_capsense_internal_context_t']]], - ['csdregrefgen',['csdRegRefgen',['../structcy__stc__capsense__internal__context__t.html#aea1919ff206aa3b96e18e0f584b41e23',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswamuxbufsel',['csdRegSwAmuxbufSel',['../structcy__stc__capsense__internal__context__t.html#a19d99d39617a9c0e0282028ddd1ba2fe',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswbypsel',['csdRegSwBypSel',['../structcy__stc__capsense__internal__context__t.html#a41e9700e4d9869a223efa4fb8c208011',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswcmpnsel',['csdRegSwCmpNSel',['../structcy__stc__capsense__internal__context__t.html#a14ee87b414f48d9a8c70c11032c823f0',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswcmppsel',['csdRegSwCmpPSel',['../structcy__stc__capsense__internal__context__t.html#a67205084e46e007d0a6d4c8811047845',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswdsisel',['csdRegSwDsiSel',['../structcy__stc__capsense__internal__context__t.html#a988ff22fa06616b19a39c39d169a02f0',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswhspselcmodinit',['csdRegSwHsPSelCmodInit',['../structcy__stc__capsense__internal__context__t.html#af19d498cb29cbaa134653395eafd7ec6',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswhspselctankinit',['csdRegSwHsPSelCtankInit',['../structcy__stc__capsense__internal__context__t.html#ad2aeacf04ec2d90fa491b0eef451010a',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswhspselscan',['csdRegSwHsPSelScan',['../structcy__stc__capsense__internal__context__t.html#a589c74e9be04b3416fadad444150da66',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswrefgensel',['csdRegSwRefGenSel',['../structcy__stc__capsense__internal__context__t.html#afc2655e619b06ba8b961a434b14d30d1',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswresinit',['csdRegSwResInit',['../structcy__stc__capsense__internal__context__t.html#aa6a2613fbe056600e359d10d3865c723',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswresscan',['csdRegSwResScan',['../structcy__stc__capsense__internal__context__t.html#a85cb2b96016d55f3df77b52e9f8a326f',1,'cy_stc_capsense_internal_context_t']]], - ['csdregswshieldselscan',['csdRegSwShieldSelScan',['../structcy__stc__capsense__internal__context__t.html#a0319bc9875f2c2f7cd7eea16cd17b8c2',1,'cy_stc_capsense_internal_context_t']]], - ['csdshielddelay',['csdShieldDelay',['../structcy__stc__capsense__common__config__t.html#ae4bc5430219c2d2613941168464acc96',1,'cy_stc_capsense_common_config_t']]], - ['csdshielden',['csdShieldEn',['../structcy__stc__capsense__common__config__t.html#ad8fa7f6bb76ee337e4c8650a105e30f4',1,'cy_stc_capsense_common_config_t']]], - ['csdshieldmode',['csdShieldMode',['../structcy__stc__capsense__common__config__t.html#abb79c58604dc20c98dcebda8ae1d9a1e',1,'cy_stc_capsense_common_config_t']]], - ['csdshieldnumpin',['csdShieldNumPin',['../structcy__stc__capsense__common__config__t.html#add23287dd34a8fdbf49d4e4bfaf9600a',1,'cy_stc_capsense_common_config_t']]], - ['csdshieldswres',['csdShieldSwRes',['../structcy__stc__capsense__common__config__t.html#a9d116265ff9d889b1b76fa80ff292e32',1,'cy_stc_capsense_common_config_t']]], - ['csdvref',['csdVref',['../structcy__stc__capsense__common__config__t.html#ab982977927531f92c5ac748fa316c06f',1,'cy_stc_capsense_common_config_t']]], - ['csdvrefgain',['csdVrefGain',['../structcy__stc__capsense__internal__context__t.html#a4973e3bb2c5cf514f7950d7bf44268cc',1,'cy_stc_capsense_internal_context_t']]], - ['csdvrefvoltagemv',['csdVrefVoltageMv',['../structcy__stc__capsense__internal__context__t.html#a30c3792b5d6a3df45fe801712fae87d4',1,'cy_stc_capsense_internal_context_t']]], - ['cshieldcap',['cShieldCap',['../structcy__stc__capsense__bist__context__t.html#ad6d854327c533a7e1c2eb625a02dd8cb',1,'cy_stc_capsense_bist_context_t']]], - ['csxautotuneen',['csxAutotuneEn',['../structcy__stc__capsense__common__config__t.html#a9735de5888736467f085c85e66751366',1,'cy_stc_capsense_common_config_t']]], - ['csxcalibrationerror',['csxCalibrationError',['../structcy__stc__capsense__common__config__t.html#a0be983572fd16014ccef16c90b3521e7',1,'cy_stc_capsense_common_config_t']]], - ['csxcdacautocalen',['csxCdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#a419df7ab15c165f2f873aba9b16b227b',1,'cy_stc_capsense_common_config_t']]], - ['csxcdacautocalibmin',['csxCdacAutoCalibMin',['../structcy__stc__capsense__common__config__t.html#a545223c0a8916866fd9b00303112315e',1,'cy_stc_capsense_common_config_t']]], - ['csxcdaccompdivautoen',['csxCdacCompDivAutoEn',['../structcy__stc__capsense__common__config__t.html#af9ba05d0be74df2e9cf11fd2afb88670',1,'cy_stc_capsense_common_config_t']]], - ['csxcdaccompen',['csxCdacCompEn',['../structcy__stc__capsense__common__config__t.html#addb1546d6cdff43117f4da0929734756',1,'cy_stc_capsense_common_config_t']]], - ['csxen',['csxEn',['../structcy__stc__capsense__common__config__t.html#a816a9d211280fa1541cb9d79e790926d',1,'cy_stc_capsense_common_config_t']]], - ['csxfineinittime',['csxFineInitTime',['../structcy__stc__capsense__common__config__t.html#a5fc5e888dc56992a0c194b4c425a8a5d',1,'cy_stc_capsense_common_config_t']]], - ['csxidacautocalen',['csxIdacAutocalEn',['../structcy__stc__capsense__common__config__t.html#a0bb810d87bef97c73582aeb5e44f86cc',1,'cy_stc_capsense_common_config_t']]], - ['csxidacgaininitindex',['csxIdacGainInitIndex',['../structcy__stc__capsense__common__config__t.html#a0cd8747f6c21cb813ecd18edf9d54229',1,'cy_stc_capsense_common_config_t']]], - ['csxinactivesnsconnection',['csxInactiveSnsConnection',['../structcy__stc__capsense__common__config__t.html#ab12b62511a5127255fe4c24775f5eaca',1,'cy_stc_capsense_common_config_t']]], - ['csxinactivesnsdm',['csxInactiveSnsDm',['../structcy__stc__capsense__internal__context__t.html#aea56a94ce27860b10e2aa32ccd52df2c',1,'cy_stc_capsense_internal_context_t']]], - ['csxinactivesnshsiom',['csxInactiveSnsHsiom',['../structcy__stc__capsense__internal__context__t.html#aeb5c1fe75ad52183139cae88db666c6f',1,'cy_stc_capsense_internal_context_t']]], - ['csxinitshieldswres',['csxInitShieldSwRes',['../structcy__stc__capsense__common__config__t.html#afde18fd9f1dfb9d859cd24ec0814a57c',1,'cy_stc_capsense_common_config_t']]], - ['csxinitswres',['csxInitSwRes',['../structcy__stc__capsense__common__config__t.html#aaa99b5e4cc5ed3211dc14941064a082a',1,'cy_stc_capsense_common_config_t']]], - ['csxmfsdivideroffsetf1',['csxMfsDividerOffsetF1',['../structcy__stc__capsense__common__config__t.html#a07e6050b71ba83dd4a5baf3e1380956f',1,'cy_stc_capsense_common_config_t']]], - ['csxmfsdivideroffsetf2',['csxMfsDividerOffsetF2',['../structcy__stc__capsense__common__config__t.html#a9b7eca3dd5ff0f135ce8785fa3fd4f2f',1,'cy_stc_capsense_common_config_t']]], - ['csxrawtarget',['csxRawTarget',['../structcy__stc__capsense__common__config__t.html#aa5656822ae92239213960e8c8e8e5d8e',1,'cy_stc_capsense_common_config_t']]], - ['csxrefcdacautoen',['csxRefCdacAutoEn',['../structcy__stc__capsense__common__config__t.html#a8fbd6eca9f5700de8ebb37d349713c1b',1,'cy_stc_capsense_common_config_t']]], - ['csxrefgain',['csxRefGain',['../structcy__stc__capsense__common__config__t.html#ac5354e52ee64d8d1afac351a9d8a0428',1,'cy_stc_capsense_common_config_t']]], - ['csxregamuxbuf',['csxRegAMuxBuf',['../structcy__stc__capsense__internal__context__t.html#a930ea5e7b3a0ab55e3d245a4c7fcaa44',1,'cy_stc_capsense_internal_context_t']]], - ['csxregconfiginit',['csxRegConfigInit',['../structcy__stc__capsense__internal__context__t.html#a4769ef311a77513a99e8aa77ae0be92e',1,'cy_stc_capsense_internal_context_t']]], - ['csxregconfigscan',['csxRegConfigScan',['../structcy__stc__capsense__internal__context__t.html#a6af1dd5754837d8be8da11a72241cc15',1,'cy_stc_capsense_internal_context_t']]], - ['csxregrefgen',['csxRegRefgen',['../structcy__stc__capsense__internal__context__t.html#a43ebfc2e417b5727b9968f3a9f9d5446',1,'cy_stc_capsense_internal_context_t']]], - ['csxregrefgensel',['csxRegRefgenSel',['../structcy__stc__capsense__internal__context__t.html#a1aae8b3da9ccfdc7af195dc760390588',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswcmpnsel',['csxRegSwCmpNSel',['../structcy__stc__capsense__internal__context__t.html#afdca09ebf3e847d35b4175a20761b09b',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswrefgensel',['csxRegSwRefGenSel',['../structcy__stc__capsense__internal__context__t.html#af4fab337c4d3a776ad5aacf47da8c31f',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswresinit',['csxRegSwResInit',['../structcy__stc__capsense__internal__context__t.html#a1f11ddec8ecd0a2aed8347d237e5495f',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswresprech',['csxRegSwResPrech',['../structcy__stc__capsense__internal__context__t.html#a0c1d55db8fd5b06a7f94d7ce8fa74966',1,'cy_stc_capsense_internal_context_t']]], - ['csxregswresscan',['csxRegSwResScan',['../structcy__stc__capsense__internal__context__t.html#a4a22eb64852220cd5ca1197e384dd737',1,'cy_stc_capsense_internal_context_t']]], - ['csxscanshieldswres',['csxScanShieldSwRes',['../structcy__stc__capsense__common__config__t.html#aa6917c3c8a71cb3c44e47cbe32742de5',1,'cy_stc_capsense_common_config_t']]], - ['csxscanswres',['csxScanSwRes',['../structcy__stc__capsense__common__config__t.html#a01c2adce03bd2616b2d1c7acd13a158d',1,'cy_stc_capsense_common_config_t']]], - ['curbistchid',['curBistChId',['../structcy__stc__capsense__bist__context__t.html#aa8ba6858f7d0f4b24360398e483a1042',1,'cy_stc_capsense_bist_context_t']]], - ['curbistslotid',['curBistSlotId',['../structcy__stc__capsense__bist__context__t.html#aa4ca425d2df888cd993350dad4508068',1,'cy_stc_capsense_bist_context_t']]], - ['curptreltdcfg',['curPtrEltdCfg',['../structcy__stc__capsense__bist__context__t.html#a76db306b09b761ca50592ed7bda6d703',1,'cy_stc_capsense_bist_context_t']]], - ['currentchannelslotindex',['currentChannelSlotIndex',['../structcy__stc__active__scan__sns__t.html#ab8243ea0223f5e51f7466138dcf83f76',1,'cy_stc_active_scan_sns_t']]], - ['currentisc',['currentISC',['../structcy__stc__capsense__bist__context__t.html#a5ec842573f2642d54e2d76c26556d674',1,'cy_stc_capsense_bist_context_t']]], - ['currentsensemethod',['currentSenseMethod',['../structcy__stc__active__scan__sns__t.html#a623c26b8d6deb2025f4a4ae186bdb8b5',1,'cy_stc_active_scan_sns_t']]], - ['currentslotindex',['currentSlotIndex',['../structcy__stc__capsense__internal__context__t.html#a5896555e734e28ca9c0c59624c05ad7b',1,'cy_stc_capsense_internal_context_t']]], - ['currenttimestamp',['currentTimestamp',['../structcy__stc__capsense__ballistic__context__t.html#a1bc85f04ebaefcabd217c5cd6edcd701',1,'cy_stc_capsense_ballistic_context_t']]], - ['customisc',['customISC',['../structcy__stc__capsense__bist__custom__parameters__t.html#a0454367cc4a77a7e20a1864fa3d3e5f3',1,'cy_stc_capsense_bist_custom_parameters_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_3.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_3.html deleted file mode 100644 index f95e34c60f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_3.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_3.js deleted file mode 100644 index f41f691035..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_3.js +++ /dev/null @@ -1,29 +0,0 @@ -var searchData= -[ - ['dataparam0',['dataParam0',['../structcy__stc__capsense__alp__fltr__channel__t.html#a4eeaf7e6e557a71e478f2ebdb50574de',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam1',['dataParam1',['../structcy__stc__capsense__alp__fltr__channel__t.html#a6cbff9d935df1845ac6cdf4172c7209b',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam2',['dataParam2',['../structcy__stc__capsense__alp__fltr__channel__t.html#ae21096248150ede5126f6372dc8bc6e9',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam3',['dataParam3',['../structcy__stc__capsense__alp__fltr__channel__t.html#a1bd5de721828504f592e4ed5d55e0564',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam4',['dataParam4',['../structcy__stc__capsense__alp__fltr__channel__t.html#ac62dc41e0fd4f3ccd948f866549ea11e',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam5',['dataParam5',['../structcy__stc__capsense__alp__fltr__channel__t.html#a4372588f14b58af19f65cb07aa13e847',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam6',['dataParam6',['../structcy__stc__capsense__alp__fltr__channel__t.html#a40660b6044aa1b08f4e54629dcf0ce22',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['dataparam7',['dataParam7',['../structcy__stc__capsense__alp__fltr__channel__t.html#a885a5ec429033d11ae602ebaf7676413',1,'cy_stc_capsense_alp_fltr_channel_t']]], - ['debounce',['debounce',['../structcy__stc__capsense__ofsl__context__t.html#a8b38d4d85c4c429162a82f66494bab4c',1,'cy_stc_capsense_ofsl_context_t::debounce()'],['../structcy__stc__capsense__tfsl__context__t.html#a716e4c137b9094a50dd9c85cb46327ea',1,'cy_stc_capsense_tfsl_context_t::debounce()'],['../structcy__stc__capsense__tfzm__context__t.html#a3a6d2543ec80c8af2b26ecd1e9cb4544',1,'cy_stc_capsense_tfzm_context_t::debounce()'],['../structcy__stc__capsense__ofrt__context__t.html#a3d14b869436d9a7a23c57db47a665140',1,'cy_stc_capsense_ofrt_context_t::debounce()']]], - ['deconvcoef',['deconvCoef',['../structcy__stc__capsense__mptx__table__t.html#ae8ac82d905314c32e7ef37ab51def597',1,'cy_stc_capsense_mptx_table_t']]], - ['deltax',['deltaX',['../structcy__stc__capsense__ballistic__delta__t.html#a454e97190a56ea9075d1764b214203d9',1,'cy_stc_capsense_ballistic_delta_t']]], - ['deltaxfrac',['deltaXfrac',['../structcy__stc__capsense__ballistic__context__t.html#a8fe77855d41716420ecb5b8a6a4726d5',1,'cy_stc_capsense_ballistic_context_t']]], - ['deltay',['deltaY',['../structcy__stc__capsense__ballistic__delta__t.html#a469d02345ffee521218243a7d2e61fb4',1,'cy_stc_capsense_ballistic_delta_t']]], - ['deltayfrac',['deltaYfrac',['../structcy__stc__capsense__ballistic__context__t.html#ada5af6548b412a22be7317001ceafa1d',1,'cy_stc_capsense_ballistic_context_t']]], - ['detected',['detected',['../structcy__stc__capsense__gesture__context__t.html#a607d08f453a989754dd877c3118ec4c4',1,'cy_stc_capsense_gesture_context_t']]], - ['diff',['diff',['../structcy__stc__capsense__sensor__context__t.html#ae3a77556515876cf00e178ccc7cbd606',1,'cy_stc_capsense_sensor_context_t']]], - ['direction',['direction',['../structcy__stc__capsense__ofsl__context__t.html#a16e86b0e4a4e18f39d1d04af5f19f77b',1,'cy_stc_capsense_ofsl_context_t::direction()'],['../structcy__stc__capsense__tfsl__context__t.html#af33814e8e0f9b68b402b92868d440997',1,'cy_stc_capsense_tfsl_context_t::direction()'],['../structcy__stc__capsense__gesture__context__t.html#a2951e786f1279c80f1210b5d69339681',1,'cy_stc_capsense_gesture_context_t::direction()']]], - ['distancemap',['distanceMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#aea8ff4b04a46ed06f2e05ebdb85d2e7a',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['distancex',['distanceX',['../structcy__stc__capsense__tfzm__context__t.html#aeba8c48b23a049c2c427c01d79f8cf4a',1,'cy_stc_capsense_tfzm_context_t']]], - ['distancey',['distanceY',['../structcy__stc__capsense__tfzm__context__t.html#af80b64aea8441ddd468baa43048846a4',1,'cy_stc_capsense_tfzm_context_t']]], - ['divisorvalue',['divisorValue',['../structcy__stc__capsense__ballistic__config__t.html#a847c20119361422daf67ca877c6ef456',1,'cy_stc_capsense_ballistic_config_t']]], - ['divval',['divVal',['../structcy__stc__capsense__adaptive__filter__config__t.html#a9a1c907add092d6754cb3d5669b26b19',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['dmachainrdchindex',['dmaChainRdChIndex',['../structcy__stc__msc__channel__config__t.html#a033754c3c8cbe3ef754684056f7f7154',1,'cy_stc_msc_channel_config_t']]], - ['dmachainwrchindex',['dmaChainWrChIndex',['../structcy__stc__msc__channel__config__t.html#a88bf57540e88d8a4fdf81e8ae19d952d',1,'cy_stc_msc_channel_config_t']]], - ['dmardchindex',['dmaRdChIndex',['../structcy__stc__msc__channel__config__t.html#ac8026a90b58820b2e621496847d83591',1,'cy_stc_msc_channel_config_t']]], - ['dmawrchindex',['dmaWrChIndex',['../structcy__stc__msc__channel__config__t.html#ac86892509bd5574480a67d459cdb9f8b',1,'cy_stc_msc_channel_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_4.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_4.html deleted file mode 100644 index d7db285eee..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_4.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_4.js deleted file mode 100644 index 39be879af5..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_4.js +++ /dev/null @@ -1,35 +0,0 @@ -var searchData= -[ - ['edge',['edge',['../structcy__stc__capsense__ofes__context__t.html#ac157aeb4721e704a38dff878b34f4bbf',1,'cy_stc_capsense_ofes_context_t']]], - ['edgeanglemax',['edgeAngleMax',['../structcy__stc__capsense__gesture__config__t.html#a3e6b32e61c14bedfe0dae9fa6fa2ae76',1,'cy_stc_capsense_gesture_config_t']]], - ['edgecorrectionen',['edgeCorrectionEn',['../structcy__stc__capsense__advanced__centroid__config__t.html#a5101330723664b0878203d70729b0f81',1,'cy_stc_capsense_advanced_centroid_config_t']]], - ['edgedistancemin',['edgeDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#a18f7465297e8f690506025215800585a',1,'cy_stc_capsense_gesture_config_t']]], - ['edgeedgesize',['edgeEdgeSize',['../structcy__stc__capsense__gesture__config__t.html#aa9a25c2b003808ad393ca2a00dc3f531',1,'cy_stc_capsense_gesture_config_t']]], - ['edgetimeoutmax',['edgeTimeoutMax',['../structcy__stc__capsense__gesture__config__t.html#a2b78f409219d6f4de0e86b0554c2ec57',1,'cy_stc_capsense_gesture_config_t']]], - ['eltdcapcsdisc',['eltdCapCsdISC',['../structcy__stc__capsense__bist__context__t.html#a22d5181fd636a7ff20a47559140e1e39',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapcsxisc',['eltdCapCsxISC',['../structcy__stc__capsense__bist__context__t.html#a6370446fb7f72be84768cb8fb68c7375',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapmodclk',['eltdCapModClk',['../structcy__stc__capsense__bist__context__t.html#a331645cdb0494af471f9bdd735ede166',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumcoarseinitchargecycles',['eltdCapNumCoarseInitChargeCycles',['../structcy__stc__capsense__bist__context__t.html#a55e98b35113dc48452e9abfb141630fb',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumcoarseinitsettlecycles',['eltdCapNumCoarseInitSettleCycles',['../structcy__stc__capsense__bist__context__t.html#a328937ede13f24976b5da9cbfd199850',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumepicycles',['eltdCapNumEpiCycles',['../structcy__stc__capsense__bist__context__t.html#ad088d340194dd87d2bf6eedbb35704c3',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumfineinitcycles',['eltdCapNumFineInitCycles',['../structcy__stc__capsense__bist__context__t.html#ad94089c4e62e6ea3eba8083fd7153e71',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapnumfineinitwaitcycles',['eltdCapNumFineInitWaitCycles',['../structcy__stc__capsense__bist__context__t.html#a318f6d95e0876a729148b7329afb133b',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcaprefcdac',['eltdCapRefCdac',['../structcy__stc__capsense__bist__context__t.html#a2216e6fded31e9f57f46da1ea33f2502',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapresolution',['eltdCapResolution',['../structcy__stc__capsense__bist__context__t.html#a234d9c4330bd5e4f6eaf0241d9b7da01',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapscanmode',['eltdCapScanMode',['../structcy__stc__capsense__bist__context__t.html#a68f923d9a58298b9df352b6a275425ae',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsensegroup',['eltdCapSenseGroup',['../structcy__stc__capsense__bist__context__t.html#a0c9e63a331fdb827a3eae43e735aa3cb',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsnsclk',['eltdCapSnsClk',['../structcy__stc__capsense__bist__context__t.html#a6b8b7d2d90ea3d1dde78f8cea3f7f40c',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsnsclkfreqhz',['eltdCapSnsClkFreqHz',['../structcy__stc__capsense__bist__context__t.html#a3fecccd03e56148f208e64836aa070b4',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapsubconvnum',['eltdCapSubConvNum',['../structcy__stc__capsense__bist__context__t.html#a870579effe976006517e80af1bcc477d',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapvrefgain',['eltdCapVrefGain',['../structcy__stc__capsense__bist__context__t.html#a2acbf7fcbd54f316d5ed0cd6f0be6748',1,'cy_stc_capsense_bist_context_t']]], - ['eltdcapvrefmv',['eltdCapVrefMv',['../structcy__stc__capsense__bist__context__t.html#a00a9b297c1710c64237e41cf65b52dd4',1,'cy_stc_capsense_bist_context_t']]], - ['eltdinactivedm',['eltdInactiveDm',['../structcy__stc__capsense__bist__context__t.html#a7d5b5f1ee829b5f6efb84087d85c52f7',1,'cy_stc_capsense_bist_context_t']]], - ['eltdinactivehsiom',['eltdInactiveHsiom',['../structcy__stc__capsense__bist__context__t.html#a5216364c35b222d89751930d8eec0050',1,'cy_stc_capsense_bist_context_t']]], - ['endslotindex',['endSlotIndex',['../structcy__stc__capsense__internal__context__t.html#a0bb5e146f355a51b8bffced67bf1c4a8',1,'cy_stc_capsense_internal_context_t']]], - ['extcapidacpa',['extCapIdacPa',['../structcy__stc__capsense__bist__context__t.html#a02ec16251b0f3ad575db0d179f879c87',1,'cy_stc_capsense_bist_context_t']]], - ['extcapmodclk',['extCapModClk',['../structcy__stc__capsense__bist__context__t.html#a8ffe130298947c266c56ddfdd64f8420',1,'cy_stc_capsense_bist_context_t']]], - ['extcapsnsclk',['extCapSnsClk',['../structcy__stc__capsense__bist__context__t.html#a35acc7ff82625d0f4ddd9e3c020ee406',1,'cy_stc_capsense_bist_context_t']]], - ['extcapvrefgain',['extCapVrefGain',['../structcy__stc__capsense__bist__context__t.html#af41b354a7c567232a7572a73ed0bc5b9',1,'cy_stc_capsense_bist_context_t']]], - ['extcapvrefmv',['extCapVrefMv',['../structcy__stc__capsense__bist__context__t.html#a64ff2a0e0441bb1d7c9c1062283e897b',1,'cy_stc_capsense_bist_context_t']]], - ['extcapwdt',['extCapWDT',['../structcy__stc__capsense__bist__context__t.html#a71c6e39161ae61c940eb57c948efbf3c',1,'cy_stc_capsense_bist_context_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_5.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_5.html deleted file mode 100644 index 7bbceeb0db..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_5.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_5.js deleted file mode 100644 index ead38a2ff3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_5.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['fineinittime',['fineInitTime',['../structcy__stc__capsense__bist__context__t.html#a5fc71d7b28788af5ec71a5e45c8ccf8e',1,'cy_stc_capsense_bist_context_t::fineInitTime()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#a73d52513a1573f6fe1ad64ed47956660',1,'cy_stc_capsense_bist_custom_parameters_t::fineInitTime()']]], - ['fingercap',['fingerCap',['../structcy__stc__capsense__auto__tune__config__t.html#a1cfd6c229a3feee37da2016b69128be8',1,'cy_stc_capsense_auto_tune_config_t::fingerCap()'],['../structcy__stc__capsense__hw__smartsense__config__t.html#a04fc4c86b50f4e4cde839b048b484b25',1,'cy_stc_capsense_hw_smartsense_config_t::fingerCap()'],['../structcy__stc__capsense__widget__context__t.html#aaddfea3cc416d040629708d1723c12f6',1,'cy_stc_capsense_widget_context_t::fingerCap()']]], - ['fingercapval',['fingerCapVal',['../structcy__stc__capsense__widget__crc__data__t.html#a2c02fa3c77712c71160208f61b1d7f66',1,'cy_stc_capsense_widget_crc_data_t']]], - ['fingerposindexmap',['fingerPosIndexMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#af4749658a6668c77f5ed0c326cf6308e',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['fingerth',['fingerTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#ab7f5ac133fa009e0999779d34ee0c59e',1,'cy_stc_capsense_advanced_centroid_config_t::fingerTh()'],['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a87e1518bbd9d2c9745c1e51aee9e1380',1,'cy_stc_capsense_smartsense_update_thresholds_t::fingerTh()'],['../structcy__stc__capsense__widget__context__t.html#ab1730b817a861922f4375527d7a1d3b4',1,'cy_stc_capsense_widget_context_t::fingerTh()']]], - ['fingerthval',['fingerThVal',['../structcy__stc__capsense__widget__crc__data__t.html#a373d9ef4767624a402f7b5212474c2e7',1,'cy_stc_capsense_widget_crc_data_t']]], - ['firstslotid',['firstSlotId',['../structcy__stc__capsense__widget__config__t.html#a87a81dc03b7e5a64d58ed7286765bd63',1,'cy_stc_capsense_widget_config_t']]], - ['flickdistancemin',['flickDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#a4368430ad62e713cfa9c91275ffcceda',1,'cy_stc_capsense_gesture_config_t']]], - ['flicktimeoutmax',['flickTimeoutMax',['../structcy__stc__capsense__gesture__config__t.html#ac6379bfa4aa94d4031692bc31eeee6e1',1,'cy_stc_capsense_gesture_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_6.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_6.html deleted file mode 100644 index 4eb162d674..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_6.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_6.js deleted file mode 100644 index 2377114302..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_6.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['gainreg',['gainReg',['../structcy__stc__capsense__idac__gain__table__t.html#ad44c7d56219cb4db0e7aaaba7821fb40',1,'cy_stc_capsense_idac_gain_table_t']]], - ['gainvalue',['gainValue',['../structcy__stc__capsense__idac__gain__table__t.html#ae0e27b2d2c7a17bde0d7ed7c00bd0074',1,'cy_stc_capsense_idac_gain_table_t']]], - ['gesturedetected',['gestureDetected',['../structcy__stc__capsense__widget__context__t.html#a1abcf6d1b22d6cc09006eb81576f81f6',1,'cy_stc_capsense_widget_context_t']]], - ['gesturedirection',['gestureDirection',['../structcy__stc__capsense__widget__context__t.html#a1bd21ada41343af3e4102b85ab62edab',1,'cy_stc_capsense_widget_context_t']]], - ['gestureenablemask',['gestureEnableMask',['../structcy__stc__capsense__gesture__config__t.html#a47ee76801d9ab0c1c11e057d12fb37cc',1,'cy_stc_capsense_gesture_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_7.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_7.html deleted file mode 100644 index 0408829580..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_7.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_7.js deleted file mode 100644 index cd12a4a951..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_7.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['history',['history',['../structcy__stc__capsense__ofrt__context__t.html#a4df4b5e9a02cba4b6bba8e6c10c2c68e',1,'cy_stc_capsense_ofrt_context_t']]], - ['hwconfig',['hwConfig',['../structcy__stc__capsense__bist__context__t.html#a9bbdef6eb05a232f7086011dbea72715',1,'cy_stc_capsense_bist_context_t']]], - ['hwconfigstate',['hwConfigState',['../structcy__stc__capsense__internal__context__t.html#ae3fb1a265c11df1cab525e6ba7149110',1,'cy_stc_capsense_internal_context_t']]], - ['hysteresis',['hysteresis',['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a958e9740d154803f7fbf750862d8713c',1,'cy_stc_capsense_smartsense_update_thresholds_t::hysteresis()'],['../structcy__stc__capsense__widget__context__t.html#aa68dc0f3bc6719620eb8b98b0b8c9e43',1,'cy_stc_capsense_widget_context_t::hysteresis()']]], - ['hysteresisval',['hysteresisVal',['../structcy__stc__capsense__widget__crc__data__t.html#aed1891221adb2937e8de946ef4b2d02d',1,'cy_stc_capsense_widget_crc_data_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_8.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_8.html deleted file mode 100644 index d54d096660..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_8.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_8.js deleted file mode 100644 index ee82f0bc95..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_8.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['id',['id',['../structcy__stc__capsense__position__t.html#ab5fb803657d04c35adc32a2685905e67',1,'cy_stc_capsense_position_t']]], - ['idaccomp',['idacComp',['../structcy__stc__capsense__sensor__context__t.html#a242877120ccdac585a0f001736fe7be2',1,'cy_stc_capsense_sensor_context_t::idacComp()'],['../structcy__stc__capsense__auto__tune__config__t.html#a7c937fca893ce53a81dd29d5541c2b75',1,'cy_stc_capsense_auto_tune_config_t::iDacComp()']]], - ['idacgain',['iDacGain',['../structcy__stc__capsense__auto__tune__config__t.html#aaa6b7ff2794e44d8f333ecf6048dd6f6',1,'cy_stc_capsense_auto_tune_config_t']]], - ['idacgainindex',['idacGainIndex',['../structcy__stc__capsense__widget__context__t.html#aca335177119844084a40aab5a8e4022e',1,'cy_stc_capsense_widget_context_t::idacGainIndex()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#a60c9a9e518194f83bd0bba955066474f',1,'cy_stc_capsense_bist_custom_parameters_t::idacGainIndex()']]], - ['idacgainindexval',['idacGainIndexVal',['../structcy__stc__capsense__widget__crc__data__t.html#a16b1ee33055b4f7d5c1d9c6ff0cdade2',1,'cy_stc_capsense_widget_crc_data_t']]], - ['idacgaintable',['idacGainTable',['../structcy__stc__capsense__common__config__t.html#aa420b265a50ab175b9a0902bcc3a0b08',1,'cy_stc_capsense_common_config_t']]], - ['idacmod',['iDacMod',['../structcy__stc__capsense__auto__tune__config__t.html#adbec8688c917a7a25a7cc4b14b1e49ed',1,'cy_stc_capsense_auto_tune_config_t::iDacMod()'],['../structcy__stc__capsense__widget__context__t.html#a0af701de0ec391286d2df0ba67299b9d',1,'cy_stc_capsense_widget_context_t::idacMod()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#ada4f2a1109cc40af7ad1455e67252153',1,'cy_stc_capsense_bist_custom_parameters_t::idacMod()']]], - ['idacmodval',['idacModVal',['../structcy__stc__capsense__widget__crc__data__t.html#a7377454579441d2f33c2d96b458e5bba',1,'cy_stc_capsense_widget_crc_data_t']]], - ['iircoeff',['iirCoeff',['../structcy__stc__capsense__widget__config__t.html#a3837d9686917c0fdfc96cadb261dbc03',1,'cy_stc_capsense_widget_config_t']]], - ['initdone',['initDone',['../structcy__stc__capsense__common__context__t.html#a0181ebd06d8e03e3b18ac5c08ca14742',1,'cy_stc_capsense_common_context_t']]], - ['intrcsdinactsnsconn',['intrCsdInactSnsConn',['../structcy__stc__capsense__internal__context__t.html#ac5af80cd4336ff0a3ca1e4b3a94c2343',1,'cy_stc_capsense_internal_context_t']]], - ['intrcsdrawtarget',['intrCsdRawTarget',['../structcy__stc__capsense__internal__context__t.html#a3e4d3c24280c56169f481c91db5928e7',1,'cy_stc_capsense_internal_context_t']]], - ['intrcsxinactsnsconn',['intrCsxInactSnsConn',['../structcy__stc__capsense__internal__context__t.html#a1b23217340d393196be42de9c458aec8',1,'cy_stc_capsense_internal_context_t']]], - ['intrcsxrawtarget',['intrCsxRawTarget',['../structcy__stc__capsense__internal__context__t.html#aa567c9166072174f081d982b47246c47',1,'cy_stc_capsense_internal_context_t']]], - ['intreltdcapcsdisc',['intrEltdCapCsdISC',['../structcy__stc__capsense__bist__context__t.html#ac61c103d20cb691984135ab15b7c7a24',1,'cy_stc_capsense_bist_context_t']]], - ['intreltdcapcsxisc',['intrEltdCapCsxISC',['../structcy__stc__capsense__bist__context__t.html#a5f7f79777ce7fb2bcd270d1001a7f932',1,'cy_stc_capsense_bist_context_t']]], - ['intreltdcapshieldisc',['intrEltdCapShieldISC',['../structcy__stc__capsense__bist__context__t.html#af75d6d1eea62a6f89d6d812cd6488252',1,'cy_stc_capsense_bist_context_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_9.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_9.html deleted file mode 100644 index 234dc60a4a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_9.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_9.js deleted file mode 100644 index b03891a5e6..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_9.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['kref0',['kRef0',['../structcy__stc__capsense__hw__smartsense__config__t.html#ac994abd06182304e0f7b719d6227045c',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['kref1',['kRef1',['../structcy__stc__capsense__hw__smartsense__config__t.html#aaa311c6f97cd552002d089d0cbee73c8',1,'cy_stc_capsense_hw_smartsense_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_a.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_a.html deleted file mode 100644 index 0892488159..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_a.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_a.js deleted file mode 100644 index 343121085e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_a.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['largemovth',['largeMovTh',['../structcy__stc__capsense__adaptive__filter__config__t.html#a61cd3ed526985b0b9d6c2a8a10e15c45',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['lfsrbits',['lfsrBits',['../structcy__stc__capsense__widget__context__t.html#a722806ceec62995188beb928c08fa6f2',1,'cy_stc_capsense_widget_context_t::lfsrBits()'],['../structcy__stc__capsense__widget__crc__data__t.html#acb3c7a99f4ee1d0d3fbeda0b4b213f7e',1,'cy_stc_capsense_widget_crc_data_t::lfsrBits()']]], - ['lfsrditherlimit',['lfsrDitherLimit',['../structcy__stc__capsense__widget__config__t.html#a445ca73990cf5d8d7eabf37dd3411267',1,'cy_stc_capsense_widget_config_t']]], - ['lfsrpoly',['lfsrPoly',['../structcy__stc__capsense__common__context__t.html#a6de81bf892d8f25e7cd5ea1428d9a2c9',1,'cy_stc_capsense_common_context_t']]], - ['lfsrscale',['lfsrScale',['../structcy__stc__capsense__common__context__t.html#a971f5a3a5454addde057e0f9179e77e8',1,'cy_stc_capsense_common_context_t']]], - ['linksmap',['linksMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a7046ab5dc8799356f0cc4730c855ed4a',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['littlemovth',['littleMovTh',['../structcy__stc__capsense__adaptive__filter__config__t.html#abee594ea7f9a29ee29651de847e43f86',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['lowbslnrst',['lowBslnRst',['../structcy__stc__capsense__widget__context__t.html#abcf89959f49d28d2d396d8beaae05710',1,'cy_stc_capsense_widget_context_t']]], - ['lowbslnrstval',['lowBslnRstVal',['../structcy__stc__capsense__widget__crc__data__t.html#a1b9cf99918a603703887386a91037fcb',1,'cy_stc_capsense_widget_crc_data_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_b.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_b.html deleted file mode 100644 index ea46965c3a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_b.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_b.js deleted file mode 100644 index 8a40a5580b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_b.js +++ /dev/null @@ -1,19 +0,0 @@ -var searchData= -[ - ['mapsensemethod',['mapSenseMethod',['../structcy__stc__capsense__internal__context__t.html#a399b90e9f0e47a18b2fa5ea534490669',1,'cy_stc_capsense_internal_context_t']]], - ['markindicesmap',['markIndicesMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a895f5397bf9d29ad2c0cbd4fadb111fe',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['masterchannelid',['masterChannelId',['../structcy__stc__capsense__common__config__t.html#a83193308eed26797a1ea8c9316a1614a',1,'cy_stc_capsense_common_config_t']]], - ['maxk',['maxK',['../structcy__stc__capsense__adaptive__filter__config__t.html#a917e444f748280dc2e325f062600e878',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['maxrawcount',['maxRawCount',['../structcy__stc__capsense__widget__context__t.html#a5bacc4b698a7982c3fb687a22b9e3287',1,'cy_stc_capsense_widget_context_t']]], - ['maxrawcountrow',['maxRawCountRow',['../structcy__stc__capsense__widget__context__t.html#a8539aedfd64eb185aa738e8f7db03547',1,'cy_stc_capsense_widget_context_t']]], - ['mfschannelindex',['mfsChannelIndex',['../structcy__stc__active__scan__sns__t.html#abb24deb10dc9b5f7e654cdcd0916938b',1,'cy_stc_active_scan_sns_t']]], - ['mfsconfig',['mfsConfig',['../structcy__stc__capsense__widget__config__t.html#aa3e4f9fe91ed0dd44f74246ea10ad98e',1,'cy_stc_capsense_widget_config_t']]], - ['mink',['minK',['../structcy__stc__capsense__adaptive__filter__config__t.html#a8202d5f56b17bd01a1957a05bea2f489',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['minsmap',['minsMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a4478e1addf6cd6f858c74a742a76f79f',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['modclk',['modClk',['../structcy__stc__capsense__bist__custom__parameters__t.html#aafb50e8ce6fad46c3a8b0224ce1714b6',1,'cy_stc_capsense_bist_custom_parameters_t::modClk()'],['../structcy__stc__capsense__common__context__t.html#a5468b6895f747291aeb4225a66ff2ccd',1,'cy_stc_capsense_common_context_t::modClk()']]], - ['modclock',['modClock',['../structcy__stc__capsense__hw__smartsense__config__t.html#a79876e7ae4c8fd5941ba81d55f5dbcf1',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['modcsdclk',['modCsdClk',['../structcy__stc__capsense__common__context__t.html#a867653a126683191970d79f8b6005926',1,'cy_stc_capsense_common_context_t']]], - ['modcsxclk',['modCsxClk',['../structcy__stc__capsense__common__context__t.html#a7284658d282945e1ed7f624683677829',1,'cy_stc_capsense_common_context_t']]], - ['mptxen',['mptxEn',['../structcy__stc__capsense__common__config__t.html#a2232960a59428e457f1e8a6157aa76af',1,'cy_stc_capsense_common_config_t']]], - ['mptxorder',['mptxOrder',['../structcy__stc__capsense__widget__config__t.html#a4e01e290b3e719d1511464cc166466e9',1,'cy_stc_capsense_widget_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_c.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_c.html deleted file mode 100644 index 94bf1a67c1..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_c.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_c.js deleted file mode 100644 index 310dbfe31b..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_c.js +++ /dev/null @@ -1,35 +0,0 @@ -var searchData= -[ - ['negbslnrstcnt',['negBslnRstCnt',['../structcy__stc__capsense__sensor__context__t.html#a0dfea7d7b4a9b3858a203a54df8bc3fc',1,'cy_stc_capsense_sensor_context_t']]], - ['newactiveidsmask',['newActiveIdsMask',['../structcy__stc__capsense__csx__touch__buffer__t.html#a9267df7cd343b44ee9dddfdf64a4e210',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['newpeak',['newPeak',['../structcy__stc__capsense__csx__touch__buffer__t.html#a8ede0076f02b01e43bdf7d01a90e5d8b',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['newpeaknumber',['newPeakNumber',['../structcy__stc__capsense__csx__touch__buffer__t.html#a497b8e96e84f765fc258f34f071aa999',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['nnoiseth',['nNoiseTh',['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a0e03cc2b5dcfb072e46e2d4a6afb2ef6',1,'cy_stc_capsense_smartsense_update_thresholds_t::nNoiseTh()'],['../structcy__stc__capsense__widget__context__t.html#adc6e85b229b16fe88fed03b576f213cd',1,'cy_stc_capsense_widget_context_t::nNoiseTh()']]], - ['nnoisethval',['nNoiseThVal',['../structcy__stc__capsense__widget__crc__data__t.html#a3673f2332d36b3f3ed60dfcd46f88e6a',1,'cy_stc_capsense_widget_crc_data_t']]], - ['noiseth',['noiseTh',['../structcy__stc__capsense__smartsense__update__thresholds__t.html#a6278afa4506e0f81410444bc8bd4ef6e',1,'cy_stc_capsense_smartsense_update_thresholds_t::noiseTh()'],['../structcy__stc__capsense__widget__context__t.html#abc7ea702d95e07827cb3f8b6d97aed8d',1,'cy_stc_capsense_widget_context_t::noiseTh()']]], - ['noisethval',['noiseThVal',['../structcy__stc__capsense__widget__crc__data__t.html#a8e0385e6387e58cdedfb31ea60628420',1,'cy_stc_capsense_widget_crc_data_t']]], - ['nomovth',['noMovTh',['../structcy__stc__capsense__adaptive__filter__config__t.html#ab838a235c299b6d9ea57bd3fc41568d8',1,'cy_stc_capsense_adaptive_filter_config_t']]], - ['nsub0',['nSub0',['../structcy__stc__capsense__hw__smartsense__config__t.html#a560e8916b9705aadf8e40ada836d20b1',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['nsub1',['nSub1',['../structcy__stc__capsense__hw__smartsense__config__t.html#a2a98613f09584619d05d12e233f6b7db',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['numbadscans',['numBadScans',['../structcy__stc__capsense__common__config__t.html#ab8710c21be1223cfc8b6caf158bd50ff',1,'cy_stc_capsense_common_config_t']]], - ['numchannels',['numChannels',['../structcy__stc__capsense__common__config__t.html#a192101f96101897abb7ab8a0767532ad',1,'cy_stc_capsense_common_config_t']]], - ['numchips',['numChips',['../structcy__stc__capsense__common__config__t.html#a20803ca9cbfacbfe4c29e604e4b2721f',1,'cy_stc_capsense_common_config_t']]], - ['numchopcycles',['numChopCycles',['../structcy__stc__capsense__widget__config__t.html#a4b355886a6abacc4fa1aa77423d092e6',1,'cy_stc_capsense_widget_config_t']]], - ['numcoarseinitchargecycles',['numCoarseInitChargeCycles',['../structcy__stc__capsense__common__config__t.html#aca02d6ad7d90825996c9c07a1c7e5656',1,'cy_stc_capsense_common_config_t::numCoarseInitChargeCycles()'],['../structcy__stc__capsense__internal__context__t.html#a8039192ef3f4f1c6b01788d8a5aeb460',1,'cy_stc_capsense_internal_context_t::numCoarseInitChargeCycles()']]], - ['numcoarseinitsettlecycles',['numCoarseInitSettleCycles',['../structcy__stc__capsense__common__config__t.html#a3b5b13d1df8ccf3ee3cda514b76a1e2c',1,'cy_stc_capsense_common_config_t::numCoarseInitSettleCycles()'],['../structcy__stc__capsense__internal__context__t.html#a950bbe3fc6f914895044e6dd83833340',1,'cy_stc_capsense_internal_context_t::numCoarseInitSettleCycles()']]], - ['numcols',['numCols',['../structcy__stc__capsense__widget__config__t.html#af281dfdef5176c9db5e88cf162686ad4',1,'cy_stc_capsense_widget_config_t']]], - ['numepicycles',['numEpiCycles',['../structcy__stc__capsense__common__config__t.html#a2f0d703959ecf591d93fead29797ef0b',1,'cy_stc_capsense_common_config_t::numEpiCycles()'],['../structcy__stc__capsense__internal__context__t.html#afb832cb1027389199a0a623eac3af95a',1,'cy_stc_capsense_internal_context_t::numEpiCycles()']]], - ['numfineinitcycles',['numFineInitCycles',['../structcy__stc__capsense__common__context__t.html#a77232b6c0e10717e7ae1af4353a03bcd',1,'cy_stc_capsense_common_context_t']]], - ['numfineinitwaitcycles',['numFineInitWaitCycles',['../structcy__stc__capsense__internal__context__t.html#a00823e55b0473a93b8fd46048472bcd9',1,'cy_stc_capsense_internal_context_t::numFineInitWaitCycles()'],['../structcy__stc__capsense__common__context__t.html#acbfaf0d277487c7b7d4c29373a0c1c28',1,'cy_stc_capsense_common_context_t::numFineInitWaitCycles()']]], - ['numpin',['numPin',['../structcy__stc__capsense__common__config__t.html#af1b66d5becece2209af864547ac16c65',1,'cy_stc_capsense_common_config_t']]], - ['numpins',['numPins',['../structcy__stc__capsense__electrode__config__t.html#a2ff8c3a5d8d8bd2fe260cf353064f54e',1,'cy_stc_capsense_electrode_config_t']]], - ['numposition',['numPosition',['../structcy__stc__capsense__gesture__context__t.html#a5f96cbd3fde2fc2007499bdfc5e8ad59',1,'cy_stc_capsense_gesture_context_t::numPosition()'],['../structcy__stc__capsense__touch__t.html#a06915bc608b7177c425659ab61d38513',1,'cy_stc_capsense_touch_t::numPosition()']]], - ['numpositionlast',['numPositionLast',['../structcy__stc__capsense__gesture__context__t.html#adfc86db072daa3b309979efb5768456d',1,'cy_stc_capsense_gesture_context_t']]], - ['numprooffsetcycles',['numProOffsetCycles',['../structcy__stc__capsense__common__config__t.html#a4bf21a13ce2b0961682f6c4a27e2cab8',1,'cy_stc_capsense_common_config_t::numProOffsetCycles()'],['../structcy__stc__capsense__internal__context__t.html#a979ee649383bb985c7d1c153cccf80af',1,'cy_stc_capsense_internal_context_t::numProOffsetCycles()']]], - ['numrows',['numRows',['../structcy__stc__capsense__widget__config__t.html#a93e1fecbb0649d67dee102b1ef2cd1b8',1,'cy_stc_capsense_widget_config_t']]], - ['numsensemethod',['numSenseMethod',['../structcy__stc__capsense__internal__context__t.html#a97d29c46669cb5004cdb5d468a8bee61',1,'cy_stc_capsense_internal_context_t']]], - ['numslots',['numSlots',['../structcy__stc__capsense__widget__config__t.html#a474207c2ce55e017800877298895cf53',1,'cy_stc_capsense_widget_config_t::numSlots()'],['../structcy__stc__capsense__common__config__t.html#a9f6966abfdbf32eee5caa1ab8f69dc04',1,'cy_stc_capsense_common_config_t::numSlots()']]], - ['numsns',['numSns',['../structcy__stc__capsense__widget__config__t.html#ae61718f5e9f507beaff5d105e03659a0',1,'cy_stc_capsense_widget_config_t::numSns()'],['../structcy__stc__capsense__common__config__t.html#a21d3bc1dab9651fed220ebdfead85453',1,'cy_stc_capsense_common_config_t::numSns()']]], - ['numsubconversions',['numSubConversions',['../structcy__stc__capsense__widget__context__t.html#a722c7050783603a3796dc6e3ea6ed994',1,'cy_stc_capsense_widget_context_t']]], - ['numwd',['numWd',['../structcy__stc__capsense__common__config__t.html#a4b2745560f410d1a0dc70797aeec3fab',1,'cy_stc_capsense_common_config_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_d.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_d.html deleted file mode 100644 index b9381e99e3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_d.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_d.js deleted file mode 100644 index 7c4eb46b20..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_d.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['ofcdcontext',['ofcdContext',['../structcy__stc__capsense__gesture__context__t.html#ab916aaccb1b24a8dc5eee9385d0d2041',1,'cy_stc_capsense_gesture_context_t']]], - ['ofdccontext',['ofdcContext',['../structcy__stc__capsense__gesture__context__t.html#a41504e9edd68b6aab487492c95b6a059',1,'cy_stc_capsense_gesture_context_t']]], - ['ofescontext',['ofesContext',['../structcy__stc__capsense__gesture__context__t.html#a34feed1bf649ef82f09da51745d0514e',1,'cy_stc_capsense_gesture_context_t']]], - ['offlcontext',['offlContext',['../structcy__stc__capsense__gesture__context__t.html#a7a6f0b99bddc8e18cfea0fedb39e00b8',1,'cy_stc_capsense_gesture_context_t']]], - ['ofrtcontext',['ofrtContext',['../structcy__stc__capsense__gesture__context__t.html#a48dfae93de6b33ba60cdd10f8292e590',1,'cy_stc_capsense_gesture_context_t']]], - ['ofsccontext',['ofscContext',['../structcy__stc__capsense__gesture__context__t.html#a72755d5985247fd60078900d1482ddfc',1,'cy_stc_capsense_gesture_context_t']]], - ['ofslcontext',['ofslContext',['../structcy__stc__capsense__gesture__context__t.html#a7f7257503a55d3790ab222a6ac280a85',1,'cy_stc_capsense_gesture_context_t']]], - ['oldactiveidsmask',['oldActiveIdsMask',['../structcy__stc__capsense__csx__touch__history__t.html#a673eaa945ec772627c954df63b42a89e',1,'cy_stc_capsense_csx_touch_history_t']]], - ['oldpeak',['oldPeak',['../structcy__stc__capsense__csx__touch__history__t.html#a9cd73499eb9138949da6bd8812a654d1',1,'cy_stc_capsense_csx_touch_history_t']]], - ['oldpeaknumber',['oldPeakNumber',['../structcy__stc__capsense__csx__touch__history__t.html#aad62c7d9b921294d3caff02bcca10734',1,'cy_stc_capsense_csx_touch_history_t']]], - ['oldtimestamp',['oldTimestamp',['../structcy__stc__capsense__ballistic__context__t.html#a38d8589f93a3bc5fa8fb53e5076d6da6',1,'cy_stc_capsense_ballistic_context_t']]], - ['oldtouchnumber',['oldTouchNumber',['../structcy__stc__capsense__ballistic__context__t.html#a74a898f524e561622e4fb8d5b302fa77',1,'cy_stc_capsense_ballistic_context_t']]], - ['ondebounce',['onDebounce',['../structcy__stc__capsense__widget__context__t.html#a594bf2fb432dbeaa9b23545a9ff3d55a',1,'cy_stc_capsense_widget_context_t']]], - ['ondebounceval',['onDebounceVal',['../structcy__stc__capsense__widget__crc__data__t.html#a656e5777ec25c6e3a3b5b64ba54fc4dc',1,'cy_stc_capsense_widget_crc_data_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_e.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_e.html deleted file mode 100644 index 375ad705d8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_e.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_e.js deleted file mode 100644 index a66c151c82..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_e.js +++ /dev/null @@ -1,100 +0,0 @@ -var searchData= -[ - ['padnumber',['padNumber',['../structcy__stc__capsense__pin__config__t.html#a6b042ec5a99e78c058418213b60621f5',1,'cy_stc_capsense_pin_config_t']]], - ['param0',['param0',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a05b74489afc68fe873e70519784f8763',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param1',['param1',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#aa946864ff892df81a594e217ceba1d55',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param2',['param2',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#abd13d4d25441135f993b97aa47e2c230',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param3',['param3',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a366c60ce71fcb0fce32659a16fa09e45',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param4',['param4',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a836e0975942aa929fabd0e74a8628e33',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param5',['param5',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#aa10ef391278327840a384056d062ae41',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['param6',['param6',['../structcy__stc__capsense__smartsense__csd__noise__envelope__t.html#a45d5c40b50ac10537e35b7e55dcc88f4',1,'cy_stc_capsense_smartsense_csd_noise_envelope_t']]], - ['pcptr',['pcPtr',['../structcy__stc__capsense__pin__config__t.html#a6e73d425b113f359b2d0911e44b36e62',1,'cy_stc_capsense_pin_config_t']]], - ['penultimateth',['penultimateTh',['../structcy__stc__capsense__advanced__centroid__config__t.html#a72dadc2970371bea639b29a91a7f4ff5',1,'cy_stc_capsense_advanced_centroid_config_t::penultimateTh()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#a990aa2b11b9bf7779a3de1eff80ded85',1,'cy_stc_capsense_advanced_touchpad_config_t::penultimateTh()']]], - ['periclkhz',['periClkHz',['../structcy__stc__capsense__common__config__t.html#a885d6f703d5687e6585b929f61265f9c',1,'cy_stc_capsense_common_config_t']]], - ['peridividerindex',['periDividerIndex',['../structcy__stc__capsense__common__config__t.html#af4c7933702ebe6de8d7a51ead347f8dc',1,'cy_stc_capsense_common_config_t']]], - ['peridividertype',['periDividerType',['../structcy__stc__capsense__common__config__t.html#ab1171e77b08743ec9cb1a0751f3a8a24',1,'cy_stc_capsense_common_config_t']]], - ['pincinta',['pinCintA',['../structcy__stc__capsense__common__config__t.html#a511bdf3dac96f6d21a99570a0d631a18',1,'cy_stc_capsense_common_config_t']]], - ['pincintb',['pinCintB',['../structcy__stc__capsense__common__config__t.html#ae19eb70caeeb497808e72757c4dc4d97',1,'cy_stc_capsense_common_config_t']]], - ['pincmod',['pinCmod',['../structcy__stc__capsense__common__config__t.html#a552e76fb483b1aef4e079c6a08343622',1,'cy_stc_capsense_common_config_t']]], - ['pincmod1',['pinCmod1',['../structcy__stc__msc__channel__config__t.html#ae838d730d95428e14496890968eabd09',1,'cy_stc_msc_channel_config_t']]], - ['pincmod2',['pinCmod2',['../structcy__stc__msc__channel__config__t.html#a606d05fcbddc870daab3dc5d0e7b4f5c',1,'cy_stc_msc_channel_config_t']]], - ['pincmodpad',['pinCmodPad',['../structcy__stc__capsense__common__config__t.html#a5115d84073d7d01cb4885798dcd8e0eb',1,'cy_stc_capsense_common_config_t']]], - ['pincsh',['pinCsh',['../structcy__stc__capsense__common__config__t.html#a1894d1621d3d0b85dcecb541580086b2',1,'cy_stc_capsense_common_config_t']]], - ['pincshpad',['pinCshPad',['../structcy__stc__capsense__common__config__t.html#affacfb2ff9e57a616462f673603d2da9',1,'cy_stc_capsense_common_config_t']]], - ['pinnumber',['pinNumber',['../structcy__stc__capsense__pin__config__t.html#a87a0da3c8c5c9f372c4bbfbdbf3498d7',1,'cy_stc_capsense_pin_config_t']]], - ['pinshieldpad',['pinShieldPad',['../structcy__stc__capsense__common__config__t.html#a408b1a89c4eb3f5aec4a24ba2d9942d2',1,'cy_stc_capsense_common_config_t']]], - ['pinvrefextpad',['pinVrefExtPad',['../structcy__stc__capsense__common__config__t.html#aff2a6b86b567e1b1c7328dae74aa4c0d',1,'cy_stc_capsense_common_config_t']]], - ['portcinta',['portCintA',['../structcy__stc__capsense__common__config__t.html#a325bae184f92fdb4eface75f45491a0a',1,'cy_stc_capsense_common_config_t']]], - ['portcintb',['portCintB',['../structcy__stc__capsense__common__config__t.html#ae8e8c568ea38fc8fde93b2dadc5e83f9',1,'cy_stc_capsense_common_config_t']]], - ['portcmod',['portCmod',['../structcy__stc__capsense__common__config__t.html#ab76476aba113baea0f471f559a36a99c',1,'cy_stc_capsense_common_config_t']]], - ['portcmod1',['portCmod1',['../structcy__stc__msc__channel__config__t.html#acaed92f654157ab395ea312cf85ce0af',1,'cy_stc_msc_channel_config_t']]], - ['portcmod2',['portCmod2',['../structcy__stc__msc__channel__config__t.html#a5c874221db44d7f08ca2e659c4025e7d',1,'cy_stc_msc_channel_config_t']]], - ['portcmodnum',['portCmodNum',['../structcy__stc__capsense__common__config__t.html#ae11a796b0265b7de228505259d4b8a98',1,'cy_stc_capsense_common_config_t']]], - ['portcmodpadnum',['portCmodPadNum',['../structcy__stc__capsense__common__config__t.html#a4176f5f4c3a0674e8db380c1cd53b077',1,'cy_stc_capsense_common_config_t']]], - ['portcsh',['portCsh',['../structcy__stc__capsense__common__config__t.html#ab8b3fc9607ea9d6a5902e69f6fa555eb',1,'cy_stc_capsense_common_config_t']]], - ['portcshnum',['portCshNum',['../structcy__stc__capsense__common__config__t.html#a72dcc792179198a2c8a7a92b38c5af15',1,'cy_stc_capsense_common_config_t']]], - ['portcshpadnum',['portCshPadNum',['../structcy__stc__capsense__common__config__t.html#a6f12b37bfb79c92ac49be9d9a10e1c85',1,'cy_stc_capsense_common_config_t']]], - ['portshieldpadnum',['portShieldPadNum',['../structcy__stc__capsense__common__config__t.html#a0757058df63bf046d385f86f141235f2',1,'cy_stc_capsense_common_config_t']]], - ['portvrefextpadnum',['portVrefExtPadNum',['../structcy__stc__capsense__common__config__t.html#acd41888daad97f1aa24dfbca213431a6',1,'cy_stc_capsense_common_config_t']]], - ['posfilterconfig',['posFilterConfig',['../structcy__stc__capsense__widget__config__t.html#a477c8db37f2ff589fa1967272d1f5260',1,'cy_stc_capsense_widget_config_t']]], - ['position1',['position1',['../structcy__stc__capsense__gesture__context__t.html#a35b0182d531b19cf23e454b49ce332bd',1,'cy_stc_capsense_gesture_context_t']]], - ['position2',['position2',['../structcy__stc__capsense__gesture__context__t.html#a57ddd934f52502d73624fd05c643fe01',1,'cy_stc_capsense_gesture_context_t']]], - ['positionfilteren',['positionFilterEn',['../structcy__stc__capsense__common__config__t.html#a0ff07b677d89662e56814ba7ef8d550f',1,'cy_stc_capsense_common_config_t']]], - ['positionlast1',['positionLast1',['../structcy__stc__capsense__gesture__context__t.html#aa9ca0fa15854876acb6836093813d18f',1,'cy_stc_capsense_gesture_context_t']]], - ['positionlast2',['positionLast2',['../structcy__stc__capsense__gesture__context__t.html#a41e2cc14c3e6e152afe249821d218619',1,'cy_stc_capsense_gesture_context_t']]], - ['prooffsetcdaccomp',['proOffsetCdacComp',['../structcy__stc__capsense__common__config__t.html#ac54e06d38473566cafcf6e7a735eafe4',1,'cy_stc_capsense_common_config_t::proOffsetCdacComp()'],['../structcy__stc__capsense__internal__context__t.html#a3b896d96a2684a887210bae5de46bfa8',1,'cy_stc_capsense_internal_context_t::proOffsetCdacComp()']]], - ['proxth',['proxTh',['../structcy__stc__capsense__widget__context__t.html#ac28a8ad287f401bde36886e1995ebd5d',1,'cy_stc_capsense_widget_context_t']]], - ['proxthval',['proxThVal',['../structcy__stc__capsense__widget__crc__data__t.html#ae33b026cd3a82c07e0dcdc80723b0e77',1,'cy_stc_capsense_widget_crc_data_t']]], - ['proxtouchcoeff',['proxTouchCoeff',['../structcy__stc__capsense__common__config__t.html#af700535efc4ea5d745cad94153d1d9a6',1,'cy_stc_capsense_common_config_t']]], - ['ptractivescansns',['ptrActiveScanSns',['../structcy__stc__capsense__context__t.html#a2719dc3e059d012106c5f4476faec66d',1,'cy_stc_capsense_context_t']]], - ['ptrballisticcontext',['ptrBallisticContext',['../structcy__stc__capsense__widget__config__t.html#ad510b796c693e08b4f4b8bf8f76c3fb5',1,'cy_stc_capsense_widget_config_t']]], - ['ptrbaseframecontext',['ptrBaseFrameContext',['../structcy__stc__capsense__context__t.html#a638028282143ad3653b80671da17da72',1,'cy_stc_capsense_context_t']]], - ['ptrbistcontext',['ptrBistContext',['../structcy__stc__capsense__context__t.html#a92125bdfe35272f254fcc58d857670ce',1,'cy_stc_capsense_context_t']]], - ['ptrbslninv',['ptrBslnInv',['../structcy__stc__capsense__widget__config__t.html#aa246164662305a0152b2736f56b67e5a',1,'cy_stc_capsense_widget_config_t']]], - ['ptrchshieldcap',['ptrChShieldCap',['../structcy__stc__capsense__bist__context__t.html#a613da7b7df71cbc3d2405eaf4d4df3e9',1,'cy_stc_capsense_bist_context_t']]], - ['ptrcommonconfig',['ptrCommonConfig',['../structcy__stc__capsense__context__t.html#a7e55b9983341848b270166d72d9b50ac',1,'cy_stc_capsense_context_t']]], - ['ptrcommoncontext',['ptrCommonContext',['../structcy__stc__capsense__context__t.html#a2f4f7d25d0816cf7fe6f04103c4d647e',1,'cy_stc_capsense_context_t']]], - ['ptrcsdbase',['ptrCsdBase',['../structcy__stc__capsense__common__config__t.html#a314b8ab78e6a189daeb4d150d3f51512',1,'cy_stc_capsense_common_config_t']]], - ['ptrcsdcontext',['ptrCsdContext',['../structcy__stc__capsense__common__config__t.html#a633cc2ca6a5528f5a82074e889287b1c',1,'cy_stc_capsense_common_config_t']]], - ['ptrcsdtouchbuffer',['ptrCsdTouchBuffer',['../structcy__stc__capsense__widget__config__t.html#a8da5973b3062723df1b1ebf6b7f5bd86',1,'cy_stc_capsense_widget_config_t']]], - ['ptrcsxtouchbuffer',['ptrCsxTouchBuffer',['../structcy__stc__capsense__widget__config__t.html#a35afcfaedb37e24127fa5642bab59b45',1,'cy_stc_capsense_widget_config_t']]], - ['ptrcsxtouchhistory',['ptrCsxTouchHistory',['../structcy__stc__capsense__widget__config__t.html#ac662c2d9016717ff89a9fd8c26c97c02',1,'cy_stc_capsense_widget_config_t']]], - ['ptrdebouncearr',['ptrDebounceArr',['../structcy__stc__capsense__widget__config__t.html#aa353e792734db1ff3873175bb8e832b9',1,'cy_stc_capsense_widget_config_t']]], - ['ptrdiplextable',['ptrDiplexTable',['../structcy__stc__capsense__widget__config__t.html#a6224ab7605e28404d786633b2c1c1f6b',1,'cy_stc_capsense_widget_config_t']]], - ['ptrdmacbase',['ptrDmacBase',['../structcy__stc__capsense__common__config__t.html#aee1c6dd599cbc74658de7bdb4cf8290a',1,'cy_stc_capsense_common_config_t']]], - ['ptrdmardchsnscfgaddr',['ptrDmaRdChSnsCfgAddr',['../structcy__stc__capsense__common__config__t.html#a2281327eb63df5b14de55bec05f2bf42',1,'cy_stc_capsense_common_config_t']]], - ['ptrdmawrchsnscfgaddr',['ptrDmaWrChSnsCfgAddr',['../structcy__stc__capsense__common__config__t.html#a43213bf328f0802f801aacfe4364b6af',1,'cy_stc_capsense_common_config_t']]], - ['ptreltdcapacitance',['ptrEltdCapacitance',['../structcy__stc__capsense__widget__config__t.html#aeb69ac183634b05ecb92ab57e1b8feb9',1,'cy_stc_capsense_widget_config_t']]], - ['ptreltdconfig',['ptrEltdConfig',['../structcy__stc__capsense__widget__config__t.html#a88a5166ff86cf001344434b0bb84d799',1,'cy_stc_capsense_widget_config_t::ptrEltdConfig()'],['../structcy__stc__active__scan__sns__t.html#abc6f5af6f05f765faaca0aa5f4d9da40',1,'cy_stc_active_scan_sns_t::ptrEltdConfig()']]], - ['ptreodsinitcallback',['ptrEODsInitCallback',['../structcy__stc__capsense__internal__context__t.html#afb45bb27c6e9ad4f0dc543e3ef55f688',1,'cy_stc_capsense_internal_context_t']]], - ['ptreoscallback',['ptrEOSCallback',['../structcy__stc__capsense__internal__context__t.html#afc29de83d66b588443581455aaf5c2de',1,'cy_stc_capsense_internal_context_t']]], - ['ptrgestureconfig',['ptrGestureConfig',['../structcy__stc__capsense__widget__config__t.html#a0f4c0e442a86b761a8a00cd76ecc83b5',1,'cy_stc_capsense_widget_config_t']]], - ['ptrgesturecontext',['ptrGestureContext',['../structcy__stc__capsense__widget__config__t.html#ad60be1a14aded108976eb2d66daac7f1',1,'cy_stc_capsense_widget_config_t']]], - ['ptrinternalcontext',['ptrInternalContext',['../structcy__stc__capsense__context__t.html#a9b84076b589b363d35097eb12420fd4b',1,'cy_stc_capsense_context_t']]], - ['ptrisrcallback',['ptrISRCallback',['../structcy__stc__capsense__internal__context__t.html#a686901c142a968b7e0cc0299839fefef',1,'cy_stc_capsense_internal_context_t']]], - ['ptrmptxtable',['ptrMptxTable',['../structcy__stc__capsense__widget__config__t.html#ab41fcb29baa28b2e59b25c2fb30f9e9c',1,'cy_stc_capsense_widget_config_t']]], - ['ptrmscbase',['ptrMscBase',['../structcy__stc__msc__channel__config__t.html#a387172bfd70280a49f0fac22a1dec27a',1,'cy_stc_msc_channel_config_t']]], - ['ptrmscchconfig',['ptrMscChConfig',['../structcy__stc__capsense__common__config__t.html#ae5f422b32a1f49b3a3331f8705f90a08',1,'cy_stc_capsense_common_config_t']]], - ['ptrmsccontext',['ptrMscContext',['../structcy__stc__msc__channel__config__t.html#a905adbf5a145e25b55c922f39bcd66ed',1,'cy_stc_msc_channel_config_t']]], - ['ptrnoiseenvelope',['ptrNoiseEnvelope',['../structcy__stc__capsense__widget__config__t.html#a8cbf228dd4ae8a901c911c162c70b30a',1,'cy_stc_capsense_widget_config_t']]], - ['ptrpin',['ptrPin',['../structcy__stc__capsense__electrode__config__t.html#a2cdfd659151f2fc6d9e0f49aaa2058f7',1,'cy_stc_capsense_electrode_config_t']]], - ['ptrpinconfig',['ptrPinConfig',['../structcy__stc__capsense__context__t.html#a9f676c61d0088ba82b3d7adaea8459e0',1,'cy_stc_capsense_context_t']]], - ['ptrposfilterhistory',['ptrPosFilterHistory',['../structcy__stc__capsense__widget__config__t.html#a6136eead3f476c9c0d1d3fa1dfd8c189',1,'cy_stc_capsense_widget_config_t']]], - ['ptrposition',['ptrPosition',['../structcy__stc__capsense__touch__t.html#a41f4181caf21c8cc60825a4c88a952c6',1,'cy_stc_capsense_touch_t']]], - ['ptrrawfilterhistory',['ptrRawFilterHistory',['../structcy__stc__capsense__widget__config__t.html#a3b1c56df207169c04a05b7fa8833b0fc',1,'cy_stc_capsense_widget_config_t']]], - ['ptrrawfilterhistorylow',['ptrRawFilterHistoryLow',['../structcy__stc__capsense__widget__config__t.html#a9c3303699258fdb9e0a1c51ac8542370',1,'cy_stc_capsense_widget_config_t']]], - ['ptrrxconfig',['ptrRxConfig',['../structcy__stc__active__scan__sns__t.html#ada5061a0a2b46e3bff3553d98644c041',1,'cy_stc_active_scan_sns_t']]], - ['ptrscanslots',['ptrScanSlots',['../structcy__stc__capsense__context__t.html#a701dc256c0227c806b5907061625ab43',1,'cy_stc_capsense_context_t']]], - ['ptrsenseclk',['ptrSenseClk',['../structcy__stc__capsense__auto__tune__config__t.html#ad6aa32b14c98f74107b4230446e35fed',1,'cy_stc_capsense_auto_tune_config_t']]], - ['ptrsensorframecontext',['ptrSensorFrameContext',['../structcy__stc__capsense__context__t.html#aac6608bbe9e738a5de77a047ecace2f1',1,'cy_stc_capsense_context_t']]], - ['ptrshieldpinconfig',['ptrShieldPinConfig',['../structcy__stc__capsense__context__t.html#a2a2bab67c44107594f5c43c785b0cb2e',1,'cy_stc_capsense_context_t']]], - ['ptrsnscapacitance',['ptrSnsCapacitance',['../structcy__stc__capsense__widget__config__t.html#a872610c19b274d4daa48c9d29990f7cc',1,'cy_stc_capsense_widget_config_t']]], - ['ptrsnscontext',['ptrSnsContext',['../structcy__stc__capsense__widget__config__t.html#aace32d41062b136d802d346231967ad5',1,'cy_stc_capsense_widget_config_t::ptrSnsContext()'],['../structcy__stc__active__scan__sns__t.html#aeb8898be429a7205311694ac340b0d2e',1,'cy_stc_active_scan_sns_t::ptrSnsContext()']]], - ['ptrsscallback',['ptrSSCallback',['../structcy__stc__capsense__internal__context__t.html#a616c1452d2ed85c13614910d63a9a513',1,'cy_stc_capsense_internal_context_t']]], - ['ptrtunerreceivecallback',['ptrTunerReceiveCallback',['../structcy__stc__capsense__internal__context__t.html#a84250135c81d689ac1d977faafb37f49',1,'cy_stc_capsense_internal_context_t']]], - ['ptrtunersendcallback',['ptrTunerSendCallback',['../structcy__stc__capsense__internal__context__t.html#a76c03a3f16ce28d70d2cfe61a6fcb459',1,'cy_stc_capsense_internal_context_t']]], - ['ptrtxconfig',['ptrTxConfig',['../structcy__stc__active__scan__sns__t.html#a9cceebad50f0ca6d92bbfc2408d2c21a',1,'cy_stc_active_scan_sns_t']]], - ['ptrwdconfig',['ptrWdConfig',['../structcy__stc__active__scan__sns__t.html#ab57fc4e1bdf74350bf3c6a701ad3c56a',1,'cy_stc_active_scan_sns_t::ptrWdConfig()'],['../structcy__stc__capsense__context__t.html#a9b12863ecde08d94f68285a852e6f69b',1,'cy_stc_capsense_context_t::ptrWdConfig()']]], - ['ptrwdcontext',['ptrWdContext',['../structcy__stc__capsense__widget__config__t.html#adb558f384dcfa5fe3701f6c377b94da3',1,'cy_stc_capsense_widget_config_t::ptrWdContext()'],['../structcy__stc__active__scan__sns__t.html#a81beffc93033c90901da1f8debfbd59c',1,'cy_stc_active_scan_sns_t::ptrWdContext()'],['../structcy__stc__capsense__context__t.html#a1686259414950156dca1818d0db45922',1,'cy_stc_capsense_context_t::ptrWdContext()']]], - ['ptrwdgtcrc',['ptrWdgtCrc',['../structcy__stc__capsense__bist__context__t.html#af1dcb8fad4599fa893c49f69abac5724',1,'cy_stc_capsense_bist_context_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_f.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_f.html deleted file mode 100644 index d371418668..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_f.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_f.js deleted file mode 100644 index 0ad4def863..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/search/variables_f.js +++ /dev/null @@ -1,44 +0,0 @@ -var searchData= -[ - ['raw',['raw',['../structcy__stc__capsense__hw__smartsense__config__t.html#a1bd2b732a41c3fc740cc0ec395e7da69',1,'cy_stc_capsense_hw_smartsense_config_t::raw()'],['../structcy__stc__capsense__sensor__context__t.html#a54bbaaded1ac1a6857ce84a996224ccc',1,'cy_stc_capsense_sensor_context_t::raw()']]], - ['rawfilterconfig',['rawFilterConfig',['../structcy__stc__capsense__widget__config__t.html#a67d55b8afd94b5ff3de3587a4241c628',1,'cy_stc_capsense_widget_config_t']]], - ['refcdac',['refCdac',['../structcy__stc__capsense__hw__smartsense__config__t.html#a8112761c4d7f4e5b9b9ff988013a5b7c',1,'cy_stc_capsense_hw_smartsense_config_t']]], - ['regambuf',['regAmbuf',['../structcy__stc__capsense__bist__context__t.html#ae8f8770f51182beb960139917bceb6e3',1,'cy_stc_capsense_bist_context_t']]], - ['regambufshield',['regAmbufShield',['../structcy__stc__capsense__bist__context__t.html#a2ab8cac868956282420db3b54a7e0978',1,'cy_stc_capsense_bist_context_t']]], - ['regconfig',['regConfig',['../structcy__stc__capsense__bist__context__t.html#ae5f47666b04bc546cc716cd77c00446b',1,'cy_stc_capsense_bist_context_t']]], - ['regconfigshield',['regConfigShield',['../structcy__stc__capsense__bist__context__t.html#a1ab075dfb6504435139ec6b7bf68a42b',1,'cy_stc_capsense_bist_context_t']]], - ['reghscmpscan',['regHscmpScan',['../structcy__stc__capsense__bist__context__t.html#ac44249ae8e20f8dfb19e42566fad97d0',1,'cy_stc_capsense_bist_context_t']]], - ['reghscmpscanshield',['regHscmpScanShield',['../structcy__stc__capsense__bist__context__t.html#ad6fcce2910023a51b7f479a62d0b12ce',1,'cy_stc_capsense_bist_context_t']]], - ['regiosel',['regIoSel',['../structcy__stc__capsense__bist__context__t.html#aad9f6bc6d2d8f7e2e9843a0013c43f55',1,'cy_stc_capsense_bist_context_t']]], - ['regioselshield',['regIoSelShield',['../structcy__stc__capsense__bist__context__t.html#a20a4beb0abe24168be77ad9072590b57',1,'cy_stc_capsense_bist_context_t']]], - ['regswamuxbufsel',['regSwAmuxbufSel',['../structcy__stc__capsense__bist__context__t.html#a8e0f79069bf4362e97a1fb82d0166bb6',1,'cy_stc_capsense_bist_context_t']]], - ['regswamuxbufselshield',['regSwAmuxbufSelShield',['../structcy__stc__capsense__bist__context__t.html#a82f8b8b8d650377c292bd35b4188f070',1,'cy_stc_capsense_bist_context_t']]], - ['regswbypsel',['regSwBypSel',['../structcy__stc__capsense__bist__context__t.html#a3aeb8661cd85b1aa2f266cee60be0240',1,'cy_stc_capsense_bist_context_t']]], - ['regswbypselshield',['regSwBypSelShield',['../structcy__stc__capsense__bist__context__t.html#a68ebea3b267bf015d1e9e9802693a1c7',1,'cy_stc_capsense_bist_context_t']]], - ['regswdsisel',['regSwDsiSel',['../structcy__stc__capsense__bist__context__t.html#ac8babb76107f68ffc3b92736fb5f3a72',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselcmodinit',['regSwHsPSelCmodInit',['../structcy__stc__capsense__bist__context__t.html#a8e341ec1a291ce5bc030fcf60610fca9',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselctankinit',['regSwHsPSelCtankInit',['../structcy__stc__capsense__bist__context__t.html#a338ca675ef90b7fdb80ab9a95eba5f8d',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselscan',['regSwHsPSelScan',['../structcy__stc__capsense__bist__context__t.html#ae9b8e85cb52436b653b5e7d1fb1e5133',1,'cy_stc_capsense_bist_context_t']]], - ['regswhspselscanshield',['regSwHsPSelScanShield',['../structcy__stc__capsense__bist__context__t.html#a25926bffe9b5af767f6db69988b7a506',1,'cy_stc_capsense_bist_context_t']]], - ['regswrefgensel',['regSwRefgenSel',['../structcy__stc__capsense__bist__context__t.html#a8d0e2a3ef5a233e8da6471eedd227f08',1,'cy_stc_capsense_bist_context_t']]], - ['regswresinit',['regSwResInit',['../structcy__stc__capsense__bist__context__t.html#a20d613bddf0e9ea1dcb6196a579ce414',1,'cy_stc_capsense_bist_context_t']]], - ['regswresscan',['regSwResScan',['../structcy__stc__capsense__bist__context__t.html#ade86e6ef5b7e98386370aa2c567ee60e',1,'cy_stc_capsense_bist_context_t']]], - ['regswshieldselscan',['regSwShieldSelScan',['../structcy__stc__capsense__bist__context__t.html#af8eeec145da8af1555e3bea62c8a2b6a',1,'cy_stc_capsense_bist_context_t']]], - ['regswshieldselscanshield',['regSwShieldSelScanShield',['../structcy__stc__capsense__bist__context__t.html#ac1503ac45a53e4be199d38ed77fee26f',1,'cy_stc_capsense_bist_context_t']]], - ['reserved0',['reserved0',['../structcy__stc__capsense__adaptive__filter__config__t.html#aeac367c4efeec355b75e991a523dfba1',1,'cy_stc_capsense_adaptive_filter_config_t::reserved0()'],['../structcy__stc__capsense__ballistic__config__t.html#af99a6dbf493de76f2c44a7e001075cd8',1,'cy_stc_capsense_ballistic_config_t::reserved0()'],['../structcy__stc__capsense__ballistic__context__t.html#aaf3e7d3b18b2ecf51031b644db4292a3',1,'cy_stc_capsense_ballistic_context_t::reserved0()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#a76405d828e3531855ab1ae70668d76a6',1,'cy_stc_capsense_advanced_touchpad_config_t::reserved0()'],['../structcy__stc__capsense__bist__custom__parameters__t.html#a1891b4360a526d25c2b6d2966fdba5be',1,'cy_stc_capsense_bist_custom_parameters_t::reserved0()']]], - ['reserved1',['reserved1',['../structcy__stc__capsense__adaptive__filter__config__t.html#a7b4b8bb5ec1ed763d04cea68627b33f8',1,'cy_stc_capsense_adaptive_filter_config_t::reserved1()'],['../structcy__stc__capsense__ballistic__config__t.html#a69d7a152771429f807f0fb2e3e34998b',1,'cy_stc_capsense_ballistic_config_t::reserved1()'],['../structcy__stc__capsense__ballistic__context__t.html#accd9ff41ad610ac269d04e3065af52c2',1,'cy_stc_capsense_ballistic_context_t::reserved1()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#a64845aacc58c2a1007eace4832b5a362',1,'cy_stc_capsense_advanced_touchpad_config_t::reserved1()']]], - ['reserved2',['reserved2',['../structcy__stc__capsense__ballistic__config__t.html#a51724cd248eff5076374e145950157d7',1,'cy_stc_capsense_ballistic_config_t::reserved2()'],['../structcy__stc__capsense__advanced__touchpad__config__t.html#ab3ff0d6932c836ccb0b0e005578ef00c',1,'cy_stc_capsense_advanced_touchpad_config_t::reserved2()']]], - ['resolution',['resolution',['../structcy__stc__capsense__widget__context__t.html#a68e0c56527b8e16513c149bfc5adb623',1,'cy_stc_capsense_widget_context_t']]], - ['resolutionval',['resolutionVal',['../structcy__stc__capsense__widget__crc__data__t.html#a74ffdaa191f9c9bd3d17ff3170200bac',1,'cy_stc_capsense_widget_crc_data_t']]], - ['resolutionx',['resolutionX',['../structcy__stc__capsense__gesture__config__t.html#abcdafc8f4ecbb01e2202dee3ed252364',1,'cy_stc_capsense_gesture_config_t::resolutionX()'],['../structcy__stc__capsense__advanced__centroid__config__t.html#af68f4b04172c275b6be6e12768dc7991',1,'cy_stc_capsense_advanced_centroid_config_t::resolutionX()']]], - ['resolutiony',['resolutionY',['../structcy__stc__capsense__gesture__config__t.html#ac418cd1cf76d0dcfe90232450954eb82',1,'cy_stc_capsense_gesture_config_t::resolutionY()'],['../structcy__stc__capsense__advanced__centroid__config__t.html#a41e2b2272353ff198fca4fbe4397d9bd',1,'cy_stc_capsense_advanced_centroid_config_t::resolutionY()']]], - ['rotatedebounce',['rotateDebounce',['../structcy__stc__capsense__gesture__config__t.html#aeebc2692f6432fa15394678fb0278a9b',1,'cy_stc_capsense_gesture_config_t']]], - ['rotatedistancemin',['rotateDistanceMin',['../structcy__stc__capsense__gesture__config__t.html#adf604320c16786aa9e89b5f02f02a643',1,'cy_stc_capsense_gesture_config_t']]], - ['rowcdacref',['rowCdacRef',['../structcy__stc__capsense__widget__context__t.html#a86df00e59d6d922a0e229694d24f7288',1,'cy_stc_capsense_widget_context_t::rowCdacRef()'],['../structcy__stc__capsense__widget__crc__data__t.html#ac77f44aed58de14a95c07a817211ee67',1,'cy_stc_capsense_widget_crc_data_t::rowCdacRef()']]], - ['rowidacmod',['rowIdacMod',['../structcy__stc__capsense__widget__context__t.html#aa420c590b3aaccc2ba2666b5a75390f7',1,'cy_stc_capsense_widget_context_t']]], - ['rowidacmodval',['rowIdacModVal',['../structcy__stc__capsense__widget__crc__data__t.html#a0959fffcf46f6de97e132d4246767b96',1,'cy_stc_capsense_widget_crc_data_t']]], - ['rowmap',['rowMap',['../structcy__stc__capsense__csx__touch__buffer__t.html#a2235820c150af3e6594730e9031066de',1,'cy_stc_capsense_csx_touch_buffer_t']]], - ['rowsnsclk',['rowSnsClk',['../structcy__stc__capsense__widget__context__t.html#a2dd4e90d01407e1c2a0ed33f637e3b4f',1,'cy_stc_capsense_widget_context_t']]], - ['rowsnsclkval',['rowSnsClkVal',['../structcy__stc__capsense__widget__crc__data__t.html#af9f145585e1986461ae4ba26927bbe3c',1,'cy_stc_capsense_widget_crc_data_t']]], - ['rxindex',['rxIndex',['../structcy__stc__active__scan__sns__t.html#a35dbb63147b6c493bed49f7bdfc7819d',1,'cy_stc_active_scan_sns_t']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/splitbar.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/splitbar.png deleted file mode 100644 index fe895f2c58..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/splitbar.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__active__scan__sns__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__active__scan__sns__t.html deleted file mode 100644 index 74f0c3ca89..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__active__scan__sns__t.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_active_scan_sns_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_active_scan_sns_t Struct Reference
    -
    -
    -

    Description

    -

    Declares active sensor details.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -const cy_stc_capsense_widget_config_tptrWdConfig
     Pointer to the widget configuration structure of the active sensor.
     
    -cy_stc_capsense_widget_context_tptrWdContext
     Pointer to the widget context structure of the active sensor.
     
    uint8_t scanScope
     Keeps request of scanning either: More...
     
    uint8_t mfsChannelIndex
     MFS channel index. More...
     
    -uint8_t rxIndex
     Current Rx ID.
     
    -uint8_t txIndex
     Current Tx ID.
     
    -const cy_stc_capsense_electrode_config_tptrEltdConfig
     Pointer to the electrode configuration structure of the active sensor.
     
    -const cy_stc_capsense_electrode_config_tptrRxConfig
     Pointer to the Rx electrode configuration structure of the active sensor.
     
    -const cy_stc_capsense_electrode_config_tptrTxConfig
     Pointer to the Tx electrode configuration structure of the active sensor.
     
    -cy_stc_capsense_sensor_context_tptrSnsContext
     Pointer to the sensor context structure.
     
    -uint16_t currentChannelSlotIndex
     Current slot Index for channel.
     
    -uint16_t sensorIndex
     Current sensor ID.
     
    -uint8_t widgetIndex
     Current widget ID.
     
    -uint8_t currentSenseMethod
     Current sensing method.
     
    -uint8_t connectedSnsState
     Shows if the current sensor is connected to analog bus.
     
    -

    Field Documentation

    - -

    ◆ scanScope

    - -
    -
    - - - - -
    uint8_t cy_stc_active_scan_sns_t::scanScope
    -
    - -

    Keeps request of scanning either:

    -
      -
    • CY_CAPSENSE_SCAN_SCOPE_SNGL_SNS - Single sensor
    • -
    • CY_CAPSENSE_SCAN_SCOPE_ALL_SNS_MASK - All sensors of one widget
    • -
    • CY_CAPSENSE_SCAN_SCOPE_ALL_WD_MASK - All widgets
    • -
    - -
    -
    - -

    ◆ mfsChannelIndex

    - -
    -
    - - - - -
    uint8_t cy_stc_active_scan_sns_t::mfsChannelIndex
    -
    - -

    MFS channel index.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__adaptive__filter__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__adaptive__filter__config__t.html deleted file mode 100644 index 035b6e1192..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__adaptive__filter__config__t.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_adaptive_filter_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_adaptive_filter_config_t Struct Reference
    -
    -
    -

    Description

    -

    Declares Adaptive Filter configuration parameters.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint8_t maxK
     Maximum filter coefficient.
     
    -uint8_t minK
     Minimum filter coefficient.
     
    -uint8_t noMovTh
     No-movement threshold.
     
    -uint8_t littleMovTh
     Little movement threshold.
     
    -uint8_t largeMovTh
     Large movement threshold.
     
    -uint8_t divVal
     Divisor value.
     
    -uint8_t reserved0
     Reserved field.
     
    -uint8_t reserved1
     Reserved field.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__advanced__centroid__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__advanced__centroid__config__t.html deleted file mode 100644 index 37991aea89..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__advanced__centroid__config__t.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_advanced_centroid_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_advanced_centroid_config_t Struct Reference
    -
    -
    -

    Description

    -

    Declares Advanced Centroid configuration parameters.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t fingerTh
     Finger threshold of widget.
     
    -uint16_t penultimateTh
     Penultimate threshold.
     
    -uint16_t virtualSnsTh
     Virtual sensor threshold.
     
    -uint16_t resolutionX
     X axis maximum position.
     
    -uint16_t resolutionY
     Y axis maximum position.
     
    -uint8_t crossCouplingTh
     Cross-coupling threshold.
     
    -uint8_t snsCountX
     Number of segments on X axis.
     
    -uint8_t snsCountY
     Number of segments on Y axis.
     
    -uint8_t edgeCorrectionEn
     Edge correction enabled.
     
    -uint8_t twoFingersEn
     Two-finger detection enabled.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__advanced__touchpad__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__advanced__touchpad__config__t.html deleted file mode 100644 index dc76a7a957..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__advanced__touchpad__config__t.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_advanced_touchpad_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_advanced_touchpad_config_t Struct Reference
    -
    -
    -

    Description

    -

    Configuration structure of advanced touchpad.

    -
    - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    uint16_t penultimateTh
     Defines a threshold for determining arrival at edges. More...
     
    uint16_t virtualSnsTh
     Defines a virtual sensor signal. More...
     
    uint8_t crossCouplingTh
     Defines cross coupling threshold. More...
     
    -uint8_t reserved0
     Reserved field.
     
    -uint8_t reserved1
     Reserved field.
     
    -uint8_t reserved2
     Reserved field.
     
    -

    Field Documentation

    - -

    ◆ penultimateTh

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_advanced_touchpad_config_t::penultimateTh
    -
    - -

    Defines a threshold for determining arrival at edges.

    -

    This value may have to be increased for small diamonds, so that the edge handling is initiated sooner. If this number is too high, there is jumping at the edge with a smaller finger. If this number is too low, there is jumping at the edge with a larger finger.

    - -
    -
    - -

    ◆ virtualSnsTh

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_advanced_touchpad_config_t::virtualSnsTh
    -
    - -

    Defines a virtual sensor signal.

    -

    This value should be set to the value of any sensor when a medium-sized finger is placed directly over it. If this value is too high, a position is reported nearer the edge than ideal position. If this value is too low, a position is reported nearer the middle of touchpad.

    - -
    -
    - -

    ◆ crossCouplingTh

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_advanced_touchpad_config_t::crossCouplingTh
    -
    - -

    Defines cross coupling threshold.

    -

    It is subtracted from sensor signals at centroid position calculation to improve the accuracy. The threshold should be equal to a sensor signal when your finger is near the sensor, but not touching the sensor. This can be determined by slowly dragging your finger across the panel and finding the inflection point of the difference counts at the base of the curve. The difference value at this point should be the Cross-coupling threshold.

    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__alp__fltr__channel__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__alp__fltr__channel__t.html deleted file mode 100644 index da0498bd91..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__alp__fltr__channel__t.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_alp_fltr_channel_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_alp_fltr_channel_t Struct Reference
    -
    -
    -

    Description

    -

    Declares ALP filter data structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint32_t dataParam0
     Parameter 0 context.
     
    -uint16_t dataParam1
     Parameter 1 context.
     
    -uint16_t dataParam2
     Parameter 2 context.
     
    -uint16_t dataParam3
     Parameter 3 context.
     
    -uint16_t dataParam4
     Parameter 4 context.
     
    -uint16_t dataParam5
     Parameter 5 context.
     
    -uint16_t dataParam6
     Parameter 6 context.
     
    -uint8_t dataParam7
     Parameter 7 context.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__alp__fltr__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__alp__fltr__config__t.html deleted file mode 100644 index 01dfb8ce73..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__alp__fltr__config__t.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_alp_fltr_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_alp_fltr_config_t Struct Reference
    -
    -
    -

    Description

    -

    Declares ALP filter configuration structure.

    -
    - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t configParam0
     Parameter 0 configuration.
     
    -uint16_t configParam1
     Parameter 1 configuration.
     
    -uint16_t configParam2
     Parameter 2 configuration.
     
    -uint8_t configParam3
     Parameter 3 configuration.
     
    -uint8_t configParam4
     Parameter 4 configuration.
     
    -uint8_t configParam5
     Parameter 5 configuration.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__auto__tune__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__auto__tune__config__t.html deleted file mode 100644 index 54bacc7706..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__auto__tune__config__t.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_auto_tune_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_auto_tune_config_t Struct Reference
    -
    -
    -

    Description

    -

    Declares HW smart sensing algorithm data structure for CSD widgets for fourth-generation CAPSENSE™.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint32_t sensorCap
     Sensor parasitic capacitance in fF 10^-15.
     
    -uint32_t iDacGain
     IDAC gain in pA.
     
    -uint16_t * ptrSenseClk
     Pointer to SnsClk divider.
     
    -uint16_t * sigPFC
     Pointer to sigPFC value (Signal Per Finger Capacitance)
     
    -uint16_t snsClkConstantR
     Resistance in series to a sensor.
     
    -uint16_t vRef
     Vref in mVolts.
     
    -uint16_t fingerCap
     Finger capacitance in fF 10^-15 (Set in Basic tab in pF 10^-12)
     
    -uint16_t snsClkInputClock
     Frequency for sense clock divider in kHz.
     
    -uint16_t calTarget
     Calibration target in percentage.
     
    -uint8_t iDacMod
     Modulation idac code.
     
    -uint8_t iDacComp
     Compensation idac code.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__config__t.html deleted file mode 100644 index f1653f1006..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__config__t.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ballistic_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ballistic_config_t Struct Reference
    -
    -
    -

    Description

    -

    Declares Ballistics Multiplier Configuration data structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint8_t accelCoeff
     Acceleration Coefficient.
     
    -uint8_t speedCoeff
     Speed Coefficient.
     
    -uint8_t divisorValue
     Divisor Value.
     
    -uint8_t speedThresholdX
     Speed Threshold X.
     
    -uint8_t speedThresholdY
     Speed Threshold Y.
     
    -uint8_t reserved0
     Reserved field.
     
    -uint8_t reserved1
     Reserved field.
     
    -uint8_t reserved2
     Reserved field.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__context__t.html deleted file mode 100644 index 343eaf1293..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__context__t.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ballistic_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ballistic_context_t Struct Reference
    -
    -
    -

    Description

    -

    Declares Ballistics Multiplier Configuration data structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint32_t currentTimestamp
     Current timestamp.
     
    -uint32_t oldTimestamp
     Previous timestamp.
     
    -int32_t deltaXfrac
     Fraction of X-axis displacement.
     
    -int32_t deltaYfrac
     Fraction of Y-axis displacement.
     
    -uint16_t x
     X-axis position.
     
    -uint16_t y
     Y-axis position.
     
    -uint8_t touchNumber
     Current number of touches.
     
    -uint8_t oldTouchNumber
     Previous number of touches.
     
    -uint8_t reserved0
     Reserved field.
     
    -uint8_t reserved1
     Reserved field.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__delta__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__delta__t.html deleted file mode 100644 index 8933bde988..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ballistic__delta__t.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ballistic_delta_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ballistic_delta_t Struct Reference
    -
    -
    -

    Description

    -

    Declares Ballistic Displacement structure.

    -
    - - - - - - - -

    -Data Fields

    -int16_t deltaX
     X-axis displacement.
     
    -int16_t deltaY
     Y-axis displacement.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__bist__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__bist__context__t.html deleted file mode 100644 index 8296f0d3aa..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__bist__context__t.html +++ /dev/null @@ -1,1123 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_bist_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_bist_context_t Struct Reference
    -
    -
    -

    Description

    -

    Declares BIST Context Data Structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -cy_en_capsense_bist_hw_config_t hwConfig
     A HW configuration for BIST operations.
     
    -cy_en_capsense_bist_io_state_t currentISC
     The current state of sensors when not being measured during the sensor capacitance measurement.
     
    cy_en_capsense_bist_io_state_t shieldCapISC
     The configured inactive electrode connection for BIST shield electrode capacitance measurement. More...
     
    -cy_en_capsense_bist_io_state_t eltdCapCsdISC
     The configured inactive electrode connection for BIST CSD sensor or electrode capacitance measurement: The states are the same as of the previous parameter.
     
    cy_en_capsense_bist_io_state_t eltdCapCsxISC
     The configured inactive electrode connection for BIST CSX sensor or electrode capacitance measurement: More...
     
    cy_en_capsense_bist_io_state_t intrEltdCapShieldISC
     The internal inactive electrode connection used during the BIST shield electrode capacitance measurement: More...
     
    cy_en_capsense_bist_io_state_t intrEltdCapCsdISC
     The internal inactive electrode connection used during the BIST CSD sensor or electrode capacitance measurement: More...
     
    cy_en_capsense_bist_io_state_t intrEltdCapCsxISC
     The internal inactive electrode connection used during the BIST CSX sensor or electrode capacitance measurement: More...
     
    -uint32_t testResultMask
     The bit mask of test results (PASS/FAIL)
     
    uint32_t shieldCap
     The shield capacitance measurement result in femtofarads. More...
     
    uint32_t * ptrChShieldCap
     The pointer to the channel shield capacitance measurement result array. More...
     
    -uint32_t eltdCapSnsClkFreqHz
     The value of the SnsClk frequency is Hz.
     
    -uint16_t * ptrWdgtCrc
     The pointer to the widget CRC array.
     
    -uint16_t wdgtCrcCalc
     A calculated by test CRC for a widget context structure.
     
    -uint16_t eltdCapModClk
     The ModClk divider for electrode capacitance measurement scans.
     
    -uint16_t eltdCapSnsClk
     The SnsClk divider for electrode capacitance measurement scans.
     
    uint8_t eltdCapSenseGroup
     The sensor group for capacitance measurement: More...
     
    -uint8_t crcWdgtId
     The first CRC failed widget ID.
     
    -uint8_t snsIntgShortSettlingTime
     The sensor and shield short check time in microseconds.
     
    -uint8_t shortedWdId
     The first shorted to GND/VDDA/ELTD widget ID.
     
    -uint8_t shortedSnsId
     The first shorted to GND/VDDA/ELTD sensor ID.
     
    -uint32_t regSwHsPSelScan
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwHsPSelCmodInit
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwHsPSelCtankInit
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwDsiSel
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwShieldSelScan
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwResInit
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwResScan
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwBypSel
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwAmuxbufSel
     Internal pre-calculated data for faster operation.
     
    -uint32_t regAmbuf
     Internal pre-calculated data for faster operation.
     
    -uint32_t regHscmpScan
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwRefgenSel
     Internal pre-calculated data for faster operation.
     
    -uint32_t regConfig
     Internal pre-calculated data for faster operation.
     
    -uint32_t regIoSel
     Internal pre-calculated data for faster operation.
     
    -uint32_t regAmbufShield
     Internal pre-calculated data for faster operation.
     
    -uint32_t regHscmpScanShield
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwShieldSelScanShield
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwHsPSelScanShield
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwBypSelShield
     Internal pre-calculated data for faster operation.
     
    -uint32_t regSwAmuxbufSelShield
     Internal pre-calculated data for faster operation.
     
    -uint32_t regConfigShield
     Internal pre-calculated data for faster operation.
     
    -uint32_t regIoSelShield
     Internal pre-calculated data for faster operation.
     
    uint32_t extCapIdacPa
     The IDAC value in pA for external capacitor capacity measurements. More...
     
    uint16_t extCapModClk
     The ModClk divider for external capacitor capacity measurements. More...
     
    uint16_t extCapSnsClk
     The SnsClk divider for external capacitor capacity measurements. More...
     
    uint16_t extCapWDT
     The SW watchdog timeout used to prevent a hang in case of short. More...
     
    uint16_t extCapVrefMv
     The Vref value in mV for external capacitor capacity measurements. More...
     
    uint16_t cModCap
     The Cmod capacitance measurement result in picofarads. More...
     
    uint16_t cIntACap
     The CintA capacitance measurement result in picofarads. More...
     
    uint16_t cIntBCap
     The CIntB capacitance measurement result in picofarads. More...
     
    uint16_t cShieldCap
     The Cshield capacitance measurement result in picofarads. More...
     
    uint16_t capacitorSettlingTime
     The maximum possible external capacitor charge/discharge time in microseconds. More...
     
    uint16_t vddaVoltage
     The result of VDDA measurement in millivolts. More...
     
    uint16_t vddaModClk
     The ModClk divider for VDDA measurements. More...
     
    uint16_t vddaVrefMv
     The Vref value in mV for VDDA measurements. More...
     
    uint16_t eltdCapVrefMv
     The Vref value in mV for electrode capacitance measurement scans. More...
     
    uint16_t eltdCapResolution
     The resolution for electrode capacitance measurement scans. More...
     
    uint8_t vddaIdacDefault
     The IDAC default code for Vdda measurements. More...
     
    uint8_t vddaAzCycles
     The auto-zero time in Sns cycles for Vdda measurements. More...
     
    uint8_t vddaAcqCycles
     The acquisition time in Sns cycles - 1 for Vdda measurements. More...
     
    uint8_t fineInitTime
     Number of dummy SnsClk periods at fine initialization for BIST scans. More...
     
    uint8_t eltdCapVrefGain
     The Vref gain for electrode capacitance measurement scans. More...
     
    uint8_t vddaVrefGain
     The Vref gain for VDDA measurements. More...
     
    uint8_t extCapVrefGain
     The Vref gain for external capacitor capacitance measurements. More...
     
    const cy_stc_capsense_electrode_config_tcurPtrEltdCfg
     The pointer to the current electrode configuration for BIST operations. More...
     
    -uint32_t eltdInactiveDm
     Internal pre-calculated data for faster operation.
     
    -en_hsiom_sel_t eltdInactiveHsiom
     Internal pre-calculated data for faster operation.
     
    uint16_t curBistSlotId
     The current slot ID for BIST operations. More...
     
    uint16_t eltdCapSubConvNum
     The sub-conversion number for electrode capacitance measurement scans. More...
     
    uint16_t eltdCapNumEpiCycles
     Number of clk_mod cycles to be run during EPILOGUE. More...
     
    uint16_t eltdCapNumCoarseInitChargeCycles
     Configure duration of Cmod initialization, phase 1. More...
     
    uint16_t eltdCapNumCoarseInitSettleCycles
     Configure duration of Cmod initialization, phase 2. More...
     
    uint16_t eltdCapNumFineInitWaitCycles
     Number of ProDummy Wait Cycles. More...
     
    uint8_t eltdCapNumFineInitCycles
     Number of ProDummy SubConversions. More...
     
    uint8_t eltdCapRefCdac
     The reference CDAC code for electrode capacitance measurement scans. More...
     
    uint8_t curBistChId
     The current MSCv3 channel ID for BIST operations. More...
     
    uint8_t skipChannelMask
     The skip channel mask for BIST operations. More...
     
    uint8_t eltdCapScanMode
     The scan mode for sensor (electrode) capacitance measurement. More...
     
    -

    Field Documentation

    - -

    ◆ shieldCapISC

    - -
    -
    - - - - -
    cy_en_capsense_bist_io_state_t cy_stc_capsense_bist_context_t::shieldCapISC
    -
    - -

    The configured inactive electrode connection for BIST shield electrode capacitance measurement.

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_SHIELD
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ eltdCapCsxISC

    - -
    -
    - - - - -
    cy_en_capsense_bist_io_state_t cy_stc_capsense_bist_context_t::eltdCapCsxISC
    -
    - -

    The configured inactive electrode connection for BIST CSX sensor or electrode capacitance measurement:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ intrEltdCapShieldISC

    - -
    -
    - - - - -
    cy_en_capsense_bist_io_state_t cy_stc_capsense_bist_context_t::intrEltdCapShieldISC
    -
    - -

    The internal inactive electrode connection used during the BIST shield electrode capacitance measurement:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_SHIELD
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ intrEltdCapCsdISC

    - -
    -
    - - - - -
    cy_en_capsense_bist_io_state_t cy_stc_capsense_bist_context_t::intrEltdCapCsdISC
    -
    - -

    The internal inactive electrode connection used during the BIST CSD sensor or electrode capacitance measurement:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_SHIELD
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ intrEltdCapCsxISC

    - -
    -
    - - - - -
    cy_en_capsense_bist_io_state_t cy_stc_capsense_bist_context_t::intrEltdCapCsxISC
    -
    - -

    The internal inactive electrode connection used during the BIST CSX sensor or electrode capacitance measurement:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ shieldCap

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_bist_context_t::shieldCap
    -
    - -

    The shield capacitance measurement result in femtofarads.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrChShieldCap

    - -
    -
    - - - - -
    uint32_t* cy_stc_capsense_bist_context_t::ptrChShieldCap
    -
    - -

    The pointer to the channel shield capacitance measurement result array.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapSenseGroup

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::eltdCapSenseGroup
    -
    - -

    The sensor group for capacitance measurement:

    -
      -
    • 0 - UNDEFINED (CY_CAPSENSE_UNDEFINED_GROUP)
    • -
    • 1 - CSD (CY_CAPSENSE_CSD_GROUP)
    • -
    • 2 - CSX (CY_CAPSENSE_CSX_GROUP)
    • -
    - -
    -
    - -

    ◆ extCapIdacPa

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_bist_context_t::extCapIdacPa
    -
    - -

    The IDAC value in pA for external capacitor capacity measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ extCapModClk

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::extCapModClk
    -
    - -

    The ModClk divider for external capacitor capacity measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ extCapSnsClk

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::extCapSnsClk
    -
    - -

    The SnsClk divider for external capacitor capacity measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ extCapWDT

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::extCapWDT
    -
    - -

    The SW watchdog timeout used to prevent a hang in case of short.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ extCapVrefMv

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::extCapVrefMv
    -
    - -

    The Vref value in mV for external capacitor capacity measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cModCap

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::cModCap
    -
    - -

    The Cmod capacitance measurement result in picofarads.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cIntACap

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::cIntACap
    -
    - -

    The CintA capacitance measurement result in picofarads.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cIntBCap

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::cIntBCap
    -
    - -

    The CIntB capacitance measurement result in picofarads.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cShieldCap

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::cShieldCap
    -
    - -

    The Cshield capacitance measurement result in picofarads.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ capacitorSettlingTime

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::capacitorSettlingTime
    -
    - -

    The maximum possible external capacitor charge/discharge time in microseconds.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ vddaVoltage

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::vddaVoltage
    -
    - -

    The result of VDDA measurement in millivolts.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ vddaModClk

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::vddaModClk
    -
    - -

    The ModClk divider for VDDA measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ vddaVrefMv

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::vddaVrefMv
    -
    - -

    The Vref value in mV for VDDA measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapVrefMv

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::eltdCapVrefMv
    -
    - -

    The Vref value in mV for electrode capacitance measurement scans.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapResolution

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::eltdCapResolution
    -
    - -

    The resolution for electrode capacitance measurement scans.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ vddaIdacDefault

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::vddaIdacDefault
    -
    - -

    The IDAC default code for Vdda measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ vddaAzCycles

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::vddaAzCycles
    -
    - -

    The auto-zero time in Sns cycles for Vdda measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ vddaAcqCycles

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::vddaAcqCycles
    -
    - -

    The acquisition time in Sns cycles - 1 for Vdda measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ fineInitTime

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::fineInitTime
    -
    - -

    Number of dummy SnsClk periods at fine initialization for BIST scans.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapVrefGain

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::eltdCapVrefGain
    -
    - -

    The Vref gain for electrode capacitance measurement scans.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ vddaVrefGain

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::vddaVrefGain
    -
    - -

    The Vref gain for VDDA measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ extCapVrefGain

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::extCapVrefGain
    -
    - -

    The Vref gain for external capacitor capacitance measurements.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ curPtrEltdCfg

    - -
    -
    - - - - -
    const cy_stc_capsense_electrode_config_t* cy_stc_capsense_bist_context_t::curPtrEltdCfg
    -
    - -

    The pointer to the current electrode configuration for BIST operations.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ curBistSlotId

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::curBistSlotId
    -
    - -

    The current slot ID for BIST operations.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapSubConvNum

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::eltdCapSubConvNum
    -
    - -

    The sub-conversion number for electrode capacitance measurement scans.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapNumEpiCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::eltdCapNumEpiCycles
    -
    - -

    Number of clk_mod cycles to be run during EPILOGUE.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapNumCoarseInitChargeCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::eltdCapNumCoarseInitChargeCycles
    -
    - -

    Configure duration of Cmod initialization, phase 1.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapNumCoarseInitSettleCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::eltdCapNumCoarseInitSettleCycles
    -
    - -

    Configure duration of Cmod initialization, phase 2.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapNumFineInitWaitCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_context_t::eltdCapNumFineInitWaitCycles
    -
    - -

    Number of ProDummy Wait Cycles.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapNumFineInitCycles

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::eltdCapNumFineInitCycles
    -
    - -

    Number of ProDummy SubConversions.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapRefCdac

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::eltdCapRefCdac
    -
    - -

    The reference CDAC code for electrode capacitance measurement scans.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ curBistChId

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::curBistChId
    -
    - -

    The current MSCv3 channel ID for BIST operations.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ skipChannelMask

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::skipChannelMask
    -
    - -

    The skip channel mask for BIST operations.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ eltdCapScanMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_bist_context_t::eltdCapScanMode
    -
    - -

    The scan mode for sensor (electrode) capacitance measurement.

    -
      -
    • 0u - scan by slots (CY_CAPSENSE_BIST_CAP_SLOT_SCAN)
    • -
    • 1u - scan by electrodes (CY_CAPSENSE_BIST_CAP_ELTD_SCAN)
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__bist__custom__parameters__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__bist__custom__parameters__t.html deleted file mode 100644 index b6bfccf7ec..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__bist__custom__parameters__t.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_bist_custom_parameters_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_bist_custom_parameters_t Struct Reference
    -
    -
    -

    Description

    -

    Declares the BIST structure with custom scan parameters.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    uint16_t modClk
     The ModClk divider for a custom scan. More...
     
    uint16_t snsClk
     The SnsClk divider for a custom scan. More...
     
    uint16_t convNum
     The number of conversions for a custom scan. More...
     
    -cy_en_capsense_bist_io_state_t customISC
     The inactive state of sensors during the custom scan.
     
    -uint8_t reserved0
     Reserved field.
     
    -uint8_t vrefGain
     The Vref gain for a custom scan.
     
    -uint8_t idacMod
     Sets the code of the modulation IDAC for a custom scan.
     
    -uint8_t idacGainIndex
     Index of IDAC gain in table cy_stc_capsense_idac_gain_table_t.
     
    -uint8_t fineInitTime
     Number of dummy SnsClk periods at fine initialization for a custom scan.
     
    -

    Field Documentation

    - -

    ◆ modClk

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_custom_parameters_t::modClk
    -
    - -

    The ModClk divider for a custom scan.

    -

    The minimum value is 1 and the maximum depends on a divider type, but for a reliable CSD HW block operation, it is recommended to provide a modulation clock frequency in the range from 1 to 50 MHz

    - -
    -
    - -

    ◆ snsClk

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_custom_parameters_t::snsClk
    -
    - -

    The SnsClk divider for a custom scan.

    -

    The minimum value is 4 and the maximum is 4095, but for a reliable CSD HW block operation, it is recommended to provide an sensor clock frequency in the range from 100 to 6000 kHz

    - -
    -
    - -

    ◆ convNum

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_bist_custom_parameters_t::convNum
    -
    - -

    The number of conversions for a custom scan.

    -

    The maximum raw counts is equal (convNum * snsClkDivider - 1), that corresponds to (2^Resolution - 1) in older notations. The minimum value is 4 and the maximum is 65535, but as the maximum raw counts is 65535, the convNum value should be less than (65536 / snsClkDivider)

    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__common__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__common__config__t.html deleted file mode 100644 index 7e5b7e4acc..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__common__config__t.html +++ /dev/null @@ -1,2035 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_common_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_common_config_t Struct Reference
    -
    -
    -

    Description

    -

    Common configuration structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint32_t cpuClkHz
     CPU clock in Hz.
     
    -uint32_t periClkHz
     Peripheral clock in Hz.
     
    -uint16_t vdda
     VDDA in mV.
     
    uint16_t numPin
     Total number of IOs. More...
     
    uint16_t numSns
     The total number of sensors. More...
     
    -uint8_t numWd
     Total number of widgets.
     
    -uint8_t csdEn
     CSD sensing method enabled, at least one CSD widget is configured.
     
    -uint8_t csxEn
     CSX sensing method enabled, at least one CSX widget is configured.
     
    -uint8_t positionFilterEn
     Position filtering enabled.
     
    -uint8_t bistEn
     Built-in Self-test (BIST) enabled.
     
    -uint8_t periDividerType
     Peripheral clock type (8- or 16-bit type)
     
    -uint8_t periDividerIndex
     Peripheral divider index.
     
    uint8_t analogWakeupDelay
     Time needed to establish correct operation of the CSD HW block after power up or System Deep Sleep. More...
     
    uint8_t ssIrefSource
     Iref source. More...
     
    uint8_t ssVrefSource
     Vref source. More...
     
    -uint16_t proxTouchCoeff
     Proximity touch coefficient in percentage used in smart sensing algorithm.
     
    -uint8_t swSensorAutoResetEn
     Sensor auto reset enabled.
     
    uint8_t portCmodPadNum
     Number of port of dedicated Cmod pad. More...
     
    uint8_t pinCmodPad
     Position of the dedicated Cmod pad in the port. More...
     
    uint8_t portCshPadNum
     Number of port of dedicated Csh pad. More...
     
    uint8_t pinCshPad
     Position of the dedicated Csh pad in the port. More...
     
    uint8_t portShieldPadNum
     Number of port of dedicated Shield pad. More...
     
    uint8_t pinShieldPad
     Position of the dedicated Shield pad in the port. More...
     
    uint8_t portVrefExtPadNum
     Number of port of dedicated VrefExt pad. More...
     
    uint8_t pinVrefExtPad
     Position of the dedicated VrefExt pad in the port. More...
     
    uint8_t portCmodNum
     Number of port of Cmod pin. More...
     
    cy_stc_capsense_idac_gain_table_t idacGainTable [CY_CAPSENSE_IDAC_GAIN_NUMBER]
     Table with the supported IDAC gains and corresponding register values. More...
     
    CSD_Type * ptrCsdBase
     Pointer to the CSD HW block register. More...
     
    cy_stc_csd_context_t * ptrCsdContext
     Pointer to the CSD driver context. More...
     
    GPIO_PRT_Type * portCmod
     Pointer to the base port register of the Cmod pin. More...
     
    GPIO_PRT_Type * portCsh
     Pointer to the base port register of the Csh pin. More...
     
    GPIO_PRT_Type * portCintA
     Pointer to the base port register of the CintA pin. More...
     
    GPIO_PRT_Type * portCintB
     Pointer to the base port register of the CintB pin. More...
     
    uint8_t pinCmod
     Position of the Cmod pin in the port. More...
     
    uint8_t portCshNum
     Number of port of Csh pin. More...
     
    uint8_t pinCsh
     Position of the Csh pin in the port. More...
     
    uint8_t pinCintA
     Position of the CintA pin in the port. More...
     
    uint8_t pinCintB
     Position of the CintB pin in the port. More...
     
    uint8_t csdShieldEn
     Shield enabled. More...
     
    uint8_t csdInactiveSnsConnection
     Inactive sensor connection for CSD scan: More...
     
    uint8_t csxInactiveSnsConnection
     Inactive sensor connection for CSD scan: More...
     
    uint8_t csdShieldDelay
     Shield signal delay. More...
     
    uint16_t csdVref
     Vref for CSD method. More...
     
    -uint16_t csdRConst
     Sensor resistance in series used by smart sensing algorithm.
     
    uint8_t csdCTankShieldEn
     Csh enabled. More...
     
    -uint8_t csdShieldNumPin
     Number of shield IOs.
     
    uint8_t csdShieldSwRes
     Shield switch resistance. More...
     
    uint8_t csdInitSwRes
     Switch resistance at coarse initialization. More...
     
    uint8_t csdChargeTransfer
     IDAC sensing configuration. More...
     
    -uint8_t csdRawTarget
     Raw count target in percentage for CSD calibration.
     
    -uint8_t csdAutotuneEn
     smart sensing algorithm enabled
     
    uint8_t csdIdacAutocalEn
     CSD IDAC calibration enabled. More...
     
    uint8_t csdIdacGainInitIndex
     IDAC gain index per idacGainTable. More...
     
    uint8_t csdIdacAutoGainEn
     IDAC gain auto-calibration enabled. More...
     
    -uint8_t csdCalibrationError
     Acceptable calibration error.
     
    uint8_t csdIdacMin
     Min acceptable IDAC value in CSD calibration. More...
     
    uint8_t csdIdacCompEn
     Compensation IDAC enabled. More...
     
    uint8_t csdFineInitTime
     Number of dummy SnsClk periods at fine initialization. More...
     
    uint8_t csdIdacRowColAlignEn
     Row-Column alignment enabled. More...
     
    uint8_t csdMfsDividerOffsetF1
     Frequency divider offset for channel 1. More...
     
    uint8_t csdMfsDividerOffsetF2
     Frequency divider offset for channel 2. More...
     
    -uint8_t csxRawTarget
     Raw count target in percentage for CSX calibration.
     
    uint8_t csxIdacGainInitIndex
     IDAC gain for CSX method. More...
     
    uint8_t csxRefGain
     Refgen gain for CSX method. More...
     
    uint8_t csxIdacAutocalEn
     CSX IDAC calibration enabled. More...
     
    -uint8_t csxCalibrationError
     Acceptable calibration error.
     
    uint8_t csxFineInitTime
     Number of dummy TX periods at fine initialization. More...
     
    uint8_t csxInitSwRes
     Switch resistance at fine initialization. More...
     
    uint8_t csxScanSwRes
     Switch resistance at scanning. More...
     
    uint8_t csxInitShieldSwRes
     Switch resistance at fine initialization. More...
     
    uint8_t csxScanShieldSwRes
     Switch resistance at scanning. More...
     
    uint8_t csxMfsDividerOffsetF1
     Frequency divider offset for channel 1. More...
     
    uint8_t csxMfsDividerOffsetF2
     Frequency divider offset for channel 2. More...
     
    cy_stc_msc_channel_config_tptrMscChConfig
     The pointer to the CAPSENSE™ enabled MSC channel (HW block) configuration. More...
     
    DMAC_Type * ptrDmacBase
     Pointer to the DMAC HW block base register. More...
     
    const uint32_t ** ptrDmaWrChSnsCfgAddr
     Pointer to the array containing the addresses of sensor configurations used as a source for the DMA Chain Write channel. More...
     
    const uint16_t ** ptrDmaRdChSnsCfgAddr
     Pointer to the array containing the addresses of sensor configurations used as a source for the DMA Chain Read channel. More...
     
    uint16_t numEpiCycles
     Number of clk_mod cycles to be run during EPILOGUE. More...
     
    uint16_t numCoarseInitChargeCycles
     Configure duration of Cmod initialization, phase 1. More...
     
    uint16_t numCoarseInitSettleCycles
     Configure duration of Cmod initialization, phase 2. More...
     
    uint16_t numSlots
     Total number of slots. More...
     
    uint8_t csdShieldMode
     Shield mode. More...
     
    uint8_t sensorConnection
     Sensor Connection. More...
     
    uint8_t csdCdacAutocalEn
     CSD CDAC calibration enabled. More...
     
    uint8_t csdRefCdacAutoEn
     CSD Reference CDAC auto-calibration enabled. More...
     
    uint8_t csdCdacCompEn
     CSD Compensation CDAC enabled. More...
     
    uint8_t csdCdacCompDivAutoEn
     CSD Compensation CDAC divider auto-calibration enabled. More...
     
    uint8_t csdCdacAutoCalibMin
     Min acceptable CDAC value in CSD auto-calibration. More...
     
    uint8_t csdRefCdacRowColumnAlignEn
     Row-Column alignment enabled. More...
     
    uint8_t csxCdacAutocalEn
     CSX CDAC calibration enabled. More...
     
    uint8_t csxRefCdacAutoEn
     CSX Reference CDAC auto-calibration enabled. More...
     
    uint8_t csxCdacCompEn
     CSX Compensation CDAC enabled. More...
     
    uint8_t csxCdacCompDivAutoEn
     CSX Compensation CDAC divider auto-calibration enabled. More...
     
    uint8_t csxCdacAutoCalibMin
     Min acceptable CDAC value in CSX auto-calibration. More...
     
    uint8_t csxAutotuneEn
     CSX smart sensing algorithm enabled. More...
     
    uint8_t numProOffsetCycles
     Maximum number of clk_mod cycles for the PRO_OFFSET state. More...
     
    uint8_t proOffsetCdacComp
     Compensation CAPDAC size during PRO_OFFSET. More...
     
    uint8_t scanningMode
     Scanning Mode: More...
     
    uint8_t mptxEn
     Multi-phase TX enabled. More...
     
    uint8_t chopPolarity
     Select polarity for system level chopping. More...
     
    uint8_t cicFilterMode
     CIC filter mode. More...
     
    uint8_t numBadScans
     1 to 7, repeat scan upon "bad" scan. More...
     
    uint8_t counterMode
     Select overflow or saturate mode for raw count: More...
     
    uint8_t syncFrameStartEn
     Enable external synchronization signals. More...
     
    uint8_t syncClockEn
     Enable external synchronization signals. More...
     
    uint8_t syncMode
     Synchronization mode: More...
     
    uint8_t masterChannelId
     The ID of the Master channel MULTI-CHIP solution. More...
     
    uint8_t numChips
     The chip number for MULTI-CHIP solution. More...
     
    uint8_t numChannels
     The number of CAPSENSE™ enabled MSCv3 blocks in the current chip. More...
     
    uint8_t channelOffset
     The ID of the first channel that belongs to the current chip. More...
     
    -

    Field Documentation

    - -

    ◆ numPin

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_config_t::numPin
    -
    - -

    Total number of IOs.

    - -
    -
    - -

    ◆ numSns

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_config_t::numSns
    -
    - -

    The total number of sensors.

    -

    It is equal to the number of objects with raw count.

      -
    • For CSD widgets: WD_NUM_ROWS + WD_NUM_COLS
    • -
    • For CSX widgets: WD_NUM_ROWS * WD_NUM_COLS
    • -
    - -
    -
    - -

    ◆ analogWakeupDelay

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::analogWakeupDelay
    -
    - -

    Time needed to establish correct operation of the CSD HW block after power up or System Deep Sleep.

    - -
    -
    - -

    ◆ ssIrefSource

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::ssIrefSource
    -
    - -

    Iref source.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ssVrefSource

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::ssVrefSource
    -
    - -

    Vref source.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCmodPadNum

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::portCmodPadNum
    -
    - -

    Number of port of dedicated Cmod pad.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinCmodPad

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinCmodPad
    -
    - -

    Position of the dedicated Cmod pad in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCshPadNum

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::portCshPadNum
    -
    - -

    Number of port of dedicated Csh pad.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinCshPad

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinCshPad
    -
    - -

    Position of the dedicated Csh pad in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portShieldPadNum

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::portShieldPadNum
    -
    - -

    Number of port of dedicated Shield pad.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinShieldPad

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinShieldPad
    -
    - -

    Position of the dedicated Shield pad in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portVrefExtPadNum

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::portVrefExtPadNum
    -
    - -

    Number of port of dedicated VrefExt pad.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinVrefExtPad

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinVrefExtPad
    -
    - -

    Position of the dedicated VrefExt pad in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCmodNum

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::portCmodNum
    -
    - -

    Number of port of Cmod pin.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ idacGainTable

    - -
    -
    - - - - -
    cy_stc_capsense_idac_gain_table_t cy_stc_capsense_common_config_t::idacGainTable[CY_CAPSENSE_IDAC_GAIN_NUMBER]
    -
    - -

    Table with the supported IDAC gains and corresponding register values.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrCsdBase

    - -
    -
    - - - - -
    CSD_Type* cy_stc_capsense_common_config_t::ptrCsdBase
    -
    - -

    Pointer to the CSD HW block register.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrCsdContext

    - -
    -
    - - - - -
    cy_stc_csd_context_t* cy_stc_capsense_common_config_t::ptrCsdContext
    -
    - -

    Pointer to the CSD driver context.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCmod

    - -
    -
    - - - - -
    GPIO_PRT_Type* cy_stc_capsense_common_config_t::portCmod
    -
    - -

    Pointer to the base port register of the Cmod pin.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCsh

    - -
    -
    - - - - -
    GPIO_PRT_Type* cy_stc_capsense_common_config_t::portCsh
    -
    - -

    Pointer to the base port register of the Csh pin.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCintA

    - -
    -
    - - - - -
    GPIO_PRT_Type* cy_stc_capsense_common_config_t::portCintA
    -
    - -

    Pointer to the base port register of the CintA pin.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCintB

    - -
    -
    - - - - -
    GPIO_PRT_Type* cy_stc_capsense_common_config_t::portCintB
    -
    - -

    Pointer to the base port register of the CintB pin.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinCmod

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinCmod
    -
    - -

    Position of the Cmod pin in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ portCshNum

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::portCshNum
    -
    - -

    Number of port of Csh pin.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinCsh

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinCsh
    -
    - -

    Position of the Csh pin in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinCintA

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinCintA
    -
    - -

    Position of the CintA pin in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ pinCintB

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::pinCintB
    -
    - -

    Position of the CintB pin in the port.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdShieldEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdShieldEn
    -
    - -

    Shield enabled.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdInactiveSnsConnection

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdInactiveSnsConnection
    -
    - -

    Inactive sensor connection for CSD scan:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_SHIELD
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ csxInactiveSnsConnection

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxInactiveSnsConnection
    -
    - -

    Inactive sensor connection for CSD scan:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ csdShieldDelay

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdShieldDelay
    -
    - -

    Shield signal delay.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdVref

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_config_t::csdVref
    -
    - -

    Vref for CSD method.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdCTankShieldEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdCTankShieldEn
    -
    - -

    Csh enabled.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdShieldSwRes

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdShieldSwRes
    -
    - -

    Shield switch resistance.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdInitSwRes

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdInitSwRes
    -
    - -

    Switch resistance at coarse initialization.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdChargeTransfer

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdChargeTransfer
    -
    - -

    IDAC sensing configuration.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacAutocalEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdIdacAutocalEn
    -
    - -

    CSD IDAC calibration enabled.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacGainInitIndex

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdIdacGainInitIndex
    -
    - -

    IDAC gain index per idacGainTable.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacAutoGainEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdIdacAutoGainEn
    -
    - -

    IDAC gain auto-calibration enabled.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacMin

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdIdacMin
    -
    - -

    Min acceptable IDAC value in CSD calibration.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacCompEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdIdacCompEn
    -
    - -

    Compensation IDAC enabled.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdFineInitTime

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdFineInitTime
    -
    - -

    Number of dummy SnsClk periods at fine initialization.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacRowColAlignEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdIdacRowColAlignEn
    -
    - -

    Row-Column alignment enabled.

    -

    It adjusts modulator IDAC for rows and for columns to achieve the similar sensitivity.

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdMfsDividerOffsetF1

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdMfsDividerOffsetF1
    -
    - -

    Frequency divider offset for channel 1.

    -

    This value is added to base (channel 0) SnsClk divider to form channel 1 frequency

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdMfsDividerOffsetF2

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdMfsDividerOffsetF2
    -
    - -

    Frequency divider offset for channel 2.

    -

    This value is added to base (channel 0) SnsClk divider to form channel 2 frequency

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxIdacGainInitIndex

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxIdacGainInitIndex
    -
    - -

    IDAC gain for CSX method.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRefGain

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxRefGain
    -
    - -

    Refgen gain for CSX method.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxIdacAutocalEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxIdacAutocalEn
    -
    - -

    CSX IDAC calibration enabled.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxFineInitTime

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxFineInitTime
    -
    - -

    Number of dummy TX periods at fine initialization.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxInitSwRes

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxInitSwRes
    -
    - -

    Switch resistance at fine initialization.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxScanSwRes

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxScanSwRes
    -
    - -

    Switch resistance at scanning.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxInitShieldSwRes

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxInitShieldSwRes
    -
    - -

    Switch resistance at fine initialization.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxScanShieldSwRes

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxScanShieldSwRes
    -
    - -

    Switch resistance at scanning.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxMfsDividerOffsetF1

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxMfsDividerOffsetF1
    -
    - -

    Frequency divider offset for channel 1.

    -

    This value is added to base (channel 0) Tx divider to form channel 1 frequency

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxMfsDividerOffsetF2

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxMfsDividerOffsetF2
    -
    - -

    Frequency divider offset for channel 2.

    -

    This value is added to base (channel 0) Tx divider to form channel 2 frequency

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrMscChConfig

    - -
    -
    - - - - -
    cy_stc_msc_channel_config_t* cy_stc_capsense_common_config_t::ptrMscChConfig
    -
    - -

    The pointer to the CAPSENSE™ enabled MSC channel (HW block) configuration.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrDmacBase

    - -
    -
    - - - - -
    DMAC_Type* cy_stc_capsense_common_config_t::ptrDmacBase
    -
    - -

    Pointer to the DMAC HW block base register.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrDmaWrChSnsCfgAddr

    - -
    -
    - - - - -
    const uint32_t** cy_stc_capsense_common_config_t::ptrDmaWrChSnsCfgAddr
    -
    - -

    Pointer to the array containing the addresses of sensor configurations used as a source for the DMA Chain Write channel.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrDmaRdChSnsCfgAddr

    - -
    -
    - - - - -
    const uint16_t** cy_stc_capsense_common_config_t::ptrDmaRdChSnsCfgAddr
    -
    - -

    Pointer to the array containing the addresses of sensor configurations used as a source for the DMA Chain Read channel.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numEpiCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_config_t::numEpiCycles
    -
    - -

    Number of clk_mod cycles to be run during EPILOGUE.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numCoarseInitChargeCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_config_t::numCoarseInitChargeCycles
    -
    - -

    Configure duration of Cmod initialization, phase 1.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numCoarseInitSettleCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_config_t::numCoarseInitSettleCycles
    -
    - -

    Configure duration of Cmod initialization, phase 2.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numSlots

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_config_t::numSlots
    -
    - -

    Total number of slots.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdShieldMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdShieldMode
    -
    - -

    Shield mode.

    -
      -
    • CY_CAPSENSE_SHIELD_DISABLED
    • -
    • CY_CAPSENSE_SHIELD_ACTIVE
    • -
    • CY_CAPSENSE_SHIELD_PASSIVE
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    - -

    ◆ sensorConnection

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::sensorConnection
    -
    - -

    Sensor Connection.

    -

    In CS-DMA mode, sensor connection always set to CTRLMUX.

      -
    • 0 - CY_CAPSENSE_AMUX_SENSOR_CONNECTION_METHOD: All AMUX capable GPIOs available as sensor.
    • -
    • 1 - CY_CAPSENSE_CTRLMUX_SENSOR_CONNECTION_METHOD: Only dedicated GPIO available as sensor.
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    - -

    ◆ csdCdacAutocalEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdCdacAutocalEn
    -
    - -

    CSD CDAC calibration enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRefCdacAutoEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdRefCdacAutoEn
    -
    - -

    CSD Reference CDAC auto-calibration enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdCdacCompEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdCdacCompEn
    -
    - -

    CSD Compensation CDAC enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdCdacCompDivAutoEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdCdacCompDivAutoEn
    -
    - -

    CSD Compensation CDAC divider auto-calibration enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdCdacAutoCalibMin

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdCdacAutoCalibMin
    -
    - -

    Min acceptable CDAC value in CSD auto-calibration.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRefCdacRowColumnAlignEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csdRefCdacRowColumnAlignEn
    -
    - -

    Row-Column alignment enabled.

    -

    It adjusts reference CDAC for rows and for columns in two-dimension CSD widgets to achieve the similar sensitivity

    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxCdacAutocalEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxCdacAutocalEn
    -
    - -

    CSX CDAC calibration enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRefCdacAutoEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxRefCdacAutoEn
    -
    - -

    CSX Reference CDAC auto-calibration enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxCdacCompEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxCdacCompEn
    -
    - -

    CSX Compensation CDAC enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxCdacCompDivAutoEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxCdacCompDivAutoEn
    -
    - -

    CSX Compensation CDAC divider auto-calibration enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxCdacAutoCalibMin

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxCdacAutoCalibMin
    -
    - -

    Min acceptable CDAC value in CSX auto-calibration.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxAutotuneEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::csxAutotuneEn
    -
    - -

    CSX smart sensing algorithm enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numProOffsetCycles

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::numProOffsetCycles
    -
    - -

    Maximum number of clk_mod cycles for the PRO_OFFSET state.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ proOffsetCdacComp

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::proOffsetCdacComp
    -
    - -

    Compensation CAPDAC size during PRO_OFFSET.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ scanningMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::scanningMode
    -
    - -

    Scanning Mode:

    -
      -
    • 0 - CY_CAPSENSE_SCAN_MODE_INT_DRIVEN
    • -
    • 1 - CY_CAPSENSE_SCAN_MODE_DMA_DRIVEN
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    - -

    ◆ mptxEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::mptxEn
    -
    - -

    Multi-phase TX enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ chopPolarity

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::chopPolarity
    -
    - -

    Select polarity for system level chopping.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cicFilterMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::cicFilterMode
    -
    - -

    CIC filter mode.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numBadScans

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::numBadScans
    -
    - -

    1 to 7, repeat scan upon "bad" scan.

    -

    Disabled = 0.

    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ counterMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::counterMode
    -
    - -

    Select overflow or saturate mode for raw count:

    -
      -
    • 0 - CY_CAPSENSE_COUNTER_MODE_SATURATE
    • -
    • 1 - CY_CAPSENSE_COUNTER_MODE_OVERFLOW
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    - -

    ◆ syncFrameStartEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::syncFrameStartEn
    -
    - -

    Enable external synchronization signals.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ syncClockEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::syncClockEn
    -
    - -

    Enable external synchronization signals.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ syncMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::syncMode
    -
    - -

    Synchronization mode:

    -
      -
    • 0 - CY_CAPSENSE_SYNC_MODE_OFF
    • -
    • 1 - CY_CAPSENSE_SYNC_EXTERNAL
    • -
    • 2 - CY_CAPSENSE_SYNC_INTERNAL
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    - -

    ◆ masterChannelId

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::masterChannelId
    -
    - -

    The ID of the Master channel MULTI-CHIP solution.

    -

    This channel will generate msc_ext_frm_start_out and msc_ext_sync_clk_out signals

    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numChips

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::numChips
    -
    - -

    The chip number for MULTI-CHIP solution.

    -

    For SINGLE-CHIP is equal to 1u

    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numChannels

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::numChannels
    -
    - -

    The number of CAPSENSE™ enabled MSCv3 blocks in the current chip.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ channelOffset

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_config_t::channelOffset
    -
    - -

    The ID of the first channel that belongs to the current chip.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__common__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__common__context__t.html deleted file mode 100644 index 1d7ba00750..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__common__context__t.html +++ /dev/null @@ -1,404 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_common_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_common_context_t Struct Reference
    -
    -
    -

    Description

    -

    Declares top-level Context Data Structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    uint16_t configId
     16-bit CRC calculated by the CAPSENSE™ Configurator tool for the CAPSENSE™ configuration. More...
     
    uint16_t tunerCmd
     Tuner Command Register cy_en_capsense_tuner_cmd_t. More...
     
    uint16_t scanCounter
     This counter increments after each scan. More...
     
    uint8_t tunerSt
     State of CAPSENSE™ middleware tuner module. More...
     
    -uint8_t initDone
     Keep information whether initialization was done or not.
     
    volatile uint32_t status
     Middleware status information, scan in progress (1) or not (0). More...
     
    -uint32_t timestampInterval
     Timestamp interval used at increasing the timestamp by Cy_CapSense_IncrementGestureTimestamp()
     
    -uint32_t timestamp
     Current timestamp should be kept updated and operational, which is vital for the operation of Gesture and Ballistic multiplier features.
     
    uint8_t modCsdClk
     The modulator clock divider for the CSD widgets. More...
     
    uint8_t modCsxClk
     The modulator clock divider for the CSX widgets. More...
     
    -uint8_t tunerCnt
     Command counter of CAPSENSE™ middleware tuner module.
     
    uint8_t numFineInitCycles
     Number of ProDummy SubConversions. More...
     
    uint16_t numFineInitWaitCycles
     Number of ProDummy Wait Cycles. More...
     
    uint16_t lfsrPoly
     LFSR Polynomial. More...
     
    uint8_t lfsrScale
     LFSR Scale value. More...
     
    uint8_t cdacDitherSeed
     Dither CDAC Seed. More...
     
    uint8_t cdacDitherPoly
     Dither CDAC Polynomial. More...
     
    uint8_t modClk
     The modulator clock divider. More...
     
    -

    Field Documentation

    - -

    ◆ configId

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_context_t::configId
    -
    - -

    16-bit CRC calculated by the CAPSENSE™ Configurator tool for the CAPSENSE™ configuration.

    -

    Used by the CAPSENSE™ Tuner tool to identify if the FW corresponds to the specific user configuration.

    - -
    -
    - -

    ◆ tunerCmd

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_context_t::tunerCmd
    -
    - -

    Tuner Command Register cy_en_capsense_tuner_cmd_t.

    -

    Used for the communication between the CAPSENSE™ Tuner tool and the middleware

    - -
    -
    - -

    ◆ scanCounter

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_context_t::scanCounter
    -
    - -

    This counter increments after each scan.

    - -
    -
    - -

    ◆ tunerSt

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::tunerSt
    -
    - -

    State of CAPSENSE™ middleware tuner module.

    -

    cy_en_capsense_tuner_state_t

    - -
    -
    - -

    ◆ status

    - -
    -
    - - - - -
    volatile uint32_t cy_stc_capsense_common_context_t::status
    -
    - -

    Middleware status information, scan in progress (1) or not (0).

    -

    For MSCv3 each bit shows the correspondent channel status

    - -
    -
    - -

    ◆ modCsdClk

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::modCsdClk
    -
    - -

    The modulator clock divider for the CSD widgets.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ modCsxClk

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::modCsxClk
    -
    - -

    The modulator clock divider for the CSX widgets.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numFineInitCycles

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::numFineInitCycles
    -
    - -

    Number of ProDummy SubConversions.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numFineInitWaitCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_context_t::numFineInitWaitCycles
    -
    - -

    Number of ProDummy Wait Cycles.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ lfsrPoly

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_common_context_t::lfsrPoly
    -
    - -

    LFSR Polynomial.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ lfsrScale

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::lfsrScale
    -
    - -

    LFSR Scale value.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacDitherSeed

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::cdacDitherSeed
    -
    - -

    Dither CDAC Seed.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacDitherPoly

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::cdacDitherPoly
    -
    - -

    Dither CDAC Polynomial.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ modClk

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_common_context_t::modClk
    -
    - -

    The modulator clock divider.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__context__t.html deleted file mode 100644 index 2f6aef86ea..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__context__t.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_context_t Struct Reference
    -
    -
    -

    Description

    -

    Declares top-level CAPSENSE™ context data structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -const cy_stc_capsense_common_config_tptrCommonConfig
     Pointer to the common configuration structure.
     
    -cy_stc_capsense_common_context_tptrCommonContext
     Pointer to the common context structure.
     
    -cy_stc_capsense_internal_context_tptrInternalContext
     Pointer to the internal context structure.
     
    -const cy_stc_capsense_widget_config_tptrWdConfig
     Pointer to the widget configuration structure.
     
    -cy_stc_capsense_widget_context_tptrWdContext
     Pointer to the widget context structure.
     
    -const cy_stc_capsense_pin_config_tptrPinConfig
     Pointer to the pin configuration structure.
     
    -const cy_stc_capsense_pin_config_tptrShieldPinConfig
     Pointer to the shield pin configuration structure.
     
    -cy_stc_active_scan_sns_tptrActiveScanSns
     Pointer to the current active sensor structure.
     
    -cy_stc_capsense_bist_context_tptrBistContext
     Pointer to the BIST context structure.
     
    cy_stc_msc_base_config_t * ptrBaseFrameContext
     Pointer to the first member of the context structure of base configuration array. More...
     
    uint32_t * ptrSensorFrameContext
     Pointer to the context structure of sensor configuration. More...
     
    const cy_stc_capsense_scan_slot_tptrScanSlots
     Pointer to the scan order slot structure. More...
     
    -

    Field Documentation

    - -

    ◆ ptrBaseFrameContext

    - -
    -
    - - - - -
    cy_stc_msc_base_config_t* cy_stc_capsense_context_t::ptrBaseFrameContext
    -
    - -

    Pointer to the first member of the context structure of base configuration array.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrSensorFrameContext

    - -
    -
    - - - - -
    uint32_t* cy_stc_capsense_context_t::ptrSensorFrameContext
    -
    - -

    Pointer to the context structure of sensor configuration.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrScanSlots

    - -
    -
    - - - - -
    const cy_stc_capsense_scan_slot_t* cy_stc_capsense_context_t::ptrScanSlots
    -
    - -

    Pointer to the scan order slot structure.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__csx__touch__buffer__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__csx__touch__buffer__t.html deleted file mode 100644 index 8d0f75e36e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__csx__touch__buffer__t.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_csx_touch_buffer_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_csx_touch_buffer_t Struct Reference
    -
    -
    -

    Description

    -

    Internal CSX Touchpad buffer structure for CSX for Touchpads' processing.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -int32_t distanceMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS *CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Buffer for distance map data.
     
    -int32_t colMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Buffer for column map data.
     
    -int32_t rowMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Buffer for row map data.
     
    -int32_t minsMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Buffer for minimums map data.
     
    -cy_stc_capsense_position_t newPeak [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Touch Positions.
     
    -int8_t fingerPosIndexMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS+3u]
     Buffer for index map data.
     
    -int8_t linksMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Buffer for linked map data.
     
    -int8_t visitedMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Buffer for visited map data.
     
    -int8_t markIndicesMap [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Buffer for mark map data.
     
    -uint8_t newPeakNumber
     Number of detected peaks.
     
    -uint8_t newActiveIdsMask
     Mask of used IDs.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__csx__touch__history__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__csx__touch__history__t.html deleted file mode 100644 index 443a44a527..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__csx__touch__history__t.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_csx_touch_history_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_csx_touch_history_t Struct Reference
    -
    -
    -

    Description

    -

    CSX Touchpad touch tracking history.

    -
    - - - - - - - - - - - - - -

    -Data Fields

    uint32_t velocity
     The square of the "speed" (maximum distance change per refresh interval) threshold distinguishing a fast finger movement from separate finger touches (in [pixels/refresh interval]). More...
     
    -cy_stc_capsense_position_t oldPeak [CY_CAPSENSE_CSX_TOUCHPAD_MAX_PEAKS]
     Touch Positions.
     
    -uint8_t oldPeakNumber
     Number of detected peaks.
     
    -uint8_t oldActiveIdsMask
     Mask of used IDs.
     
    -

    Field Documentation

    - -

    ◆ velocity

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_csx_touch_history_t::velocity
    -
    - -

    The square of the "speed" (maximum distance change per refresh interval) threshold distinguishing a fast finger movement from separate finger touches (in [pixels/refresh interval]).

    -

    Squared speeds exceeding this value indicate separate finger touches. Squared speeds below this value indicate fast single finger movement.

    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__electrode__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__electrode__config__t.html deleted file mode 100644 index 53a54c7ce3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__electrode__config__t.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_electrode_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_electrode_config_t Struct Reference
    -
    -
    -

    Description

    -

    Electrode objects configuration structure.

    -
    - - - - - - - - - - - - - -

    -Data Fields

    -const cy_stc_capsense_pin_config_tptrPin
     Pointer to pin configuration structure.
     
    -uint8_t type
     Electrode type cy_en_capsense_eltd_t.
     
    -uint8_t numPins
     Total number of pins in this sensor.
     
    uint8_t chId
     Channel Id the electrode belongs to. More...
     
    -

    Field Documentation

    - -

    ◆ chId

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_electrode_config_t::chId
    -
    - -

    Channel Id the electrode belongs to.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__config__t.html deleted file mode 100644 index 199414c4e3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__config__t.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_gesture_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_gesture_config_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture configuration structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t resolutionX
     Widget maximum position X-axis.
     
    -uint16_t resolutionY
     Widget maximum position Y-axis.
     
    -uint16_t gestureEnableMask
     Enabled gesture mask.
     
    -uint16_t flickTimeoutMax
     Flick maximum timeout.
     
    -uint16_t edgeTimeoutMax
     Edge Swipe maximum timeout.
     
    -uint16_t clickTimeoutMax
     Click maximum timeout.
     
    -uint16_t clickTimeoutMin
     Click minimum timeout.
     
    -uint16_t secondClickIntervalMax
     Second Click maximum interval.
     
    -uint16_t secondClickIntervalMin
     Second Click minimum interval.
     
    -uint16_t zoomDistanceMin
     Zoom minimum distance.
     
    -uint16_t flickDistanceMin
     Flick minimum distance.
     
    -uint16_t scrollDistanceMin
     Scroll minimum distance.
     
    -uint16_t rotateDistanceMin
     Rotate minimum distance.
     
    -uint16_t edgeDistanceMin
     Edge Swipe minimum distance.
     
    -uint8_t secondClickDistanceMax
     Second Click maximum distance.
     
    -uint8_t clickDistanceMax
     Click maximum distance.
     
    -uint8_t zoomDebounce
     Zoom debounce.
     
    -uint8_t scrollDebounce
     Scroll debounce.
     
    -uint8_t rotateDebounce
     Rotate debounce.
     
    -uint8_t edgeAngleMax
     Edge Swipe maximum angle.
     
    -uint8_t edgeEdgeSize
     Edge Swipe border size.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__context__t.html deleted file mode 100644 index def2b782d1..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__context__t.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_gesture_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_gesture_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture global context structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -cy_stc_capsense_gesture_position_t position1
     Current position of the first touch.
     
    -cy_stc_capsense_gesture_position_t positionLast1
     Previous position of the first touch.
     
    -cy_stc_capsense_gesture_position_t position2
     Current position of the second touch.
     
    -cy_stc_capsense_gesture_position_t positionLast2
     Previous position of the second touch.
     
    -uint32_t timestamp
     Current timestamp.
     
    -uint16_t detected
     Detected gesture mask.
     
    -uint16_t direction
     Mask of direction of detected gesture.
     
    -cy_stc_capsense_ofrt_context_t ofrtContext
     One-finger rotate gesture context.
     
    -cy_stc_capsense_ofsl_context_t ofslContext
     One-finger scroll gesture context.
     
    -cy_stc_capsense_tfzm_context_t tfzmContext
     Two-finger zoom gesture context.
     
    -cy_stc_capsense_tfsc_context_t tfscContext
     Two-finger single click gesture context.
     
    -cy_stc_capsense_ofes_context_t ofesContext
     One-finger edge swipe gesture context.
     
    -cy_stc_capsense_offl_context_t offlContext
     One-finger flick gesture context.
     
    -cy_stc_capsense_ofsc_context_t ofscContext
     One-finger single click gesture context.
     
    -cy_stc_capsense_ofdc_context_t ofdcContext
     One-finger double click gesture context.
     
    -cy_stc_capsense_ofcd_context_t ofcdContext
     One-finger click and drag gesture context.
     
    -cy_stc_capsense_tfsl_context_t tfslContext
     Two-finger scroll gesture context.
     
    -uint8_t numPosition
     Current number of touches.
     
    -uint8_t numPositionLast
     Previous number of touches.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__position__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__position__t.html deleted file mode 100644 index d1443a7705..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__gesture__position__t.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_gesture_position_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_gesture_position_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture position structure.

    -
    - - - - - - - -

    -Data Fields

    -uint16_t x
     X axis position.
     
    -uint16_t y
     Y axis position.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__hw__smartsense__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__hw__smartsense__config__t.html deleted file mode 100644 index ffa2cf27dd..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__hw__smartsense__config__t.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_hw_smartsense_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_hw_smartsense_config_t Struct Reference
    -
    -
    -

    Description

    -

    Declares HW smart sensing algorithm data structure for CSD widgets for fifth-generation CAPSENSE™.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint32_t snsCapacitance
     Sensor parasitic capacitance in fF 10^-15.
     
    -uint32_t modClock
     Modulation clock frequency in Hz.
     
    -uint16_t nSub0
     Base number of sub-conversions.
     
    -uint16_t nSub1
     Final number of sub-conversions.
     
    -uint16_t raw
     Sensor raw counts.
     
    -uint16_t snsResistance
     Resistance in series to a sensor.
     
    -uint16_t kRef0
     Base sense frequency.
     
    -uint16_t kRef1
     Final sense frequency.
     
    -uint16_t fingerCap
     Finger capacitance in fF 10^-15 (Set in Basic tab in pF 10^-12)
     
    -uint16_t sigPFC
     sigPFC value (Signal Per Finger Capacitance)
     
    -uint8_t refCdac
     Reference CAP DAC code.
     
    -uint8_t correctionCoeff
     Correction coefficient for CTRL_MUX mode.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__idac__gain__table__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__idac__gain__table__t.html deleted file mode 100644 index 580abb6318..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__idac__gain__table__t.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_idac_gain_table_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_idac_gain_table_t Struct Reference
    -
    -
    -

    Description

    -

    Declares the IDAC gain table.

    -
    Note
    This structure is available only for the fourth-generation CAPSENSE™.
    -
    - - - - - - - -

    -Data Fields

    -uint32_t gainReg
     Register value of IDAC gain.
     
    -uint32_t gainValue
     Absolute gain value in pA.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__internal__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__internal__context__t.html deleted file mode 100644 index fcc59a40e8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__internal__context__t.html +++ /dev/null @@ -1,1269 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_internal_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_internal_context_t Struct Reference
    -
    -
    -

    Description

    -

    Declares internal Context Data Structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    uint8_t intrCsdInactSnsConn
     Internal inactive electrode connection for CSD scan: More...
     
    uint8_t intrCsxInactSnsConn
     Internal inactive electrode connection for CSX scan: More...
     
    -uint32_t csdInactiveSnsDm
     Internal pre-calculated data for faster operation.
     
    -en_hsiom_sel_t csdInactiveSnsHsiom
     Internal pre-calculated data for faster operation.
     
    -uint32_t csxInactiveSnsDm
     Internal pre-calculated data for faster operation.
     
    -en_hsiom_sel_t csxInactiveSnsHsiom
     Internal pre-calculated data for faster operation.
     
    cy_capsense_callback_t ptrSSCallback
     Pointer to a user's Start Sample callback function. More...
     
    cy_capsense_callback_t ptrEOSCallback
     Pointer to a user's End Of Scan callback function. More...
     
    cy_capsense_tuner_send_callback_t ptrTunerSendCallback
     Pointer to a user's tuner callback function. More...
     
    cy_capsense_tuner_receive_callback_t ptrTunerReceiveCallback
     Pointer to a user's tuner callback function. More...
     
    -void(* ptrISRCallback )(void *context)
     Pointer to the scan interrupt handler.
     
    uint32_t csdRegConfig
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwHsPSelScan
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwHsPSelCmodInit
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwHsPSelCtankInit
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwBypSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwResScan
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwResInit
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwDsiSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegAmuxbufInit
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwAmuxbufSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwShieldSelScan
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegHscmpInit
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegHscmpScan
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdIdacAConfig
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdIdacBConfig
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwCmpPSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwCmpNSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegIoSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegRefgen
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csdRegSwRefGenSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegConfigInit
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegConfigScan
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegSwResInit
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegSwResPrech
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegSwResScan
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegAMuxBuf
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegRefgen
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegRefgenSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegSwCmpNSel
     Internal pre-calculated data for faster operation. More...
     
    uint32_t csxRegSwRefGenSel
     Internal pre-calculated data for faster operation. More...
     
    uint8_t csdCmodConnection
     Internal pre-calculated data for faster operation. More...
     
    uint8_t csdCshConnection
     Internal pre-calculated data for faster operation. More...
     
    uint8_t csdVrefGain
     Internal pre-calculated data for faster operation. More...
     
    uint16_t csdVrefVoltageMv
     Internal pre-calculated data for faster operation. More...
     
    cy_capsense_ds_init_callback_t ptrEODsInitCallback
     Pointer to a user's End Of Data Structure Initialization callback function. More...
     
    -uint32_t snsCtlReg [1]
     Keeps value of non-retention SNS_CTL register for LFT mode.
     
    uint16_t numEpiCycles
     Number of clk_mod cycles to be run during EPILOGUE. More...
     
    uint16_t numCoarseInitChargeCycles
     Configure duration of Cmod initialization, phase 1. More...
     
    uint16_t numCoarseInitSettleCycles
     Configure duration of Cmod initialization, phase 2. More...
     
    uint16_t numFineInitWaitCycles
     Number of ProDummy Wait Cycles. More...
     
    uint16_t currentSlotIndex
     Current slot ID. More...
     
    uint16_t endSlotIndex
     The last slot ID for the current frame. More...
     
    uint8_t scanSingleSlot
     Request of scanning just one slot with keeping HW configuration after scan: More...
     
    uint8_t numSenseMethod
     The number of sense methods, used in the project. More...
     
    uint8_t mapSenseMethod [CY_CAPSENSE_REG_MODE_NUMBER]
     The map array of sense methods, used in the project. More...
     
    uint8_t numProOffsetCycles
     Maximum number of clk_mod cycles for the PRO_OFFSET state. More...
     
    uint8_t proOffsetCdacComp
     Compensation CAPDAC size during PRO_OFFSET. More...
     
    uint8_t hwConfigState
     Contains the current hw state, it is configured or not and if yes then to what operation. More...
     
    uint8_t slotAutoCalibrMode
     The slot auto-calibration mode: More...
     
    uint8_t intrCsdRawTarget
     Internal auto-calibration target in percentage for CSD widgets. More...
     
    uint8_t intrCsxRawTarget
     Internal auto-calibration target in percentage for CSX widgets. More...
     
    -

    Field Documentation

    - -

    ◆ intrCsdInactSnsConn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::intrCsdInactSnsConn
    -
    - -

    Internal inactive electrode connection for CSD scan:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_SHIELD
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ intrCsxInactSnsConn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::intrCsxInactSnsConn
    -
    - -

    Internal inactive electrode connection for CSX scan:

    -
      -
    • CY_CAPSENSE_SNS_CONNECTION_HIGHZ
    • -
    • CY_CAPSENSE_SNS_CONNECTION_GROUND
    • -
    - -
    -
    - -

    ◆ ptrSSCallback

    - -
    -
    - - - - -
    cy_capsense_callback_t cy_stc_capsense_internal_context_t::ptrSSCallback
    -
    - -

    Pointer to a user's Start Sample callback function.

    -

    Refer to Callbacks section

    - -
    -
    - -

    ◆ ptrEOSCallback

    - -
    -
    - - - - -
    cy_capsense_callback_t cy_stc_capsense_internal_context_t::ptrEOSCallback
    -
    - -

    Pointer to a user's End Of Scan callback function.

    -

    Refer to Callbacks section

    - -
    -
    - -

    ◆ ptrTunerSendCallback

    - -
    -
    - - - - -
    cy_capsense_tuner_send_callback_t cy_stc_capsense_internal_context_t::ptrTunerSendCallback
    -
    - -

    Pointer to a user's tuner callback function.

    -

    Refer to Callbacks section

    - -
    -
    - -

    ◆ ptrTunerReceiveCallback

    - -
    -
    - - - - -
    cy_capsense_tuner_receive_callback_t cy_stc_capsense_internal_context_t::ptrTunerReceiveCallback
    -
    - -

    Pointer to a user's tuner callback function.

    -

    Refer to Callbacks section

    - -
    -
    - -

    ◆ csdRegConfig

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegConfig
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwHsPSelScan

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwHsPSelScan
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwHsPSelCmodInit

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwHsPSelCmodInit
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwHsPSelCtankInit

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwHsPSelCtankInit
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwBypSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwBypSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwResScan

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwResScan
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwResInit

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwResInit
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwDsiSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwDsiSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegAmuxbufInit

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegAmuxbufInit
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwAmuxbufSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwAmuxbufSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwShieldSelScan

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwShieldSelScan
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegHscmpInit

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegHscmpInit
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegHscmpScan

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegHscmpScan
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacAConfig

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdIdacAConfig
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdIdacBConfig

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdIdacBConfig
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwCmpPSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwCmpPSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwCmpNSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwCmpNSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegIoSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegIoSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegRefgen

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegRefgen
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdRegSwRefGenSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csdRegSwRefGenSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegConfigInit

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegConfigInit
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegConfigScan

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegConfigScan
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegSwResInit

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegSwResInit
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegSwResPrech

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegSwResPrech
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegSwResScan

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegSwResScan
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegAMuxBuf

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegAMuxBuf
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegRefgen

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegRefgen
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegRefgenSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegRefgenSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegSwCmpNSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegSwCmpNSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csxRegSwRefGenSel

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_internal_context_t::csxRegSwRefGenSel
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdCmodConnection

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::csdCmodConnection
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdCshConnection

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::csdCshConnection
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdVrefGain

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::csdVrefGain
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ csdVrefVoltageMv

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_internal_context_t::csdVrefVoltageMv
    -
    - -

    Internal pre-calculated data for faster operation.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ ptrEODsInitCallback

    - -
    -
    - - - - -
    cy_capsense_ds_init_callback_t cy_stc_capsense_internal_context_t::ptrEODsInitCallback
    -
    - -

    Pointer to a user's End Of Data Structure Initialization callback function.

    -

    Refer to Callbacks section

    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numEpiCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_internal_context_t::numEpiCycles
    -
    - -

    Number of clk_mod cycles to be run during EPILOGUE.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numCoarseInitChargeCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_internal_context_t::numCoarseInitChargeCycles
    -
    - -

    Configure duration of Cmod initialization, phase 1.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numCoarseInitSettleCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_internal_context_t::numCoarseInitSettleCycles
    -
    - -

    Configure duration of Cmod initialization, phase 2.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numFineInitWaitCycles

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_internal_context_t::numFineInitWaitCycles
    -
    - -

    Number of ProDummy Wait Cycles.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ currentSlotIndex

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_internal_context_t::currentSlotIndex
    -
    - -

    Current slot ID.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ endSlotIndex

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_internal_context_t::endSlotIndex
    -
    - -

    The last slot ID for the current frame.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ scanSingleSlot

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::scanSingleSlot
    -
    - -

    Request of scanning just one slot with keeping HW configuration after scan:

    -
      -
    • CY_CAPSENSE_SCAN_SNGL_SLOT - Single slot scanning
    • -
    • CY_CAPSENSE_SCAN_MULTIPLE_SLOT - Multiple slot scanning
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    - -

    ◆ numSenseMethod

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::numSenseMethod
    -
    - -

    The number of sense methods, used in the project.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ mapSenseMethod

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::mapSenseMethod[CY_CAPSENSE_REG_MODE_NUMBER]
    -
    - -

    The map array of sense methods, used in the project.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numProOffsetCycles

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::numProOffsetCycles
    -
    - -

    Maximum number of clk_mod cycles for the PRO_OFFSET state.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ proOffsetCdacComp

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::proOffsetCdacComp
    -
    - -

    Compensation CAPDAC size during PRO_OFFSET.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ hwConfigState

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::hwConfigState
    -
    - -

    Contains the current hw state, it is configured or not and if yes then to what operation.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ slotAutoCalibrMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::slotAutoCalibrMode
    -
    - -

    The slot auto-calibration mode:

    -
      -
    • 0 - CY_CAPSENSE_CAL_MODE_REF_CDAC_SUC_APPR
    • -
    • 2 - CY_CAPSENSE_CAL_MODE_COMP_CDAC_SUC_APPR
    • -
    • 3 - CY_CAPSENSE_CAL_MODE_COMP_CDAC_MAX_CODE
      Note
      This field is available only for the fifth-generation CAPSENSE™.
      -
    • -
    - -
    -
    - -

    ◆ intrCsdRawTarget

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::intrCsdRawTarget
    -
    - -

    Internal auto-calibration target in percentage for CSD widgets.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ intrCsxRawTarget

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_internal_context_t::intrCsxRawTarget
    -
    - -

    Internal auto-calibration target in percentage for CSX widgets.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__mptx__table__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__mptx__table__t.html deleted file mode 100644 index 41d9e01a32..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__mptx__table__t.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_mptx_table_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_mptx_table_t Struct Reference
    -
    -
    -

    Description

    -

    Multi-phase TX table for de-convolution structure.

    -
    Note
    This structure is available only for the fifth-generation CAPSENSE™.
    -
    - - - - - - - -

    -Data Fields

    -uint32_t vector
     TX vector / pattern.
     
    -int16_t deconvCoef [32u]
     De-convolution coefficients.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofcd__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofcd__context__t.html deleted file mode 100644 index ed86912d2a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofcd__context__t.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ofcd_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ofcd_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture One Finger Click and Drag context structure.

    -
    - - - - - - - - - - -

    -Data Fields

    -uint32_t touchStartTime1
     Touchdown time.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position.
     
    -uint8_t state
     Gesture state.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofdc__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofdc__context__t.html deleted file mode 100644 index dbfaf6677a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofdc__context__t.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ofdc_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ofdc_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture One Finger Double Click context structure.

    -
    - - - - - - - - - - -

    -Data Fields

    -uint32_t touchStartTime1
     Touchdown time.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position.
     
    -uint8_t state
     Gesture state.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofes__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofes__context__t.html deleted file mode 100644 index fa49e16fe7..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofes__context__t.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ofes_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ofes_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture One Finger Edge Swipe context structure.

    -
    - - - - - - - - - - - - - -

    -Data Fields

    -uint32_t touchStartTime1
     Touchdown time.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position.
     
    -uint8_t state
     Gesture state.
     
    -uint8_t edge
     Detected edge.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__offl__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__offl__context__t.html deleted file mode 100644 index 1c77edd1b1..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__offl__context__t.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_offl_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_offl_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture One Finger Flick context structure.

    -
    - - - - - - - - - - -

    -Data Fields

    -uint32_t touchStartTime1
     Touchdown time.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position.
     
    -uint8_t state
     Gesture state.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofrt__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofrt__context__t.html deleted file mode 100644 index 0ee60e293e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofrt__context__t.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ofrt_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ofrt_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture One Finger Rotate context structure.

    -
    - - - - - - - - - - - - - -

    -Data Fields

    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position.
     
    -uint8_t state
     Gesture state.
     
    -uint8_t history
     History of detected movements.
     
    -uint8_t debounce
     Gesture debounce counter.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofsc__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofsc__context__t.html deleted file mode 100644 index 5e927468cb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofsc__context__t.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ofsc_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ofsc_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture One Finger Single Click context structure.

    -
    - - - - - - - - - - -

    -Data Fields

    -uint32_t touchStartTime1
     Touchdown time.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position.
     
    -uint8_t state
     Gesture state.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofsl__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofsl__context__t.html deleted file mode 100644 index 8ac4fb2dfe..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__ofsl__context__t.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_ofsl_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_ofsl_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture One Finger Scroll context structure.

    -
    - - - - - - - - - - - - - -

    -Data Fields

    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position.
     
    -uint8_t state
     Gesture state.
     
    -uint8_t debounce
     Gesture debounce counter.
     
    -uint8_t direction
     Last reported direction.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__pin__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__pin__config__t.html deleted file mode 100644 index 9f5003a97e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__pin__config__t.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_pin_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_pin_config_t Struct Reference
    -
    -
    -

    Description

    -

    Legacy mode pin configuration structure.

    -
    - - - - - - - - - - - - - -

    -Data Fields

    -GPIO_PRT_Type * pcPtr
     Pointer to the base port register of the IO.
     
    -uint8_t pinNumber
     Position of the IO in the port.
     
    uint8_t padNumber
     Control Mux pad number. More...
     
    uint8_t chId
     Channel Id the pin belongs to. More...
     
    -

    Field Documentation

    - -

    ◆ padNumber

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_pin_config_t::padNumber
    -
    - -

    Control Mux pad number.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ chId

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_pin_config_t::chId
    -
    - -

    Channel Id the pin belongs to.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__position__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__position__t.html deleted file mode 100644 index 1e6f8ae177..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__position__t.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_position_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_position_t Struct Reference
    -
    -
    -

    Description

    -

    Declares position structure that keep information of a single touch.

    -

    Depending on a widget type each structure field keeps the following information:

    - - - - - - - - - - - -
    Structure Field Slider Matrix Buttons CSD Touchpad CSX Touchpad
    x X-axis position Active Column X-axis position X-axis position
    y Reserved Active Row Y-axis position Y-axis position
    z Reserved Reserved Reserved MSB = Age of touch; LSB = Z-value
    id Reserved Logical number of button Reserved MSB = Debounce; LSB = touch ID
    -
    - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t x
     X position.
     
    -uint16_t y
     Y position.
     
    -uint16_t z
     Z value.
     
    -uint16_t id
     ID of touch.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__scan__slot__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__scan__slot__t.html deleted file mode 100644 index a716822728..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__scan__slot__t.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_scan_slot_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_scan_slot_t Struct Reference
    -
    -
    -

    Description

    -

    Declares the scan order of widget and sensor.

    -
    Note
    This structure is available only for the fifth-generation CAPSENSE™.
    -
    - - - - - - - -

    -Data Fields

    -uint16_t wdId
     Specifies the widget ID for the current scan slot.
     
    -uint16_t snsId
     Specifies the sensor ID for the current scan slot.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__sensor__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__sensor__context__t.html deleted file mode 100644 index f0a10cc0db..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__sensor__context__t.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_sensor_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_sensor_context_t Struct Reference
    -
    -
    -

    Description

    -

    Sensor context structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t raw
     Sensor raw count.
     
    -uint16_t bsln
     Sensor baseline.
     
    -uint16_t diff
     Sensor difference count.
     
    uint8_t status
     Sensor status, contains masks: More...
     
    -uint8_t negBslnRstCnt
     Negative baseline reset counter.
     
    uint8_t idacComp
     Compensation IDAC of CSD or IDAC in CSX. More...
     
    -uint8_t bslnExt
     Sensor baseline fractional.
     
    uint8_t cdacComp
     Compensation CDAC. More...
     
    -

    Field Documentation

    - -

    ◆ status

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_sensor_context_t::status
    -
    - -

    Sensor status, contains masks:

    -
      -
    • bit[0] - Sensor Touched (CY_CAPSENSE_SNS_TOUCH_STATUS_MASK)
    • -
    • bit[1] - Proximity Sensor Touched (CY_CAPSENSE_SNS_PROX_STATUS_MASK)
    • -
    • bit[2] - Overflow during scanning (CY_CAPSENSE_SNS_OVERFLOW_MASK)
    • -
    - -
    -
    - -

    ◆ idacComp

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_sensor_context_t::idacComp
    -
    - -

    Compensation IDAC of CSD or IDAC in CSX.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacComp

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_sensor_context_t::cdacComp
    -
    - -

    Compensation CDAC.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__smartsense__csd__noise__envelope__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__smartsense__csd__noise__envelope__t.html deleted file mode 100644 index 5b5c7a3cac..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__smartsense__csd__noise__envelope__t.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_smartsense_csd_noise_envelope_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_smartsense_csd_noise_envelope_t Struct Reference
    -
    -
    -

    Description

    -

    Declares Noise envelope data structure for CSD widgets when smart sensing algorithm is enabled.

    -
    - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t param0
     Parameter 0 configuration.
     
    -uint16_t param1
     Parameter 1 configuration.
     
    -uint16_t param2
     Parameter 2 configuration.
     
    -uint16_t param3
     Parameter 3 configuration.
     
    -uint16_t param4
     Parameter 4 configuration.
     
    -uint8_t param5
     Parameter 5 configuration.
     
    -uint8_t param6
     Parameter 6 configuration.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__smartsense__update__thresholds__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__smartsense__update__thresholds__t.html deleted file mode 100644 index 46b9e06de7..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__smartsense__update__thresholds__t.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_smartsense_update_thresholds_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_smartsense_update_thresholds_t Struct Reference
    -
    -
    -

    Description

    -

    Declares Update Thresholds structure.

    -
    - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t fingerTh
     Widget finger threshold.
     
    -uint8_t noiseTh
     Widget noise threshold.
     
    -uint8_t nNoiseTh
     Widget negative noise threshold.
     
    -uint8_t hysteresis
     Widget hysteresis for the signal crossing finger threshold.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfsc__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfsc__context__t.html deleted file mode 100644 index 5183685557..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfsc__context__t.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_tfsc_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_tfsc_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture Two Finger Single Click context structure.

    -
    - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint32_t touchStartTime1
     Touchdown time of the first touch.
     
    -uint32_t touchStartTime2
     Touchdown time of the second touch.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position of the first touch.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition2
     Touchdown position of the second touch.
     
    -uint8_t state
     Gesture state.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfsl__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfsl__context__t.html deleted file mode 100644 index 834cc89932..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfsl__context__t.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_tfsl_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_tfsl_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture Two Finger Scroll context structure.

    -
    - - - - - - - - - - - - - - - - -

    -Data Fields

    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position of the first touch.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition2
     Touchdown position of the second touch.
     
    -uint8_t state
     Gesture state.
     
    -uint8_t debounce
     Gesture debounce counter.
     
    -uint8_t direction
     Last reported direction.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfzm__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfzm__context__t.html deleted file mode 100644 index e81d82eaf8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__tfzm__context__t.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_tfzm_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_tfzm_context_t Struct Reference
    -
    -
    -

    Description

    -

    Gesture Two Finger Zoom context structure.

    -
    - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -cy_stc_capsense_gesture_position_t touchStartPosition1
     Touchdown position of the first touch.
     
    -cy_stc_capsense_gesture_position_t touchStartPosition2
     Touchdown position of the second touch.
     
    -uint16_t distanceX
     History of X-axis displacement.
     
    -uint16_t distanceY
     History of Y-axis displacement.
     
    -uint8_t state
     Gesture state.
     
    -uint8_t debounce
     Gesture debounce counter.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__touch__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__touch__t.html deleted file mode 100644 index 5404ed6957..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__touch__t.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_touch_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_touch_t Struct Reference
    -
    -
    -

    Description

    -

    Declares touch structure used to store positions of Touchpad, Matrix buttons and Slider widgets.

    -
    - - - - - - - -

    -Data Fields

    cy_stc_capsense_position_tptrPosition
     Pointer to the array containing the position information. More...
     
    uint8_t numPosition
     Total number of detected touches on a widget: More...
     
    -

    Field Documentation

    - -

    ◆ ptrPosition

    - -
    -
    - - - - -
    cy_stc_capsense_position_t* cy_stc_capsense_touch_t::ptrPosition
    -
    - -

    Pointer to the array containing the position information.

    -

    A number of elements is defined by numPosition.

    - -
    -
    - -

    ◆ numPosition

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_touch_t::numPosition
    -
    - -

    Total number of detected touches on a widget:

    -
      -
    • 0 - no touch is detected
    • -
    • 1 - a single touch is detected
    • -
    • 2 - two touches are detected
    • -
    • 3 - three touches are detected
    • -
    • CY_CAPSENSE_POSITION_MULTIPLE - multiple touches are detected and information in position structure should be ignored.
    • -
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__config__t.html deleted file mode 100644 index 3e123aa9a8..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__config__t.html +++ /dev/null @@ -1,557 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_widget_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_widget_config_t Struct Reference
    -
    -
    -

    Description

    -

    Widget configuration structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -cy_stc_capsense_widget_context_tptrWdContext
     Pointer to context structure of this widget.
     
    -cy_stc_capsense_sensor_context_tptrSnsContext
     Pointer to the first object of sensor context structure that belongs to this widget.
     
    -const cy_stc_capsense_electrode_config_tptrEltdConfig
     Pointer to the first object of electrode configuration structure that belongs to this widget.
     
    -uint32_t * ptrEltdCapacitance
     Pointer to the first object in the electrode capacitance array that belongs to this widget.
     
    uint32_t * ptrSnsCapacitance
     Pointer to the first object in the sensor capacitance array that belongs to this widget. More...
     
    -uint16_t * ptrBslnInv
     Pointer to the first object in the sensor baseline inversion array that belongs to this widget.
     
    -cy_stc_capsense_smartsense_csd_noise_envelope_tptrNoiseEnvelope
     Pointer to the noise envelope filter used by smart sensing algorithm.
     
    -uint16_t * ptrRawFilterHistory
     Pointer to the raw count filter history of the widget.
     
    -uint8_t * ptrRawFilterHistoryLow
     Pointer to the raw count filter history extended of the widget.
     
    uint32_t iirCoeff
     Raw count IIR filter coefficient. More...
     
    -uint8_t * ptrDebounceArr
     Pointer to the debounce array of the widget.
     
    -const uint8_t * ptrDiplexTable
     Pointer to the diplex table used for Linear slider when Diplex option is enabled.
     
    -uint32_t centroidConfig
     Configuration of centroids.
     
    uint16_t xResolution
     Keeps maximum position value. More...
     
    -uint16_t yResolution
     For Touchpads Y-Axis maximum position.
     
    uint16_t numSns
     The total number of sensors: For CSD widgets: WD_NUM_ROWS + WD_NUM_COLS. More...
     
    uint8_t numCols
     For CSD Button and Proximity Widgets, the number of sensors. More...
     
    uint8_t numRows
     For CSD Touchpad and Matrix Buttons, the number of the row sensors. More...
     
    -cy_stc_capsense_touch_tptrPosFilterHistory
     Pointer to the position filter history.
     
    -cy_stc_capsense_csx_touch_history_tptrCsxTouchHistory
     Pointer to the CSX touchpad history.
     
    -cy_stc_capsense_csx_touch_buffer_tptrCsxTouchBuffer
     Pointer to the single CSX buffer needed for CSX touchpad processing.
     
    -uint16_t * ptrCsdTouchBuffer
     Pointer to the CSD buffer needed for advanced CSD touchpad processing.
     
    -cy_stc_capsense_gesture_config_tptrGestureConfig
     Pointer to Gesture configuration structure.
     
    -cy_stc_capsense_gesture_context_tptrGestureContext
     Pointer to Gesture context structure.
     
    cy_stc_capsense_ballistic_config_t ballisticConfig
     The configuration data for position ballistic filter. More...
     
    -cy_stc_capsense_ballistic_context_tptrBallisticContext
     Pointer to Ballistic filter context structure.
     
    cy_stc_capsense_adaptive_filter_config_t aiirConfig
     The configuration of position adaptive filter. More...
     
    -cy_stc_capsense_advanced_touchpad_config_t advConfig
     The configuration of CSD advanced touchpad.
     
    -uint32_t posFilterConfig
     Position filters configuration.
     
    -uint16_t rawFilterConfig
     Raw count filters configuration.
     
    uint8_t senseMethod
     Specifies the widget sensing method: More...
     
    -uint8_t wdType
     Specifies the widget type.
     
    cy_stc_capsense_mptx_table_tptrMptxTable
     Pointer to the multi-phase TX vector and de-convolution coefficients. More...
     
    uint16_t firstSlotId
     The slot ID in the widget to start scan from. More...
     
    uint16_t numSlots
     The number of slots in the widget. More...
     
    uint8_t numChopCycles
     Defines number of chopping cycles. More...
     
    uint8_t mptxOrder
     Multi-phase TX order. More...
     
    uint8_t lfsrDitherLimit
     Max dither in percentage. More...
     
    uint8_t snsClkSourceAutoSelMode
     Defines set of rules that are used by clock source auto-selection algorithm. More...
     
    uint8_t mfsConfig
     Multi-frequency Scan (MFS) widget configuration. More...
     
    -

    Field Documentation

    - -

    ◆ ptrSnsCapacitance

    - -
    -
    - - - - -
    uint32_t* cy_stc_capsense_widget_config_t::ptrSnsCapacitance
    -
    - -

    Pointer to the first object in the sensor capacitance array that belongs to this widget.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ iirCoeff

    - -
    -
    - - - - -
    uint32_t cy_stc_capsense_widget_config_t::iirCoeff
    -
    - -

    Raw count IIR filter coefficient.

    -

    Smaller value leads to higher filtering

    - -
    -
    - -

    ◆ xResolution

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_config_t::xResolution
    -
    - -

    Keeps maximum position value.

    -

    For Touchpads X-axis maximum position

    - -
    -
    - -

    ◆ numSns

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_config_t::numSns
    -
    - -

    The total number of sensors: For CSD widgets: WD_NUM_ROWS + WD_NUM_COLS.

    -

    For CSX widgets: WD_NUM_ROWS * WD_NUM_COLS.

    - -
    -
    - -

    ◆ numCols

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::numCols
    -
    - -

    For CSD Button and Proximity Widgets, the number of sensors.

    -

    For CSD Slider Widget, the number of segments. For CSD Touchpad and Matrix Button, the number of the column sensors. For CSX Button, Slider, Touchpad, and Matrix Button, the number of the Rx electrodes.

    - -
    -
    - -

    ◆ numRows

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::numRows
    -
    - -

    For CSD Touchpad and Matrix Buttons, the number of the row sensors.

    -

    For the CSX Button and Slider, the number of the Tx electrodes (constant 1u). For CSX Touchpad and Matrix Button, the number of the Tx electrodes.

    - -
    -
    - -

    ◆ ballisticConfig

    - -
    -
    - - - - -
    cy_stc_capsense_ballistic_config_t cy_stc_capsense_widget_config_t::ballisticConfig
    -
    - -

    The configuration data for position ballistic filter.

    - -
    -
    - -

    ◆ aiirConfig

    - -
    -
    - - - - -
    cy_stc_capsense_adaptive_filter_config_t cy_stc_capsense_widget_config_t::aiirConfig
    -
    - -

    The configuration of position adaptive filter.

    - -
    -
    - -

    ◆ senseMethod

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::senseMethod
    -
    - -

    Specifies the widget sensing method:

    -
      -
    • 0 - UNDEFINED (CY_CAPSENSE_UNDEFINED_GROUP)
    • -
    • 1 - CSD (CY_CAPSENSE_CSD_GROUP)
    • -
    • 2 - CSX (CY_CAPSENSE_CSX_GROUP)
    • -
    - -
    -
    - -

    ◆ ptrMptxTable

    - -
    -
    - - - - -
    cy_stc_capsense_mptx_table_t* cy_stc_capsense_widget_config_t::ptrMptxTable
    -
    - -

    Pointer to the multi-phase TX vector and de-convolution coefficients.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ firstSlotId

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_config_t::firstSlotId
    -
    - -

    The slot ID in the widget to start scan from.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numSlots

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_config_t::numSlots
    -
    - -

    The number of slots in the widget.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ numChopCycles

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::numChopCycles
    -
    - -

    Defines number of chopping cycles.

    -

    One cycle means the feature is disabled

    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ mptxOrder

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::mptxOrder
    -
    - -

    Multi-phase TX order.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ lfsrDitherLimit

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::lfsrDitherLimit
    -
    - -

    Max dither in percentage.

    -

    The input parameter for the LFSR range auto-selection algorithm

    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ snsClkSourceAutoSelMode

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::snsClkSourceAutoSelMode
    -
    - -

    Defines set of rules that are used by clock source auto-selection algorithm.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ mfsConfig

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_config_t::mfsConfig
    -
    - -

    Multi-frequency Scan (MFS) widget configuration.

    -

    Contains masks:

      -
    • bit[0:3] - Number of MFS Channels (CY_CAPSENSE_MFS_FREQ_CHANNELS_NUM_MASK).
    • -
    • bit[4] - MFS Configuration (CY_CAPSENSE_MFS_EN_MASK):
        -
      • 0 - MFS Disabled.
      • -
      • 1 - MFS Enabled (Base or Frequency channel widget).
      • -
      -
    • -
    • bit[5:6] - Widget attribute (CY_CAPSENSE_MFS_WIDGET_FREQ_ALL_CH_MASK):
        -
      • 0 - Base widget
      • -
      • 1 - Frequency channel 1 widget (CY_CAPSENSE_MFS_WIDGET_FREQ_CH_1_MASK)
      • -
      • 2 - Frequency channel 2 widget (CY_CAPSENSE_MFS_WIDGET_FREQ_CH_2_MASK)
        Note
        This field is available only for the fifth-generation CAPSENSE™.
        -
      • -
      -
    • -
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__context__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__context__t.html deleted file mode 100644 index 80af92c734..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__context__t.html +++ /dev/null @@ -1,569 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_widget_context_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_widget_context_t Struct Reference
    -
    -
    -

    Description

    -

    Widget context structure.

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t fingerCap
     Widget finger capacitance parameter used for the CSD widgets only when smart sensing algorithm is enabled.
     
    -uint16_t sigPFC
     The 75% of signal per user-defined finger capacitance.
     
    uint16_t resolution
     Provides scan resolution for the CSD Widgets. More...
     
    -uint16_t maxRawCount
     Calculated maximum raw count of widget.
     
    -uint16_t maxRawCountRow
     Calculated row maximum raw count of widget.
     
    -uint16_t fingerTh
     Widget Finger Threshold.
     
    -uint16_t proxTh
     Widget Proximity Threshold.
     
    uint16_t lowBslnRst
     The widget low baseline reset count. More...
     
    uint16_t snsClk
     Sense Clock Divider. More...
     
    -uint16_t rowSnsClk
     Row Sense Clock Divider for the Matrix Buttons and Touchpad widgets.
     
    -uint16_t gestureDetected
     Mask of detected gestures.
     
    -uint16_t gestureDirection
     Mask of directions of detected gestures.
     
    -int16_t xDelta
     The filtered by Ballistic Multiplier X-displacement.
     
    -int16_t yDelta
     The filtered by Ballistic Multiplier Y-displacement.
     
    -uint16_t noiseTh
     Widget Noise Threshold.
     
    -uint16_t nNoiseTh
     Widget Negative Noise Threshold.
     
    -uint16_t hysteresis
     Widget Hysteresis for the signal crossing finger threshold.
     
    uint8_t onDebounce
     Widget Debounce for the signal above the finger threshold 1 to 255. More...
     
    uint8_t snsClkSource
     Widget clock source: More...
     
    uint8_t idacMod [CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
     Sets the current of the modulation IDAC for the CSD widgets. More...
     
    uint8_t idacGainIndex
     Index of IDAC gain in table cy_stc_capsense_idac_gain_table_t. More...
     
    uint8_t rowIdacMod [CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
     Sets the current of the modulation IDAC for the row sensors for the CSD Touchpad and Matrix Button widgets. More...
     
    uint8_t bslnCoeff
     Baseline IIR filter coefficient. More...
     
    uint8_t status
     Contains masks: More...
     
    -cy_stc_capsense_touch_t wdTouch
     Widget touch structure used for Matrix Buttons, Sliders, and Touchpads.
     
    uint16_t numSubConversions
     Number of sub-conversions in a scan. More...
     
    uint8_t cdacRef
     Sets the capacitance of the reference CDAC. More...
     
    uint8_t rowCdacRef
     Sets the capacitance of the reference CDAC for CSD Touchpad and CSD Matrix buttons widgets. More...
     
    uint8_t cicRate
     Sets decimation rate when CIC2 is enabled. More...
     
    uint8_t cdacDitherEn
     Enabled CDAC dithering. More...
     
    uint8_t cdacDitherValue
     CDAC dither value in percentage. More...
     
    uint8_t coarseInitBypassEn
     Skip Cmod coarse initialization sensors scan within widget. More...
     
    uint16_t cdacCompDivider
     Number of time DAC switched in sense clock period. More...
     
    uint8_t lfsrBits
     Defines the number of LSB bits to use by the LSFR unit to achieve the desired clock dithering variation. More...
     
    -

    Field Documentation

    - -

    ◆ resolution

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_context_t::resolution
    -
    - -

    Provides scan resolution for the CSD Widgets.

    -

    Provides number of sub-conversions for the CSX Widgets

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ lowBslnRst

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_context_t::lowBslnRst
    -
    - -

    The widget low baseline reset count.

    -

    Specifies the number of samples the sensor signal must be below the Negative Noise Threshold nNoiseTh to trigger a baseline reset

    - -
    -
    - -

    ◆ snsClk

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_context_t::snsClk
    -
    - -

    Sense Clock Divider.

    -

    For the Matrix Buttons and Touchpad widgets specifies the column sense clock divider

    - -
    -
    - -

    ◆ onDebounce

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::onDebounce
    -
    - -

    Widget Debounce for the signal above the finger threshold 1 to 255.

    -
      -
    • 1 - touch reported immediately as soon as detected
    • -
    • 2 - touch reported on the second consecutive detection
    • -
    • 3 - touch reported on the third consecutive detection
    • -
    - -
    -
    - -

    ◆ snsClkSource

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::snsClkSource
    -
    - -

    Widget clock source:

    -
      -
    • bit[7] - Indicates auto mode of clock source selection
    • -
    • bit[0:6] - Clock source:
        -
      • 0 - Direct (CY_CAPSENSE_CLK_SOURCE_DIRECT)
      • -
      • 1 - SSC6 (CY_CAPSENSE_CLK_SOURCE_SSC6)
      • -
      • 2 - SSC7 (CY_CAPSENSE_CLK_SOURCE_SSC7)
      • -
      • 3 - SSC9 (CY_CAPSENSE_CLK_SOURCE_SSC9)
      • -
      • 4 - SSC10 (CY_CAPSENSE_CLK_SOURCE_SSC10)
      • -
      • 5 - PRS8 (CY_CAPSENSE_CLK_SOURCE_PRS8)
      • -
      • 6 - PRS12 (CY_CAPSENSE_CLK_SOURCE_PRS12)
      • -
      -
    • -
    - -
    -
    - -

    ◆ idacMod

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::idacMod[CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
    -
    - -

    Sets the current of the modulation IDAC for the CSD widgets.

    -

    For the CSD Touchpad and Matrix Button widgets sets the current of the modulation IDAC for the column sensors. Not used for the CSX widgets.

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ idacGainIndex

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::idacGainIndex
    -
    - -

    Index of IDAC gain in table cy_stc_capsense_idac_gain_table_t.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ rowIdacMod

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::rowIdacMod[CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
    -
    - -

    Sets the current of the modulation IDAC for the row sensors for the CSD Touchpad and Matrix Button widgets.

    -

    Not used for the CSX widgets.

    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ bslnCoeff

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::bslnCoeff
    -
    - -

    Baseline IIR filter coefficient.

    -

    Lower value leads to higher filtering.

    - -
    -
    - -

    ◆ status

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::status
    -
    - -

    Contains masks:

    -
      -
    • bit[0] - Widget Active (CY_CAPSENSE_WD_ACTIVE_MASK)
    • -
    • bit[1] - Widget Disabled (CY_CAPSENSE_WD_DISABLE_MASK)
    • -
    • bit[2] - Widget Working (CY_CAPSENSE_WD_WORKING_MASK)
    • -
    - -
    -
    - -

    ◆ numSubConversions

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_context_t::numSubConversions
    -
    - -

    Number of sub-conversions in a scan.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacRef

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::cdacRef
    -
    - -

    Sets the capacitance of the reference CDAC.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ rowCdacRef

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::rowCdacRef
    -
    - -

    Sets the capacitance of the reference CDAC for CSD Touchpad and CSD Matrix buttons widgets.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cicRate

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::cicRate
    -
    - -

    Sets decimation rate when CIC2 is enabled.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacDitherEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::cdacDitherEn
    -
    - -

    Enabled CDAC dithering.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacDitherValue

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::cdacDitherValue
    -
    - -

    CDAC dither value in percentage.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ coarseInitBypassEn

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::coarseInitBypassEn
    -
    - -

    Skip Cmod coarse initialization sensors scan within widget.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacCompDivider

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_context_t::cdacCompDivider
    -
    - -

    Number of time DAC switched in sense clock period.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ lfsrBits

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_context_t::lfsrBits
    -
    - -

    Defines the number of LSB bits to use by the LSFR unit to achieve the desired clock dithering variation.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__crc__data__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__crc__data__t.html deleted file mode 100644 index 15299dee95..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__capsense__widget__crc__data__t.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_capsense_widget_crc_data_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_capsense_widget_crc_data_t Struct Reference
    -
    -
    -

    Description

    -

    Declares the structure that is intended to store the cy_stc_capsense_widget_context_t data structure fields, the CRC checking should be applied for.

    -
    Note
    This structure is available only for the fourth-generation CAPSENSE™.
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -uint16_t fingerThVal
     The value of the .fingerTh field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t proxThVal
     The value of the .proxTh field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t fingerCapVal
     The value of the .fingerCap field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t sigPFCVal
     The value of the .sigPFC field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t resolutionVal
     The value of the .resolution field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t lowBslnRstVal
     The value of the .lowBslnRst field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t snsClkVal
     The value of the .snsClk field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t rowSnsClkVal
     The value of the .rowSnsClk field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t noiseThVal
     The value of the .noiseTh field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t nNoiseThVal
     The value of the .nNoiseTh field of the cy_stc_capsense_widget_context_t structure.
     
    -uint16_t hysteresisVal
     The value of the .hysteresis field of the cy_stc_capsense_widget_context_t structure.
     
    -uint8_t onDebounceVal
     The value of the .onDebounce field of the cy_stc_capsense_widget_context_t structure.
     
    -uint8_t snsClkSourceVal
     The value of the .snsClkSource field of the cy_stc_capsense_widget_context_t structure.
     
    uint8_t idacModVal [CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
     The value of the .idacMod field of the cy_stc_capsense_widget_context_t structure. More...
     
    uint8_t idacGainIndexVal
     The value of the .idacGainIndex field of the cy_stc_capsense_widget_context_t structure. More...
     
    uint8_t rowIdacModVal [CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
     The value of the .rowIdacMod field of the cy_stc_capsense_widget_context_t structure. More...
     
    uint16_t cdacCompDivider
     The value of the .cdacCompDivider field of the cy_stc_capsense_widget_context_t structure. More...
     
    uint8_t cdacRef
     The value of the .cdacRef field of the cy_stc_capsense_widget_context_t structure. More...
     
    uint8_t rowCdacRef
     The value of the .rowCdacRef field of the cy_stc_capsense_widget_context_t structure. More...
     
    uint8_t cicRate
     The value of the .cicRate field of the cy_stc_capsense_widget_context_t structure. More...
     
    uint8_t lfsrBits
     The value of the .lfsrBits field of the cy_stc_capsense_widget_context_t structure. More...
     
    -

    Field Documentation

    - -

    ◆ idacModVal

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_crc_data_t::idacModVal[CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
    -
    - -

    The value of the .idacMod field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ idacGainIndexVal

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_crc_data_t::idacGainIndexVal
    -
    - -

    The value of the .idacGainIndex field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ rowIdacModVal

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_crc_data_t::rowIdacModVal[CY_CAPSENSE_MAX_SUPPORTED_FREQ_NUM]
    -
    - -

    The value of the .rowIdacMod field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fourth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacCompDivider

    - -
    -
    - - - - -
    uint16_t cy_stc_capsense_widget_crc_data_t::cdacCompDivider
    -
    - -

    The value of the .cdacCompDivider field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cdacRef

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_crc_data_t::cdacRef
    -
    - -

    The value of the .cdacRef field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ rowCdacRef

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_crc_data_t::rowCdacRef
    -
    - -

    The value of the .rowCdacRef field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ cicRate

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_crc_data_t::cicRate
    -
    - -

    The value of the .cicRate field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    - -

    ◆ lfsrBits

    - -
    -
    - - - - -
    uint8_t cy_stc_capsense_widget_crc_data_t::lfsrBits
    -
    - -

    The value of the .lfsrBits field of the cy_stc_capsense_widget_context_t structure.

    -
    Note
    This field is available only for the fifth-generation CAPSENSE™.
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__msc__channel__config__t.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__msc__channel__config__t.html deleted file mode 100644 index 280dd17aa3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/structcy__stc__msc__channel__config__t.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - -CAPSENSE™ Middleware Library 3.0: cy_stc_msc_channel_config_t Struct Reference - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    CAPSENSE™ Middleware Library 3.0
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    cy_stc_msc_channel_config_t Struct Reference
    -
    -
    -

    Description

    -

    Declares MSC channel (HW block) configuration.

    -
    Note
    This structure is available only for the fifth-generation CAPSENSE™.
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Data Fields

    -MSC_Type * ptrMscBase
     Pointer to the MSC HW block register.
     
    -cy_stc_msc_context_t * ptrMscContext
     Pointer to the MSC driver context.
     
    -GPIO_PRT_Type * portCmod1
     The pointer to the Cmod1 pin base port register.
     
    -uint8_t pinCmod1
     The Cmod1 pin position (bit number) in the port.
     
    -GPIO_PRT_Type * portCmod2
     The pointer to the Cmod2 pin base port register.
     
    -uint8_t pinCmod2
     The Cmod2 pin position (bit number) in the port.
     
    -uint8_t dmaWrChIndex
     Specifies the DMA Write channel index.
     
    -uint8_t dmaChainWrChIndex
     Specifies the DMA Chain Write channel index.
     
    -uint8_t dmaRdChIndex
     Specifies the DMA Read channel index.
     
    -uint8_t dmaChainRdChIndex
     Specifies the DMA Chain Read channel index.
     
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/sync_off.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/sync_off.png deleted file mode 100644 index 3b443fc628..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/sync_off.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/sync_on.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/sync_on.png deleted file mode 100644 index e08320fb64..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/sync_on.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_a.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_a.png deleted file mode 100644 index 3b725c41c5..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_a.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_b.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_b.png deleted file mode 100644 index e2b4a8638c..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_b.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_h.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_h.png deleted file mode 100644 index fd5cb70548..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_h.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_s.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_s.png deleted file mode 100644 index ab478c95b6..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tab_s.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tabs.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tabs.css deleted file mode 100644 index a28614b8e3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/capsense/docs/capsense_api_reference_manual/html/tabs.css +++ /dev/null @@ -1 +0,0 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#doc-content{overflow:auto;display:block;padding:0;margin:0;-webkit-overflow-scrolling:touch}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/api_reference_manual.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/api_reference_manual.html deleted file mode 100644 index fd26c4877f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/api_reference_manual.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Redirect to API Reference Manual main page after 0 seconds - - - - -

    - If the automatic redirection is failing, click the following link to open API Reference Manual. -

    - - \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/bc_s.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/bc_s.png deleted file mode 100644 index 224b29aa98..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/bc_s.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/bdwn.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/bdwn.png deleted file mode 100644 index 940a0b9504..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/bdwn.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/closed.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/closed.png deleted file mode 100644 index 98cc2c909d..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/closed.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doc.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doc.png deleted file mode 100644 index 17edabff95..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doc.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doxygen.svg b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doxygen.svg deleted file mode 100644 index d42dad52d5..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doxygen.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doxygen_style.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doxygen_style.css deleted file mode 100644 index b4893b13c0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/doxygen_style.css +++ /dev/null @@ -1,1583 +0,0 @@ -/* The standard CSS for doxygen 1.8.11 */ - -body, table, div, p, dl { - font: 400 14px/22px Roboto,sans-serif; -} - -/* @group Heading Levels */ - -h1.groupheader { - font-size: 150%; -} - -.title { - font: 400 14px/28px Roboto,sans-serif; - font-size: 150%; - font-weight: bold; - margin: 10px 2px; -} - -h2.groupheader { - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -h3.groupheader { - font-size: 100%; -} - -h1, h2, h3, h4, h5, h6 { - -webkit-transition: text-shadow 0.5s linear; - -moz-transition: text-shadow 0.5s linear; - -ms-transition: text-shadow 0.5s linear; - -o-transition: text-shadow 0.5s linear; - transition: text-shadow 0.5s linear; - margin-right: 15px; -} - -h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { - text-shadow: 0 0 15px cyan; -} - -dt { - font-weight: bold; -} - -div.multicol { - -moz-column-gap: 1em; - -webkit-column-gap: 1em; - -moz-column-count: 3; - -webkit-column-count: 3; -} - -p.startli, p.startdd { - margin-top: 2px; -} - -p.starttd { - margin-top: 0px; -} - -p.endli { - margin-bottom: 0px; -} - -p.enddd { - margin-bottom: 4px; -} - -p.endtd { - margin-bottom: 2px; -} - -/* @end */ - -caption { - font-weight: bold; -} - -span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; -} - -div.qindex, div.navpath { - width: 100%; - line-height: 140%; -} - -div.navtab { - margin-right: 15px; -} - -/* @group Link Styling */ - -a { - color: #3D578C; - font-weight: normal; - text-decoration: none; -} - -.contents a:visited { - color: #4665A2; -} - -a:hover { - text-decoration: underline; -} - -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #ffffff; - border: 1px double #869DCA; -} - -.contents a.qindexHL:visited { - color: #ffffff; -} - -a.el { - font-weight: bold; -} - -a.elRef { -} - -a.code, a.code:visited, a.line, a.line:visited { - color: #4665A2; -} - -a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { - color: #4665A2; -} - -/* @end */ - -dl.el { - margin-left: -1cm; -} - -pre.fragment { - border: 1px solid #C4CFE5; - background-color: #FBFCFD; - padding: 4px 6px; - margin: 4px 8px 4px 2px; - overflow: auto; - word-wrap: break-word; - font-size: 9pt; - line-height: 125%; - font-family: monospace, fixed; - font-size: 105%; -} - -div.fragment { - padding: 4px 6px; - margin: 4px 8px 4px 2px; - background-color: #FBFCFD; - border: 1px solid #C4CFE5; -} - -div.line { - font-family: monospace, fixed; - font-size: 13px; - min-height: 13px; - line-height: 1.0; - text-wrap: unrestricted; - white-space: -moz-pre-wrap; /* Moz */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - white-space: pre-wrap; /* CSS3 */ - word-wrap: break-word; /* IE 5.5+ */ - text-indent: -53px; - padding-left: 53px; - padding-bottom: 0px; - margin: 0px; - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -div.line:after { - content:"\000A"; - white-space: pre; -} - -div.line.glow { - background-color: cyan; - box-shadow: 0 0 10px cyan; -} - - -span.lineno { - padding-right: 4px; - text-align: right; - border-right: 2px solid #0F0; - background-color: #E8E8E8; - white-space: pre; -} -span.lineno a { - background-color: #D8D8D8; -} - -span.lineno a:hover { - background-color: #C8C8C8; -} - -div.ah, span.ah { - background-color: black; - font-weight: bold; - color: #ffffff; - margin-bottom: 3px; - margin-top: 3px; - padding: 0.2em; - border: solid thin #333; - border-radius: 0.5em; - -webkit-border-radius: .5em; - -moz-border-radius: .5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); - background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); -} - -div.classindex ul { - list-style: none; - padding-left: 0; -} - -div.classindex span.ai { - display: inline-block; -} - -div.groupHeader { - margin-left: 16px; - margin-top: 12px; - font-weight: bold; -} - -div.groupText { - margin-left: 16px; - font-style: italic; -} - -body { - background-color: white; - color: black; - margin: 0; -} - -div.contents { - margin-top: 10px; - margin-left: 12px; - margin-right: 8px; -} - -td.indexkey { - background-color: #EBEFF6; - font-weight: bold; - border: 1px solid #C4CFE5; - margin: 2px 0px 2px 0; - padding: 2px 10px; - white-space: nowrap; - vertical-align: top; -} - -td.indexvalue { - background-color: #EBEFF6; - border: 1px solid #C4CFE5; - padding: 2px 10px; - margin: 2px 0px; -} - -tr.memlist { - background-color: #EEF1F7; -} - -p.formulaDsp { - text-align: center; -} - -img.formulaDsp { - -} - -img.formulaInl { - vertical-align: middle; -} - -div.center { - text-align: center; - margin-top: 0px; - margin-bottom: 0px; - padding: 0px; -} - -div.center img { - border: 0px; -} - -address.footer { - text-align: right; - padding-right: 12px; -} - -img.footer { - border: 0px; - vertical-align: middle; -} - -/* @group Code Colorization */ - -span.keyword { - color: #008000 -} - -span.keywordtype { - color: #604020 -} - -span.keywordflow { - color: #e08000 -} - -span.comment { - color: #800000 -} - -span.preprocessor { - color: #806020 -} - -span.stringliteral { - color: #002080 -} - -span.charliteral { - color: #008080 -} - -span.vhdldigit { - color: #ff00ff -} - -span.vhdlchar { - color: #000000 -} - -span.vhdlkeyword { - color: #700070 -} - -span.vhdllogic { - color: #ff0000 -} - -blockquote { - background-color: #F7F8FB; - border-left: 2px solid #9CAFD4; - margin: 0 24px 0 4px; - padding: 0 12px 0 16px; -} - -/* @end */ - -/* -.search { - color: #003399; - font-weight: bold; -} - -form.search { - margin-bottom: 0px; - margin-top: 0px; -} - -input.search { - font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #e8eef2; -} -*/ - -td.tiny { - font-size: 75%; -} - -.dirtab { - padding: 4px; - border-collapse: collapse; - border: 1px solid #A3B4D7; -} - -th.dirtab { - background: #EBEFF6; - font-weight: bold; -} - -hr { - height: 0px; - border: none; - border-top: 1px solid #4A6AAA; -} - -hr.footer { - height: 1px; -} - -/* @group Member Descriptions */ - -table.memberdecls { - border-spacing: 0px; - padding: 0px; -} - -.memberdecls td, .fieldtable tr { - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -.memberdecls td.glow, .fieldtable tr.glow { - background-color: cyan; - box-shadow: 0 0 15px cyan; -} - -.mdescLeft, .mdescRight, -.memItemLeft, .memItemRight, -.memTemplItemLeft, .memTemplItemRight, .memTemplParams { - background-color: #F9FAFC; - border: none; - margin: 4px; - padding: 1px 0 0 8px; -} - -.mdescLeft, .mdescRight { - padding: 0px 8px 4px 8px; - color: #555; -} - -.memSeparator { - border-bottom: 1px solid #DEE4F0; - line-height: 1px; - margin: 0px; - padding: 0px; -} - -.memItemLeft, .memTemplItemLeft { - white-space: nowrap; -} - -.memItemRight { - width: 100%; -} - -.memTemplParams { - color: #4665A2; - white-space: nowrap; - font-size: 80%; -} - -/* @end */ - -/* @group Member Details */ - -/* Styles for detailed member documentation */ - -.memtemplate { - font-size: 80%; - color: #4665A2; - font-weight: normal; - margin-left: 9px; -} - -.memnav { - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} - -.mempage { - width: 100%; -} - -.memitem { - padding: 0; - margin-bottom: 10px; - margin-right: 5px; - -webkit-transition: box-shadow 0.5s linear; - -moz-transition: box-shadow 0.5s linear; - -ms-transition: box-shadow 0.5s linear; - -o-transition: box-shadow 0.5s linear; - transition: box-shadow 0.5s linear; - display: table !important; - width: 100%; -} - -.memitem.glow { - box-shadow: 0 0 15px cyan; -} - -.memname { - font-weight: bold; - margin-left: 6px; -} - -.memname td { - vertical-align: bottom; -} - -.memproto, dl.reflist dt { - border-top: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 0px 6px 0px; - color: #253555; - font-weight: bold; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - /* opera specific markup */ - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - border-top-right-radius: 4px; - border-top-left-radius: 4px; - /* firefox specific markup */ - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - -moz-border-radius-topright: 4px; - -moz-border-radius-topleft: 4px; - /* webkit specific markup */ - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - -webkit-border-top-right-radius: 4px; - -webkit-border-top-left-radius: 4px; - -} - -.memdoc, dl.reflist dd { - border-bottom: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 10px 2px 10px; - background-color: #FBFCFD; - border-top-width: 0; - background-image:url('nav_g.png'); - background-repeat:repeat-x; - background-color: #FFFFFF; - /* opera specific markup */ - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - /* firefox specific markup */ - -moz-border-radius-bottomleft: 4px; - -moz-border-radius-bottomright: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - /* webkit specific markup */ - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -dl.reflist dt { - padding: 5px; -} - -dl.reflist dd { - margin: 0px 0px 10px 0px; - padding: 5px; -} - -.paramkey { - text-align: right; -} - -.paramtype { - white-space: nowrap; -} - -.paramname { - color: #602020; - white-space: nowrap; -} -.paramname em { - font-style: normal; -} -.paramname code { - line-height: 14px; -} - -.params, .retval, .exception, .tparams { - margin-left: 0px; - padding-left: 0px; -} - -.params .paramname, .retval .paramname { - font-weight: bold; - vertical-align: top; -} - -.params .paramtype { - font-style: italic; - vertical-align: top; -} - -.params .paramdir { - font-family: "courier new",courier,monospace; - vertical-align: top; -} - -table.mlabels { - border-spacing: 0px; -} - -td.mlabels-left { - width: 100%; - padding: 0px; -} - -td.mlabels-right { - vertical-align: bottom; - padding: 0px; - white-space: nowrap; -} - -span.mlabels { - margin-left: 8px; -} - -span.mlabel { - background-color: #728DC1; - border-top:1px solid #5373B4; - border-left:1px solid #5373B4; - border-right:1px solid #C4CFE5; - border-bottom:1px solid #C4CFE5; - text-shadow: none; - color: white; - margin-right: 4px; - padding: 2px 3px; - border-radius: 3px; - font-size: 7pt; - white-space: nowrap; - vertical-align: middle; -} - - - -/* @end */ - -/* these are for tree view inside a (index) page */ - -div.directory { - margin: 10px 0px; - border-top: 1px solid #9CAFD4; - border-bottom: 1px solid #9CAFD4; - width: 100%; -} - -.directory table { - border-collapse:collapse; -} - -.directory td { - margin: 0px; - padding: 0px; - vertical-align: top; -} - -.directory td.entry { - white-space: nowrap; - padding-right: 6px; - padding-top: 3px; -} - -.directory td.entry a { - outline:none; -} - -.directory td.entry a img { - border: none; -} - -.directory td.desc { - width: 100%; - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - border-left: 1px solid rgba(0,0,0,0.05); -} - -.directory tr.even { - padding-left: 6px; - background-color: #F7F8FB; -} - -.directory img { - vertical-align: -30%; -} - -.directory .levels { - white-space: nowrap; - width: 100%; - text-align: right; - font-size: 9pt; -} - -.directory .levels span { - cursor: pointer; - padding-left: 2px; - padding-right: 2px; - color: #3D578C; -} - -.arrow { - color: #9CAFD4; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: pointer; - font-size: 80%; - display: inline-block; - width: 16px; - height: 22px; -} - -.icon { - font-family: Arial, Helvetica; - font-weight: bold; - font-size: 12px; - height: 14px; - width: 16px; - display: inline-block; - background-color: #728DC1; - color: white; - text-align: center; - border-radius: 4px; - margin-left: 2px; - margin-right: 2px; -} - -.icona { - width: 24px; - height: 22px; - display: inline-block; -} - -.iconfopen { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderopen.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.iconfclosed { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderclosed.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.icondoc { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('doc.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -table.directory { - font: 400 14px Roboto,sans-serif; -} - -/* @end */ - -div.dynheader { - margin-top: 8px; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -address { - font-style: normal; - color: #2A3D61; -} - -table.doxtable caption { - caption-side: top; -} - -table.doxtable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.doxtable td, table.doxtable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.doxtable th { - background-color: #A8A8A8; - color: #000; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -table.fieldtable { - /*width: 100%;*/ - margin-bottom: 10px; - border: 1px solid #A8B8D9; - border-spacing: 0px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); - box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); -} - -.fieldtable td, .fieldtable th { - padding: 3px 7px 2px; -} - -.fieldtable td.fieldtype, .fieldtable td.fieldname { - white-space: nowrap; - border-right: 1px solid #A8B8D9; - border-bottom: 1px solid #A8B8D9; - vertical-align: top; -} - -.fieldtable td.fieldname { - padding-top: 3px; -} - -.fieldtable td.fielddoc { - border-bottom: 1px solid #A8B8D9; - /*width: 100%;*/ -} - -.fieldtable td.fielddoc p:first-child { - margin-top: 0px; -} - -.fieldtable td.fielddoc p:last-child { - margin-bottom: 2px; -} - -.fieldtable tr:last-child td { - border-bottom: none; -} - -.fieldtable th { - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - font-size: 90%; - color: #253555; - padding-bottom: 4px; - padding-top: 5px; - text-align:left; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom: 1px solid #A8B8D9; -} - - -.tabsearch { - top: 0px; - left: 10px; - height: 36px; - background-image: url('tab_b.png'); - z-index: 101; - overflow: hidden; - font-size: 13px; -} - -.navpath ul -{ - font-size: 11px; - background-image:url('tab_b.png'); - background-repeat:repeat-x; - background-position: 0 -5px; - height:30px; - line-height:30px; - color:#8AA0CC; - border:solid 1px #C2CDE4; - overflow:hidden; - margin:0px; - padding:0px; -} - -.navpath li -{ - list-style-type:none; - float:left; - padding-left:10px; - padding-right:15px; - background-image:url('bc_s.png'); - background-repeat:no-repeat; - background-position:right; - color:#364D7C; -} - -.navpath li.navelem a -{ - height:32px; - display:block; - text-decoration: none; - outline: none; - color: #283A5D; - font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - text-decoration: none; -} - -.navpath li.navelem a:hover -{ - color:#6884BD; -} - -.navpath li.footer -{ - list-style-type:none; - float:right; - padding-left:10px; - padding-right:15px; - background-image:none; - background-repeat:no-repeat; - background-position:right; - color:#364D7C; - font-size: 8pt; -} - - -div.summary -{ - float: right; - font-size: 8pt; - padding-right: 5px; - width: 50%; - text-align: right; -} - -div.summary a -{ - white-space: nowrap; -} - -table.classindex -{ - margin: 10px; - white-space: nowrap; - margin-left: 3%; - margin-right: 3%; - width: 94%; - border: 0; - border-spacing: 0; - padding: 0; -} - -div.ingroups -{ - font-size: 8pt; - width: 50%; - text-align: left; -} - -div.ingroups a -{ - white-space: nowrap; -} - -div.header -{ - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - margin: 0px; - border-bottom: 1px solid #C4CFE5; -} - -div.headertitle -{ - padding: 5px 5px 5px 10px; -} - -dl -{ - padding: 0 0 0 10px; -} - -/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ -dl.section -{ - margin-left: 0px; - padding-left: 0px; -} - -dl.note -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #D0C000; -} - -dl.warning, dl.attention -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #FF0000; -} - -dl.pre, dl.post, dl.invariant -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00D000; -} - -dl.deprecated -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #505050; -} - -dl.todo -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00C0E0; -} - -dl.test -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #3030E0; -} - -dl.bug -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #C08050; -} - -dl.section dd { - margin-bottom: 6px; -} - - -#projectlogo -{ - text-align: center; - vertical-align: bottom; - border-collapse: separate; -} - -#projectlogo img -{ - border: 0px none; -} - -#projectalign -{ - vertical-align: middle; -} - -#projectname -{ - font: 250% sans-serif, Tahoma, Ariel; - margin: 0px; - padding: 2px 0px 2px 25px; -} - -#projectbrief -{ - font: 120% Tahoma, Arial,sans-serif; - color: grey; - margin: 0 0 0 26px; - padding: 0; - - height: 0px; -} - -#projectnumber -{ - font: 40% sans-serif, Tahoma, Ariel; - color: #606060; -} - -#titlearea -{ - padding: 0px; - margin: 0px; - width: 100%; - border-bottom: 1px solid #5373B4; -} - -.image -{ - text-align: center; -} - -.dotgraph -{ - text-align: center; -} - -.mscgraph -{ - text-align: center; -} - -.diagraph -{ - text-align: center; -} - -.caption -{ - font-weight: bold; -} - -div.zoom -{ - border: 1px solid #90A5CE; -} - -dl.citelist { - margin-bottom:50px; -} - -dl.citelist dt { - color:#334975; - float:left; - font-weight:bold; - margin-right:10px; - padding:5px; -} - -dl.citelist dd { - margin:2px 0; - padding:5px 0; -} - -div.toc { - padding: 14px 25px; - background-color: #F4F6FA; - border: 1px solid #D8DFEE; - border-radius: 7px 7px 7px 7px; - float: right; - height: auto; - margin: 0 8px 10px 10px; - width: 200px; -} - -div.toc li { - background: url("bdwn.png") no-repeat scroll 0 5px transparent; - font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; - margin-top: 5px; - padding-left: 10px; - padding-top: 2px; -} - -div.toc h3 { - font: bold 12px/1.2 Arial,FreeSans,sans-serif; - color: #4665A2; - border-bottom: 0 none; - margin: 0; -} - -div.toc ul { - list-style: none outside none; - border: medium none; - padding: 0px; -} - -div.toc li.level1 { - margin-left: 0px; -} - -div.toc li.level2 { - margin-left: 15px; -} - -div.toc li.level3 { - margin-left: 30px; -} - -div.toc li.level4 { - margin-left: 45px; -} - -.inherit_header { - font-weight: bold; - color: gray; - cursor: pointer; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.inherit_header td { - padding: 6px 0px 2px 5px; -} - -.inherit { - display: none; -} - -tr.heading h2 { - margin-top: 12px; - margin-bottom: 4px; -} - -/* tooltip related style info */ - -.ttc { - position: absolute; - display: none; -} - -#powerTip { - cursor: default; - white-space: nowrap; - background-color: white; - border: 1px solid gray; - border-radius: 4px 4px 4px 4px; - box-shadow: 1px 1px 7px gray; - display: none; - font-size: smaller; - max-width: 80%; - opacity: 0.9; - padding: 1ex 1em 1em; - position: absolute; - z-index: 2147483647; -} - -#powerTip div.ttdoc { - color: grey; - font-style: italic; -} - -#powerTip div.ttname a { - font-weight: bold; -} - -#powerTip div.ttname { - font-weight: bold; -} - -#powerTip div.ttdeci { - color: #006318; -} - -#powerTip div { - margin: 0px; - padding: 0px; - font: 12px/16px Roboto,sans-serif; -} - -#powerTip:before, #powerTip:after { - content: ""; - position: absolute; - margin: 0px; -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.s:after, #powerTip.s:before, -#powerTip.w:after, #powerTip.w:before, -#powerTip.e:after, #powerTip.e:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.nw:after, #powerTip.nw:before, -#powerTip.sw:after, #powerTip.sw:before { - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; -} - -#powerTip.n:after, #powerTip.s:after, -#powerTip.w:after, #powerTip.e:after, -#powerTip.nw:after, #powerTip.ne:after, -#powerTip.sw:after, #powerTip.se:after { - border-color: rgba(255, 255, 255, 0); -} - -#powerTip.n:before, #powerTip.s:before, -#powerTip.w:before, #powerTip.e:before, -#powerTip.nw:before, #powerTip.ne:before, -#powerTip.sw:before, #powerTip.se:before { - border-color: rgba(128, 128, 128, 0); -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.nw:after, #powerTip.nw:before { - top: 100%; -} - -#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { - border-top-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} -#powerTip.n:before { - border-top-color: #808080; - border-width: 11px; - margin: 0px -11px; -} -#powerTip.n:after, #powerTip.n:before { - left: 50%; -} - -#powerTip.nw:after, #powerTip.nw:before { - right: 14px; -} - -#powerTip.ne:after, #powerTip.ne:before { - left: 14px; -} - -#powerTip.s:after, #powerTip.s:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.sw:after, #powerTip.sw:before { - bottom: 100%; -} - -#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { - border-bottom-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} - -#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { - border-bottom-color: #808080; - border-width: 11px; - margin: 0px -11px; -} - -#powerTip.s:after, #powerTip.s:before { - left: 50%; -} - -#powerTip.sw:after, #powerTip.sw:before { - right: 14px; -} - -#powerTip.se:after, #powerTip.se:before { - left: 14px; -} - -#powerTip.e:after, #powerTip.e:before { - left: 100%; -} -#powerTip.e:after { - border-left-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.e:before { - border-left-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -#powerTip.w:after, #powerTip.w:before { - right: 100%; -} -#powerTip.w:after { - border-right-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.w:before { - border-right-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -@media print -{ - #top { display: none; } - #side-nav { display: none; } - #nav-path { display: none; } - body { overflow:visible; } - h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } - .summary { display: none; } - .memitem { page-break-inside: avoid; } - #doc-content - { - margin-left:0 !important; - height:auto !important; - width:auto !important; - overflow:inherit; - display:inline; - } -} - - -/* ****************************************************/ - -/* - -#navrow1 -{ - display: none; -} - -*/ - -/* cypress logo */ -img[src="logo.png"]{ - height:75px; - /*float: right;*/ -} - -/* \section format */ -h1 -{ - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: bold; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -/* \subsection format */ -h2 -{ - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.0em; - padding-top: 4px; - width: 100%; -} - -/* \ssububsection format */ -h3 -{ - color: #354C7B; - font-size: 100%; - font-weight: bold; - margin-top: 1.0em; - padding-top: 4px; - width: 100%; -} - -/* \snippet_begin */ -pre.snippet_code -{ - font: 100% Consolas, Courier New; - border: 1px solid black; - border-radius: 0.5em; - -webkit-border-radius: 0.5em; - -moz-border-radius: 0.5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - padding: 8px; - margin: 0px 0px 0px -12px; -} - -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTable tr { -} - -th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft, td.markdownTableBodyLeft { - text-align: left -} - -th.markdownTableHeadRight, td.markdownTableBodyRight { - text-align: right -} - -th.markdownTableHeadCenter, td.markdownTableBodyCenter { - text-align: center -} - -/* left-align the screenshots in the user guide generated from MD */ -.image { - text-align: left; -} diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/dynsections.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/dynsections.js deleted file mode 100644 index 3174bd7beb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/dynsections.js +++ /dev/null @@ -1,121 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -function toggleVisibility(linkObj) -{ - var base = $(linkObj).attr('id'); - var summary = $('#'+base+'-summary'); - var content = $('#'+base+'-content'); - var trigger = $('#'+base+'-trigger'); - var src=$(trigger).attr('src'); - if (content.is(':visible')===true) { - content.hide(); - summary.show(); - $(linkObj).addClass('closed').removeClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); - } else { - content.show(); - summary.hide(); - $(linkObj).removeClass('closed').addClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); - } - return false; -} - -function updateStripes() -{ - $('table.directory tr'). - removeClass('even').filter(':visible:even').addClass('even'); -} - -function toggleLevel(level) -{ - $('table.directory tr').each(function() { - var l = this.id.split('_').length-1; - var i = $('#img'+this.id.substring(3)); - var a = $('#arr'+this.id.substring(3)); - if (l - - - - - - - -Serial Flash (serial-flash) - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    Serial Flash (serial-flash)
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    Serial Flash
    -
    -
    -

    General Description

    -

    In addition to the APIs for reading and writting to memory at runtime, this library also provides support for informing programming tools about the external memory so it can be be written at the same time as internal flash.

    -

    This support can be enabled by defining CY_ENABLE_XIP_PROGRAM while building the application. With this define in place, code will be generated in the .cy_sflash_user_data & .cy_toc_part2 sections. These sections must be provided by the linker script for the application. One the application has been built, these locations can be read by programming tools (eg: Cypress Programmer, OpenOCD, pyOCD) to know that there is a memory device attached and how to program it.

    Note
    This support is not compatible with the PSoCâ„¢ 64 series of devices.
    -

    -DMA Resource Usage

    -

    This library uses fixed DMA (Datawire or DW) resources and supports DMA only for the following devices. DMA is not supported for other devices and the functions cy_serial_flash_qspi_read_async() and cy_serial_flash_qspi_abort_read() will return CY_RSLT_SERIAL_FLASH_ERR_UNSUPPORTED error and cy_serial_flash_qspi_set_dma_interrupt_priority() will simply return doing nothing.

      -
    • CY8C6xx4, CY8C6xx5, CY8C6xx8, CY8C6xxA, CYB06xx5, CYB06xxA, CYS06xxA: DW1, Channel 23
    • -
    • CY8C6xx6, CY8C6xx7, CYB06xx7: DW1, Channel 15
    • -
    - - - - - - - - - - - - - - - - - - - - -

    -Macros

    -#define CY_RSLT_SERIAL_FLASH_ERR_UNSUPPORTED    (CY_RSLT_CREATE(CY_RSLT_TYPE_ERROR, CY_RSLT_MODULE_BOARD_LIB_SERIAL_FLASH, 1))
     The function or operation is not supported on the target or the memory.
     
    -#define CY_RSLT_SERIAL_FLASH_ERR_BAD_PARAM    (CY_RSLT_CREATE(CY_RSLT_TYPE_ERROR, CY_RSLT_MODULE_BOARD_LIB_SERIAL_FLASH, 2))
     Parameters passed to a function are invalid.
     
    -#define CY_RSLT_SERIAL_FLASH_ERR_READ_BUSY    (CY_RSLT_CREATE(CY_RSLT_TYPE_ERROR, CY_RSLT_MODULE_BOARD_LIB_SERIAL_FLASH, 3))
     A previously initiated read operation is not yet complete.
     
    -#define CY_RSLT_SERIAL_FLASH_ERR_DMA    (CY_RSLT_CREATE(CY_RSLT_TYPE_ERROR, CY_RSLT_MODULE_BOARD_LIB_SERIAL_FLASH, 4))
     A DMA error occurred during read transfer.
     
    #define CY_RSLT_SERIAL_FLASH_ERR_QSPI_BUSY    (CY_RSLT_CREATE(CY_RSLT_TYPE_ERROR, CY_RSLT_MODULE_BOARD_LIB_SERIAL_FLASH, 5))
     Read abort failed. More...
     
    -#define CY_SERIAL_FLASH_QSPI_THREAD_SAFE
     Enables thread-safety for use with multi-threaded RTOS environment.
     
    - - - - -

    -Typedefs

    typedef void(* cy_serial_flash_qspi_read_complete_callback_t) (cy_rslt_t operation_status, void *callback_arg)
     Callback pointer to use with cy_serial_flash_qspi_read_async(). More...
     
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Functions

    cy_rslt_t cy_serial_flash_qspi_init (const cy_stc_smif_mem_config_t *mem_config, cyhal_gpio_t io0, cyhal_gpio_t io1, cyhal_gpio_t io2, cyhal_gpio_t io3, cyhal_gpio_t io4, cyhal_gpio_t io5, cyhal_gpio_t io6, cyhal_gpio_t io7, cyhal_gpio_t sclk, cyhal_gpio_t ssel, uint32_t hz)
     Initializes the serial flash memory. More...
     
    void cy_serial_flash_qspi_deinit (void)
     De-initializes the serial flash memory. More...
     
    size_t cy_serial_flash_qspi_get_size (void)
     Returns the size of the serial flash memory in bytes. More...
     
    size_t cy_serial_flash_qspi_get_erase_size (uint32_t addr)
     Returns the size of the erase sector to which the given address belongs. More...
     
    size_t cy_serial_flash_qspi_get_prog_size (uint32_t addr)
     Returns the page size for programming of the sector to which the given address belongs. More...
     
    __STATIC_INLINE uint32_t cy_serial_flash_get_sector_start_address (uint32_t addr)
     Utility function to calculate the starting address of an erase sector to which the given address belongs. More...
     
    cy_rslt_t cy_serial_flash_qspi_read (uint32_t addr, size_t length, uint8_t *buf)
     Reads data from the serial flash memory. More...
     
    cy_rslt_t cy_serial_flash_qspi_read_async (uint32_t addr, size_t length, uint8_t *buf, cy_serial_flash_qspi_read_complete_callback_t callback, void *callback_arg)
     Reads data from the serial flash memory. More...
     
    cy_rslt_t cy_serial_flash_qspi_abort_read (void)
     Aborts an ongoing asynchronous read initiated by calling cy_serial_flash_qspi_read_async(). More...
     
    cy_rslt_t cy_serial_flash_qspi_write (uint32_t addr, size_t length, const uint8_t *buf)
     Writes the data to the serial flash memory. More...
     
    cy_rslt_t cy_serial_flash_qspi_erase (uint32_t addr, size_t length)
     Erases the serial flash memory, uses chip erase command when addr = 0 and length = flash_size otherwise uses sector erase command. More...
     
    cy_rslt_t cy_serial_flash_qspi_enable_xip (bool enable)
     Enables Execute-in-Place (memory mapped) mode on the MCU. More...
     
    void cy_serial_flash_qspi_set_interrupt_priority (uint8_t priority)
     Changes QSPI interrupt priority. More...
     
    void cy_serial_flash_qspi_set_dma_interrupt_priority (uint8_t priority)
     Changes the DMA interrupt priority. More...
     
    -

    Macro Definition Documentation

    - -

    ◆ CY_RSLT_SERIAL_FLASH_ERR_QSPI_BUSY

    - -
    -
    - - - - -
    #define CY_RSLT_SERIAL_FLASH_ERR_QSPI_BUSY    (CY_RSLT_CREATE(CY_RSLT_TYPE_ERROR, CY_RSLT_MODULE_BOARD_LIB_SERIAL_FLASH, 5))
    -
    - -

    Read abort failed.

    -

    QSPI block is busy.

    - -
    -
    -

    Typedef Documentation

    - -

    ◆ cy_serial_flash_qspi_read_complete_callback_t

    - -
    -
    - - - - -
    typedef void(* cy_serial_flash_qspi_read_complete_callback_t) (cy_rslt_t operation_status, void *callback_arg)
    -
    - -

    Callback pointer to use with cy_serial_flash_qspi_read_async().

    -
    Parameters
    - - - -
    operation_statusStatus of the read operation
    callback_argPointer to be passed back to the callback function
    -
    -
    - -
    -
    -

    Function Documentation

    - -

    ◆ cy_serial_flash_qspi_init()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_rslt_t cy_serial_flash_qspi_init (const cy_stc_smif_mem_config_t * mem_config,
    cyhal_gpio_t io0,
    cyhal_gpio_t io1,
    cyhal_gpio_t io2,
    cyhal_gpio_t io3,
    cyhal_gpio_t io4,
    cyhal_gpio_t io5,
    cyhal_gpio_t io6,
    cyhal_gpio_t io7,
    cyhal_gpio_t sclk,
    cyhal_gpio_t ssel,
    uint32_t hz 
    )
    -
    - -

    Initializes the serial flash memory.

    -

    This function accepts up to 8 I/Os. Number of I/Os depend on the type of memory interface. Pass NC when an I/O is unused. Single SPI - (io0, io1) or (io2, io3) or (io4, io5) or (io6, io7) Dual SPI - (io0, io1) or (io2, io3) or (io4, io5) or (io6, io7) Quad SPI - (io0, io1, io2, io3) or (io4, io5, io6, io7) Octal SPI - All 8 I/Os are used.

    Parameters
    - - - - - - - - - - - - - -
    mem_configMemory configuration to be used for initializing
    io0Data/IO pin 0 connected to the memory, Pass NC when unused.
    io1Data/IO pin 1 connected to the memory, Pass NC when unused.
    io2Data/IO pin 2 connected to the memory, Pass NC when unused.
    io3Data/IO pin 3 connected to the memory, Pass NC when unused.
    io4Data/IO pin 4 connected to the memory, Pass NC when unused.
    io5Data/IO pin 5 connected to the memory, Pass NC when unused.
    io6Data/IO pin 6 connected to the memory, Pass NC when unused.
    io7Data/IO pin 7 connected to the memory, Pass NC when unused.
    sclkClock pin connected to the memory
    sselSlave select pin connected to the memory
    hzClock frequency to be used with the memory.
    -
    -
    -
    Returns
    CY_RSLT_SUCCESS if the initialization was successful, an error code otherwise.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_deinit()

    - -
    -
    - - - - - - - - -
    void cy_serial_flash_qspi_deinit (void )
    -
    - -

    De-initializes the serial flash memory.

    -

    Before calling this function, ensure that an ongoing asynchronous read operation is either completed or successfully aborted. Async read is started by calling cy_serial_flash_qspi_read_async() and aborted by calling cy_serial_flash_qspi_abort_read().

    - -
    -
    - -

    ◆ cy_serial_flash_qspi_get_size()

    - -
    -
    - - - - - - - - -
    size_t cy_serial_flash_qspi_get_size (void )
    -
    - -

    Returns the size of the serial flash memory in bytes.

    -
    Returns
    Memory size in bytes.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_get_erase_size()

    - -
    -
    - - - - - - - - -
    size_t cy_serial_flash_qspi_get_erase_size (uint32_t addr)
    -
    - -

    Returns the size of the erase sector to which the given address belongs.

    -

    Address is used only for a memory with hybrid sector size.

    Parameters
    - - -
    addrAddress that belongs to the sector for which size is returned.
    -
    -
    -
    Returns
    Erase sector size in bytes.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_get_prog_size()

    - -
    -
    - - - - - - - - -
    size_t cy_serial_flash_qspi_get_prog_size (uint32_t addr)
    -
    - -

    Returns the page size for programming of the sector to which the given address belongs.

    -

    Address is used only for a memory with hybrid sector size.

    Parameters
    - - -
    addrAddress that belongs to the sector for which size is returned.
    -
    -
    -
    Returns
    Page size in bytes.
    - -
    -
    - -

    ◆ cy_serial_flash_get_sector_start_address()

    - -
    -
    - - - - - - - - -
    __STATIC_INLINE uint32_t cy_serial_flash_get_sector_start_address (uint32_t addr)
    -
    - -

    Utility function to calculate the starting address of an erase sector to which the given address belongs.

    -
    Parameters
    - - -
    addrAddress in the sector for which the starting address is returned.
    -
    -
    -
    Returns
    Starting address of the sector
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_read()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_rslt_t cy_serial_flash_qspi_read (uint32_t addr,
    size_t length,
    uint8_t * buf 
    )
    -
    - -

    Reads data from the serial flash memory.

    -

    This is a blocking function. Returns error if (addr + length) exceeds the flash size.

    Parameters
    - - - - -
    addrStarting address to read from
    lengthNumber of data bytes to read
    bufPointer to the buffer to store the data read from the memory
    -
    -
    -
    Returns
    CY_RSLT_SUCCESS if the read was successful, an error code otherwise.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_read_async()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_rslt_t cy_serial_flash_qspi_read_async (uint32_t addr,
    size_t length,
    uint8_t * buf,
    cy_serial_flash_qspi_read_complete_callback_t callback,
    void * callback_arg 
    )
    -
    - -

    Reads data from the serial flash memory.

    -

    This is a non-blocking function. Returns error if (addr + length) exceeds the flash size. Uses fixed DMA (DW) instance and channel for transferring the data from QSPI RX FIFO to the user-provided buffer.

    Parameters
    - - - - - - -
    addrStarting address to read from
    lengthNumber of data bytes to read
    bufPointer to the buffer to store the data read from the memory
    callbackPointer to the callback function to be called after the read operation is complete. Callback is invoked from the DMA ISR.
    callback_argPointer to the argument to be passed to the callback function
    -
    -
    -
    Returns
    CY_RSLT_SUCCESS if the read was successful, an error code otherwise.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_abort_read()

    - -
    -
    - - - - - - - - -
    cy_rslt_t cy_serial_flash_qspi_abort_read (void )
    -
    - -

    Aborts an ongoing asynchronous read initiated by calling cy_serial_flash_qspi_read_async().

    -
    Returns
    CY_RSLT_SUCCESS if the abort was successful, an error code if the QSPI block is still busy after a timeout.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_write()

    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    cy_rslt_t cy_serial_flash_qspi_write (uint32_t addr,
    size_t length,
    const uint8_t * buf 
    )
    -
    - -

    Writes the data to the serial flash memory.

    -

    The program area must have been erased prior to calling this API using cy_serial_flash_qspi_erase() This is a blocking function. Returns error if (addr + length) exceeds the flash size.

    Parameters
    - - - - -
    addrStarting address to write to
    lengthNumber of bytes to write
    bufPointer to the buffer storing the data to be written
    -
    -
    -
    Returns
    CY_RSLT_SUCCESS if the write was successful, an error code otherwise.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_erase()

    - -
    -
    - - - - - - - - - - - - - - - - - - -
    cy_rslt_t cy_serial_flash_qspi_erase (uint32_t addr,
    size_t length 
    )
    -
    - -

    Erases the serial flash memory, uses chip erase command when addr = 0 and length = flash_size otherwise uses sector erase command.

    -

    This is a blocking function. Returns error if addr or (addr + length) is not aligned to the sector size or if (addr + length) exceeds the flash size. For memories with hybrid sectors, returns error if the end address (=addr + length) is not aligned to the size of the sector in which the end address is located. Call cy_serial_flash_qspi_get_size() to get the flash size and call cy_serial_flash_qspi_get_erase_size() to get the size of an erase sector.

    -
    Parameters
    - - - -
    addrStarting address to begin erasing
    lengthNumber of bytes to erase
    -
    -
    -
    Returns
    CY_RSLT_SUCCESS if the erase was successful, an error code otherwise.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_enable_xip()

    - -
    -
    - - - - - - - - -
    cy_rslt_t cy_serial_flash_qspi_enable_xip (bool enable)
    -
    - -

    Enables Execute-in-Place (memory mapped) mode on the MCU.

    -

    This function does not send any command to the serial flash. This may not be supported on all the targets in which case CY_RSLT_SERIAL_FLASH_ERR_UNSUPPORTED is returned.

    Parameters
    - - -
    enabletrue: XIP mode is set, false: normal mode is set
    -
    -
    -
    Returns
    CY_RSLT_SUCCESS if the operation was successful. CY_RSLT_SERIAL_FLASH_ERR_UNSUPPORTED if the target does not support XIP.
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_set_interrupt_priority()

    - -
    -
    - - - - - - - - -
    void cy_serial_flash_qspi_set_interrupt_priority (uint8_t priority)
    -
    - -

    Changes QSPI interrupt priority.

    -
    Parameters
    - - -
    priorityinterrupt priority to be set
    -
    -
    - -
    -
    - -

    ◆ cy_serial_flash_qspi_set_dma_interrupt_priority()

    - -
    -
    - - - - - - - - -
    void cy_serial_flash_qspi_set_dma_interrupt_priority (uint8_t priority)
    -
    - -

    Changes the DMA interrupt priority.

    -
    Parameters
    - - -
    priorityinterrupt priority to be set
    -
    -
    - -
    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/index.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/index.html deleted file mode 100644 index b089e5983a..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/index.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - -Serial Flash (serial-flash) - - - - - - - - - - - - - -
    -
    - - - - - - - -
    -
    Serial Flash (serial-flash)
    -
    -
    - - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    Serial Flash
    -
    -
    -

    -

    -Overview

    -

    Provides functions for interacting with an external flash connected through its Single SPI/Dual SPI/Quad SPI/Octal SPI interface. The read operation can be performed in either blocking or non-blocking manner by calling the corresponding function while the write and erase operations are implemented as blocking functions. This library accepts the configuration generated using the QSPI Configurator tool but supports only one memory slot. Note that PSoCâ„¢ 6 supports up to 4 memory slots on the same QSPI block.

    -

    -Features

    -
      -
    • Supports asynchronous (non-blocking) read operation
    • -
    • Implements thread-safety for use with multi-threaded RTOS environment using the abstraction-rtos library
    • -
    • Accepts the configuration generated by the QSPI Configurator tool
    • -
    • Supports Execute-in-Place (XIP) mode of operation
    • -
    • Provides information about the external memory to the programming tool for it to be able to program the memory, for example, when user wants to place the code into the external memory for XIP operation.
    • -
    • Allows for programming external memory if CY_ENABLE_XIP_PROGRAM is defined when building the application. Note: This is not compatible with the PSoCâ„¢ 64 series of devices.
    • -
    -

    -Quick Start

    -
      -
    1. Add #include "cy_serial_flash_qspi.h"
    2. -
    3. Add DEFINES=CY_SERIAL_FLASH_QSPI_THREAD_SAFE in the Makefile to enable thread-safety when used in a multi-threaded RTOS environment
    4. -
    5. See the PSoCâ„¢ 6 MCU: QSPI Flash Read and Write code example to learn using this library
    6. -
    -

    NOTE: If you delete the contents of the GeneratedSource directory inside the BSP, you must re-generate the memory configuration files cycfg_qspi_memslot.c/.h. To do this from inside the ModusToolboxâ„¢ IDE, open the QSPI Configurator tool from the Quick Panel and press Ctrl+S or click File > Save. If you open the tool outside the IDE, you need to first open the design.cyqspi file in the tool. To do this, click File > Import and then locate the file inside the BSP under COMPONENT_BSP_DESIGN_MODUS directory.

    -

    NOTE: For devices with no internal flash (eg:CAT1B device CYW20829), user needs to disable 'config data in flash' option in QSPI Configurator.

    -

    -Dependencies

    -
      -
    • abstraction-rtos library if DEFINES=CY_SERIAL_FLASH_QSPI_THREAD_SAFE is added in the Makefile
    • -
    -

    -More information

    - -
    -

    © Cypress Semiconductor Corporation (an Infineon company) or an affiliate of Cypress Semiconductor Corporation, 2019-2021.

    -
    -
    -
    - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/jquery.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/jquery.js deleted file mode 100644 index c9ed3d99cb..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/jquery.js +++ /dev/null @@ -1,35 +0,0 @@ -/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
    ",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
    "),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
    ").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
    "),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
    "),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element -},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** - * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler - * Licensed under MIT - * @author Ariel Flesler - * @version 2.1.2 - */ -;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 - * http://www.smartmenus.org/ - * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
    ').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/logo.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/logo.png deleted file mode 100644 index be03a1ff92..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/logo.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/menu.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/menu.js deleted file mode 100644 index 54e81cf15c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/menu.js +++ /dev/null @@ -1,127 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { - function makeTree(data,relPath) { - var result=''; - if ('children' in data) { - result+=''; - } - return result; - } - var searchBox; - if (searchEnabled) { - if (serverSide) { - searchBox='
    '+ - '
    '+ - '
    '+ - ''+ - '
    '+ - '
    '+ - '
    '+ - '
    '; - } else { - searchBox='
    '+ - ''+ - ''+ - ''+ - ''+ - ''+ - '' - '' - '
    '; - } - } - - $('#main-nav').before('
    '+ - ''+ - ''+ - '
    '); - $('#main-nav').append(makeTree(menudata,relPath)); - $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); - if (searchBox) { - $('#main-menu').append('
  • '); - } - var $mainMenuState = $('#main-menu-state'); - var prevWidth = 0; - if ($mainMenuState.length) { - function initResizableIfExists() { - if (typeof initResizable==='function') initResizable(); - } - // animate mobile menu - $mainMenuState.change(function(e) { - var $menu = $('#main-menu'); - var options = { duration: 250, step: initResizableIfExists }; - if (this.checked) { - options['complete'] = function() { $menu.css('display', 'block') }; - $menu.hide().slideDown(options); - } else { - options['complete'] = function() { $menu.css('display', 'none') }; - $menu.show().slideUp(options); - } - }); - // set default menu visibility - function resetState() { - var $menu = $('#main-menu'); - var $mainMenuState = $('#main-menu-state'); - var newWidth = $(window).outerWidth(); - if (newWidth!=prevWidth) { - if ($(window).outerWidth()<768) { - $mainMenuState.prop('checked',false); $menu.hide(); - $('#searchBoxPos1').html(searchBox); - $('#searchBoxPos2').hide(); - } else { - $menu.show(); - $('#searchBoxPos1').empty(); - $('#searchBoxPos2').html(searchBox); - $('#searchBoxPos2').show(); - } - prevWidth = newWidth; - } - } - $(window).ready(function() { resetState(); initResizableIfExists(); }); - $(window).resize(resetState); - } - $('#main-menu').smartmenus(); -} -/* @license-end */ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/menudata.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/menudata.js deleted file mode 100644 index 52ec81af1f..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/menudata.js +++ /dev/null @@ -1,27 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file -*/ -var menudata={children:[ -{text:"Home",url:"index.html"}, -{text:"API Reference",url:"group__group__board__libs.html"}]} diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_f.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_f.png deleted file mode 100644 index 72a58a529e..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_f.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_g.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_g.png deleted file mode 100644 index 2093a237a9..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_g.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_h.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_h.png deleted file mode 100644 index 33389b101d..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/nav_h.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/navtree.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/navtree.css deleted file mode 100644 index d8a311a2ea..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/navtree.css +++ /dev/null @@ -1,147 +0,0 @@ -#nav-tree .children_ul { - margin:0; - padding:4px; -} - -#nav-tree ul { - list-style:none outside none; - margin:0px; - padding:0px; -} - -#nav-tree li { - white-space:nowrap; - margin:0px; - padding:0px; -} - -#nav-tree .plus { - margin:0px; -} - -#nav-tree .selected { - background-image: url('tab_a.png'); - background-repeat:repeat-x; - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); -} - -#nav-tree img { - margin:0px; - padding:0px; - border:0px; - vertical-align: middle; -} - -#nav-tree a { - text-decoration:none; - padding:0px; - margin:0px; - outline:none; -} - -#nav-tree .label { - margin:0px; - padding:0px; - font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; -} - -#nav-tree .label a { - padding:2px; -} - -#nav-tree .selected a { - text-decoration:none; - color:#fff; -} - -#nav-tree .children_ul { - margin:0px; - padding:0px; -} - -#nav-tree .item { - margin:0px; - padding:0px; -} - -#nav-tree { - padding: 0px 0px; - background-color: #FAFAFF; - font-size:14px; - overflow:auto; -} - -#doc-content { - overflow:auto; - display:block; - padding:0px; - margin:0px; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#side-nav { - padding:0 6px 0 0; - margin: 0px; - display:block; - position: absolute; - left: 0px; - width: 250px; - overflow : hidden; -} - -.ui-resizable .ui-resizable-handle { - display:block; -} - -.ui-resizable-e { - background-image:url("splitbar.png"); - background-size:100%; - background-repeat:repeat-y; - background-attachment: scroll; - cursor:ew-resize; - height:100%; - right:0; - top:0; - width:6px; -} - -.ui-resizable-handle { - display:none; - font-size:0.1px; - position:absolute; - z-index:1; -} - -#nav-tree-contents { - margin: 6px 0px 0px 0px; -} - -#nav-tree { - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - -webkit-overflow-scrolling : touch; /* iOS 5+ */ -} - -#nav-sync { - position:absolute; - top:5px; - right:24px; - z-index:0; -} - -#nav-sync img { - opacity:0.3; -} - -#nav-sync img:hover { - opacity:0.9; -} - -@media print -{ - #nav-tree { display: none; } - div.ui-resizable-handle { display: none; position: relative; } -} - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/navtree.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/navtree.js deleted file mode 100644 index 27983687a9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/navtree.js +++ /dev/null @@ -1,549 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -var navTreeSubIndices = new Array(); -var arrowDown = '▼'; -var arrowRight = '►'; - -function getData(varName) -{ - var i = varName.lastIndexOf('/'); - var n = i>=0 ? varName.substring(i+1) : varName; - return eval(n.replace(/\-/g,'_')); -} - -function stripPath(uri) -{ - return uri.substring(uri.lastIndexOf('/')+1); -} - -function stripPath2(uri) -{ - var i = uri.lastIndexOf('/'); - var s = uri.substring(i+1); - var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); - return m ? uri.substring(i-6) : s; -} - -function hashValue() -{ - return $(location).attr('hash').substring(1).replace(/[^\w\-]/g,''); -} - -function hashUrl() -{ - return '#'+hashValue(); -} - -function pathName() -{ - return $(location).attr('pathname').replace(/[^-A-Za-z0-9+&@#/%?=~_|!:,.;\(\)]/g, ''); -} - -function localStorageSupported() -{ - try { - return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; - } - catch(e) { - return false; - } -} - -function storeLink(link) -{ - if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { - window.localStorage.setItem('navpath',link); - } -} - -function deleteLink() -{ - if (localStorageSupported()) { - window.localStorage.setItem('navpath',''); - } -} - -function cachedLink() -{ - if (localStorageSupported()) { - return window.localStorage.getItem('navpath'); - } else { - return ''; - } -} - -function getScript(scriptName,func,show) -{ - var head = document.getElementsByTagName("head")[0]; - var script = document.createElement('script'); - script.id = scriptName; - script.type = 'text/javascript'; - script.onload = func; - script.src = scriptName+'.js'; - head.appendChild(script); -} - -function createIndent(o,domNode,node,level) -{ - var level=-1; - var n = node; - while (n.parentNode) { level++; n=n.parentNode; } - if (node.childrenData) { - var imgNode = document.createElement("span"); - imgNode.className = 'arrow'; - imgNode.style.paddingLeft=(16*level).toString()+'px'; - imgNode.innerHTML=arrowRight; - node.plus_img = imgNode; - node.expandToggle = document.createElement("a"); - node.expandToggle.href = "javascript:void(0)"; - node.expandToggle.onclick = function() { - if (node.expanded) { - $(node.getChildrenUL()).slideUp("fast"); - node.plus_img.innerHTML=arrowRight; - node.expanded = false; - } else { - expandNode(o, node, false, false); - } - } - node.expandToggle.appendChild(imgNode); - domNode.appendChild(node.expandToggle); - } else { - var span = document.createElement("span"); - span.className = 'arrow'; - span.style.width = 16*(level+1)+'px'; - span.innerHTML = ' '; - domNode.appendChild(span); - } -} - -var animationInProgress = false; - -function gotoAnchor(anchor,aname,updateLocation) -{ - var pos, docContent = $('#doc-content'); - var ancParent = $(anchor.parent()); - if (ancParent.hasClass('memItemLeft') || - ancParent.hasClass('memtitle') || - ancParent.hasClass('fieldname') || - ancParent.hasClass('fieldtype') || - ancParent.is(':header')) - { - pos = ancParent.position().top; - } else if (anchor.position()) { - pos = anchor.position().top; - } - if (pos) { - var dist = Math.abs(Math.min( - pos-docContent.offset().top, - docContent[0].scrollHeight- - docContent.height()-docContent.scrollTop())); - animationInProgress=true; - docContent.animate({ - scrollTop: pos + docContent.scrollTop() - docContent.offset().top - },Math.max(50,Math.min(500,dist)),function(){ - if (updateLocation) window.location.href=aname; - animationInProgress=false; - }); - } -} - -function newNode(o, po, text, link, childrenData, lastNode) -{ - var node = new Object(); - node.children = Array(); - node.childrenData = childrenData; - node.depth = po.depth + 1; - node.relpath = po.relpath; - node.isLast = lastNode; - - node.li = document.createElement("li"); - po.getChildrenUL().appendChild(node.li); - node.parentNode = po; - - node.itemDiv = document.createElement("div"); - node.itemDiv.className = "item"; - - node.labelSpan = document.createElement("span"); - node.labelSpan.className = "label"; - - createIndent(o,node.itemDiv,node,0); - node.itemDiv.appendChild(node.labelSpan); - node.li.appendChild(node.itemDiv); - - var a = document.createElement("a"); - node.labelSpan.appendChild(a); - node.label = document.createTextNode(text); - node.expanded = false; - a.appendChild(node.label); - if (link) { - var url; - if (link.substring(0,1)=='^') { - url = link.substring(1); - link = url; - } else { - url = node.relpath+link; - } - a.className = stripPath(link.replace('#',':')); - if (link.indexOf('#')!=-1) { - var aname = '#'+link.split('#')[1]; - var srcPage = stripPath(pathName()); - var targetPage = stripPath(link.split('#')[0]); - a.href = srcPage!=targetPage ? url : "javascript:void(0)"; - a.onclick = function(){ - storeLink(link); - if (!$(a).parent().parent().hasClass('selected')) - { - $('.item').removeClass('selected'); - $('.item').removeAttr('id'); - $(a).parent().parent().addClass('selected'); - $(a).parent().parent().attr('id','selected'); - } - var anchor = $(aname); - gotoAnchor(anchor,aname,true); - }; - } else { - a.href = url; - a.onclick = function() { storeLink(link); } - } - } else { - if (childrenData != null) - { - a.className = "nolink"; - a.href = "javascript:void(0)"; - a.onclick = node.expandToggle.onclick; - } - } - - node.childrenUL = null; - node.getChildrenUL = function() { - if (!node.childrenUL) { - node.childrenUL = document.createElement("ul"); - node.childrenUL.className = "children_ul"; - node.childrenUL.style.display = "none"; - node.li.appendChild(node.childrenUL); - } - return node.childrenUL; - }; - - return node; -} - -function showRoot() -{ - var headerHeight = $("#top").height(); - var footerHeight = $("#nav-path").height(); - var windowHeight = $(window).height() - headerHeight - footerHeight; - (function (){ // retry until we can scroll to the selected item - try { - var navtree=$('#nav-tree'); - navtree.scrollTo('#selected',100,{offset:-windowHeight/2}); - } catch (err) { - setTimeout(arguments.callee, 0); - } - })(); -} - -function expandNode(o, node, imm, showRoot) -{ - if (node.childrenData && !node.expanded) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - expandNode(o, node, imm, showRoot); - }, showRoot); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } - $(node.getChildrenUL()).slideDown("fast"); - node.plus_img.innerHTML = arrowDown; - node.expanded = true; - } - } -} - -function glowEffect(n,duration) -{ - n.addClass('glow').delay(duration).queue(function(next){ - $(this).removeClass('glow');next(); - }); -} - -function highlightAnchor() -{ - var aname = hashUrl(); - var anchor = $(aname); - if (anchor.parent().attr('class')=='memItemLeft'){ - var rows = $('.memberdecls tr[class$="'+hashValue()+'"]'); - glowEffect(rows.children(),300); // member without details - } else if (anchor.parent().attr('class')=='fieldname'){ - glowEffect(anchor.parent().parent(),1000); // enum value - } else if (anchor.parent().attr('class')=='fieldtype'){ - glowEffect(anchor.parent().parent(),1000); // struct field - } else if (anchor.parent().is(":header")) { - glowEffect(anchor.parent(),1000); // section header - } else { - glowEffect(anchor.next(),1000); // normal member - } -} - -function selectAndHighlight(hash,n) -{ - var a; - if (hash) { - var link=stripPath(pathName())+':'+hash.substring(1); - a=$('.item a[class$="'+link+'"]'); - } - if (a && a.length) { - a.parent().parent().addClass('selected'); - a.parent().parent().attr('id','selected'); - highlightAnchor(); - } else if (n) { - $(n.itemDiv).addClass('selected'); - $(n.itemDiv).attr('id','selected'); - } - var topOffset=5; - if (typeof page_layout!=='undefined' && page_layout==1) { - topOffset+=$('#top').outerHeight(); - } - if ($('#nav-tree-contents .item:first').hasClass('selected')) { - topOffset+=25; - } - $('#nav-sync').css('top',topOffset+'px'); - showRoot(); -} - -function showNode(o, node, index, hash) -{ - if (node && node.childrenData) { - if (typeof(node.childrenData)==='string') { - var varName = node.childrenData; - getScript(node.relpath+varName,function(){ - node.childrenData = getData(varName); - showNode(o,node,index,hash); - },true); - } else { - if (!node.childrenVisited) { - getNode(o, node); - } - $(node.getChildrenUL()).css({'display':'block'}); - node.plus_img.innerHTML = arrowDown; - node.expanded = true; - var n = node.children[o.breadcrumbs[index]]; - if (index+11) hash = '#'+parts[1].replace(/[^\w\-]/g,''); - else hash=''; - } - if (hash.match(/^#l\d+$/)) { - var anchor=$('a[name='+hash.substring(1)+']'); - glowEffect(anchor.parent(),1000); // line number - hash=''; // strip line number anchors - } - var url=root+hash; - var i=-1; - while (NAVTREEINDEX[i+1]<=url) i++; - if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath) - } else { - getScript(relpath+'navtreeindex'+i,function(){ - navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); - if (navTreeSubIndices[i]) { - gotoNode(o,i,root,hash,relpath); - } - },true); - } -} - -function showSyncOff(n,relpath) -{ - n.html(''); -} - -function showSyncOn(n,relpath) -{ - n.html(''); -} - -function toggleSyncButton(relpath) -{ - var navSync = $('#nav-sync'); - if (navSync.hasClass('sync')) { - navSync.removeClass('sync'); - showSyncOff(navSync,relpath); - storeLink(stripPath2(pathName())+hashUrl()); - } else { - navSync.addClass('sync'); - showSyncOn(navSync,relpath); - deleteLink(); - } -} - -var loadTriggered = false; -var readyTriggered = false; -var loadObject,loadToRoot,loadUrl,loadRelPath; - -$(window).on('load',function(){ - if (readyTriggered) { // ready first - navTo(loadObject,loadToRoot,loadUrl,loadRelPath); - showRoot(); - } - loadTriggered=true; -}); - -function initNavTree(toroot,relpath) -{ - var o = new Object(); - o.toroot = toroot; - o.node = new Object(); - o.node.li = document.getElementById("nav-tree-contents"); - o.node.childrenData = NAVTREE; - o.node.children = new Array(); - o.node.childrenUL = document.createElement("ul"); - o.node.getChildrenUL = function() { return o.node.childrenUL; }; - o.node.li.appendChild(o.node.childrenUL); - o.node.depth = 0; - o.node.relpath = relpath; - o.node.expanded = false; - o.node.isLast = true; - o.node.plus_img = document.createElement("span"); - o.node.plus_img.className = 'arrow'; - o.node.plus_img.innerHTML = arrowRight; - - if (localStorageSupported()) { - var navSync = $('#nav-sync'); - if (cachedLink()) { - showSyncOff(navSync,relpath); - navSync.removeClass('sync'); - } else { - showSyncOn(navSync,relpath); - } - navSync.click(function(){ toggleSyncButton(relpath); }); - } - - if (loadTriggered) { // load before ready - navTo(o,toroot,hashUrl(),relpath); - showRoot(); - } else { // ready before load - loadObject = o; - loadToRoot = toroot; - loadUrl = hashUrl(); - loadRelPath = relpath; - readyTriggered=true; - } - - $(window).bind('hashchange', function(){ - if (window.location.hash && window.location.hash.length>1){ - var a; - if ($(location).attr('hash')){ - var clslink=stripPath(pathName())+':'+hashValue(); - a=$('.item a[class$="'+clslink.replace(/=desktop_vp) { - if (!collapsed) { - collapseExpand(); - } - } else if (width>desktop_vp && collapsedWidth0) { - restoreWidth(0); - collapsed=true; - } - else { - var width = readCookie('width'); - if (width>200 && width<$(window).width()) { restoreWidth(width); } else { restoreWidth(200); } - collapsed=false; - } - } - - header = $("#top"); - sidenav = $("#side-nav"); - content = $("#doc-content"); - navtree = $("#nav-tree"); - footer = $("#nav-path"); - $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); - $(sidenav).resizable({ minWidth: 0 }); - $(window).resize(function() { resizeHeight(); }); - var device = navigator.userAgent.toLowerCase(); - var touch_device = device.match(/(iphone|ipod|ipad|android)/); - if (touch_device) { /* wider split bar for touch only devices */ - $(sidenav).css({ paddingRight:'20px' }); - $('.ui-resizable-e').css({ width:'20px' }); - $('#nav-sync').css({ right:'34px' }); - barWidth=20; - } - var width = readCookie('width'); - if (width) { restoreWidth(width); } else { resizeWidth(); } - resizeHeight(); - var url = location.href; - var i=url.indexOf("#"); - if (i>=0) window.location.hash=url.substr(i); - var _preventDefault = function(evt) { evt.preventDefault(); }; - $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); - $(".ui-resizable-handle").dblclick(collapseExpand); - $(window).on('load',resizeHeight); -} -/* @license-end */ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_0.html deleted file mode 100644 index 65f85b5b74..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_0.js deleted file mode 100644 index 5e44e1a517..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_0.js +++ /dev/null @@ -1,24 +0,0 @@ -var searchData= -[ - ['cy_5frslt_5fserial_5fflash_5ferr_5fbad_5fparam_0',['CY_RSLT_SERIAL_FLASH_ERR_BAD_PARAM',['../group__group__board__libs.html#ga21e3c8199504eb76df66c793488e01e8',1,'cy_serial_flash_qspi.h']]], - ['cy_5frslt_5fserial_5fflash_5ferr_5fdma_1',['CY_RSLT_SERIAL_FLASH_ERR_DMA',['../group__group__board__libs.html#ga63374cfb508c830f53f25682c183b610',1,'cy_serial_flash_qspi.h']]], - ['cy_5frslt_5fserial_5fflash_5ferr_5fqspi_5fbusy_2',['CY_RSLT_SERIAL_FLASH_ERR_QSPI_BUSY',['../group__group__board__libs.html#ga959a08da14d528096cf8ebbfb48c5da4',1,'cy_serial_flash_qspi.h']]], - ['cy_5frslt_5fserial_5fflash_5ferr_5fread_5fbusy_3',['CY_RSLT_SERIAL_FLASH_ERR_READ_BUSY',['../group__group__board__libs.html#ga41875c99fa454d69ec187e772234ce44',1,'cy_serial_flash_qspi.h']]], - ['cy_5frslt_5fserial_5fflash_5ferr_5funsupported_4',['CY_RSLT_SERIAL_FLASH_ERR_UNSUPPORTED',['../group__group__board__libs.html#gabe7c8c3af5cdc0f9640b70402f543dd7',1,'cy_serial_flash_qspi.h']]], - ['cy_5fserial_5fflash_5fget_5fsector_5fstart_5faddress_5',['cy_serial_flash_get_sector_start_address',['../group__group__board__libs.html#ga1aec27b28a9ce3205ce16e12c4d576b0',1,'cy_serial_flash_qspi.h']]], - ['cy_5fserial_5fflash_5fqspi_5fabort_5fread_6',['cy_serial_flash_qspi_abort_read',['../group__group__board__libs.html#ga49c497643b74f2e9071e27266836f45d',1,'cy_serial_flash_qspi_abort_read(void): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga49c497643b74f2e9071e27266836f45d',1,'cy_serial_flash_qspi_abort_read(void): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fdeinit_7',['cy_serial_flash_qspi_deinit',['../group__group__board__libs.html#gac4914a8bff25287d43c661d6cd68fbfd',1,'cy_serial_flash_qspi_deinit(void): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gac4914a8bff25287d43c661d6cd68fbfd',1,'cy_serial_flash_qspi_deinit(void): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fenable_5fxip_8',['cy_serial_flash_qspi_enable_xip',['../group__group__board__libs.html#ga56772d2543b7b7f2c17ed9ddb9db941e',1,'cy_serial_flash_qspi_enable_xip(bool enable): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga56772d2543b7b7f2c17ed9ddb9db941e',1,'cy_serial_flash_qspi_enable_xip(bool enable): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5ferase_9',['cy_serial_flash_qspi_erase',['../group__group__board__libs.html#ga41c8380588bc01b6a8320b23bc172649',1,'cy_serial_flash_qspi_erase(uint32_t addr, size_t length): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga41c8380588bc01b6a8320b23bc172649',1,'cy_serial_flash_qspi_erase(uint32_t addr, size_t length): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fget_5ferase_5fsize_10',['cy_serial_flash_qspi_get_erase_size',['../group__group__board__libs.html#gacaad29bc13d3a4cd243830980b21c274',1,'cy_serial_flash_qspi_get_erase_size(uint32_t addr): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gacaad29bc13d3a4cd243830980b21c274',1,'cy_serial_flash_qspi_get_erase_size(uint32_t addr): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fget_5fprog_5fsize_11',['cy_serial_flash_qspi_get_prog_size',['../group__group__board__libs.html#ga3b4219e6b1182c0c75704581b6cacc37',1,'cy_serial_flash_qspi_get_prog_size(uint32_t addr): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga3b4219e6b1182c0c75704581b6cacc37',1,'cy_serial_flash_qspi_get_prog_size(uint32_t addr): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fget_5fsize_12',['cy_serial_flash_qspi_get_size',['../group__group__board__libs.html#ga7b9bff94b0c4ba30b11de9f64a0e4980',1,'cy_serial_flash_qspi_get_size(void): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga7b9bff94b0c4ba30b11de9f64a0e4980',1,'cy_serial_flash_qspi_get_size(void): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5finit_13',['cy_serial_flash_qspi_init',['../group__group__board__libs.html#gaa9c587684b8b629a0fde56e786400d82',1,'cy_serial_flash_qspi_init(const cy_stc_smif_mem_config_t *mem_config, cyhal_gpio_t io0, cyhal_gpio_t io1, cyhal_gpio_t io2, cyhal_gpio_t io3, cyhal_gpio_t io4, cyhal_gpio_t io5, cyhal_gpio_t io6, cyhal_gpio_t io7, cyhal_gpio_t sclk, cyhal_gpio_t ssel, uint32_t hz): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gaa9c587684b8b629a0fde56e786400d82',1,'cy_serial_flash_qspi_init(const cy_stc_smif_mem_config_t *mem_config, cyhal_gpio_t io0, cyhal_gpio_t io1, cyhal_gpio_t io2, cyhal_gpio_t io3, cyhal_gpio_t io4, cyhal_gpio_t io5, cyhal_gpio_t io6, cyhal_gpio_t io7, cyhal_gpio_t sclk, cyhal_gpio_t ssel, uint32_t hz): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fread_14',['cy_serial_flash_qspi_read',['../group__group__board__libs.html#ga8b700333be27d3f22dbf2b7a273e7f1e',1,'cy_serial_flash_qspi_read(uint32_t addr, size_t length, uint8_t *buf): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga8b700333be27d3f22dbf2b7a273e7f1e',1,'cy_serial_flash_qspi_read(uint32_t addr, size_t length, uint8_t *buf): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fread_5fasync_15',['cy_serial_flash_qspi_read_async',['../group__group__board__libs.html#ga869d6c8e2b93215608161fb889675b82',1,'cy_serial_flash_qspi_read_async(uint32_t addr, size_t length, uint8_t *buf, cy_serial_flash_qspi_read_complete_callback_t callback, void *callback_arg): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga869d6c8e2b93215608161fb889675b82',1,'cy_serial_flash_qspi_read_async(uint32_t addr, size_t length, uint8_t *buf, cy_serial_flash_qspi_read_complete_callback_t callback, void *callback_arg): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fread_5fcomplete_5fcallback_5ft_16',['cy_serial_flash_qspi_read_complete_callback_t',['../group__group__board__libs.html#gaa528d15ff15325aaec05e5a548856a19',1,'cy_serial_flash_qspi.h']]], - ['cy_5fserial_5fflash_5fqspi_5fset_5fdma_5finterrupt_5fpriority_17',['cy_serial_flash_qspi_set_dma_interrupt_priority',['../group__group__board__libs.html#ga181056affe774bccde023137e1e01f3a',1,'cy_serial_flash_qspi_set_dma_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga181056affe774bccde023137e1e01f3a',1,'cy_serial_flash_qspi_set_dma_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fset_5finterrupt_5fpriority_18',['cy_serial_flash_qspi_set_interrupt_priority',['../group__group__board__libs.html#ga818e617f0abbff49f43ee1254d7bc35c',1,'cy_serial_flash_qspi_set_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga818e617f0abbff49f43ee1254d7bc35c',1,'cy_serial_flash_qspi_set_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fthread_5fsafe_19',['CY_SERIAL_FLASH_QSPI_THREAD_SAFE',['../group__group__board__libs.html#ga93bd4d9c9082ff732c56c1a6657abc32',1,'cy_serial_flash_qspi.h']]], - ['cy_5fserial_5fflash_5fqspi_5fwrite_20',['cy_serial_flash_qspi_write',['../group__group__board__libs.html#gab7e5444e256507f0bc5d112d6741621a',1,'cy_serial_flash_qspi_write(uint32_t addr, size_t length, const uint8_t *buf): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gab7e5444e256507f0bc5d112d6741621a',1,'cy_serial_flash_qspi_write(uint32_t addr, size_t length, const uint8_t *buf): cy_serial_flash_qspi.c']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_1.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_1.html deleted file mode 100644 index af53dabdc3..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_1.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_1.js deleted file mode 100644 index 79f826ae9c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/all_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['serial_20flash_0',['Serial Flash',['../group__group__board__libs.html',1,'(Global Namespace)'],['../index.html',1,'(Global Namespace)']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/close.svg b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/close.svg deleted file mode 100644 index a933eea1a2..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/close.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/functions_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/functions_0.html deleted file mode 100644 index ce4509023d..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/functions_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/functions_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/functions_0.js deleted file mode 100644 index 22799bc901..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/functions_0.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['cy_5fserial_5fflash_5fget_5fsector_5fstart_5faddress_0',['cy_serial_flash_get_sector_start_address',['../group__group__board__libs.html#ga1aec27b28a9ce3205ce16e12c4d576b0',1,'cy_serial_flash_qspi.h']]], - ['cy_5fserial_5fflash_5fqspi_5fabort_5fread_1',['cy_serial_flash_qspi_abort_read',['../group__group__board__libs.html#ga49c497643b74f2e9071e27266836f45d',1,'cy_serial_flash_qspi_abort_read(void): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga49c497643b74f2e9071e27266836f45d',1,'cy_serial_flash_qspi_abort_read(void): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fdeinit_2',['cy_serial_flash_qspi_deinit',['../group__group__board__libs.html#gac4914a8bff25287d43c661d6cd68fbfd',1,'cy_serial_flash_qspi_deinit(void): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gac4914a8bff25287d43c661d6cd68fbfd',1,'cy_serial_flash_qspi_deinit(void): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fenable_5fxip_3',['cy_serial_flash_qspi_enable_xip',['../group__group__board__libs.html#ga56772d2543b7b7f2c17ed9ddb9db941e',1,'cy_serial_flash_qspi_enable_xip(bool enable): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga56772d2543b7b7f2c17ed9ddb9db941e',1,'cy_serial_flash_qspi_enable_xip(bool enable): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5ferase_4',['cy_serial_flash_qspi_erase',['../group__group__board__libs.html#ga41c8380588bc01b6a8320b23bc172649',1,'cy_serial_flash_qspi_erase(uint32_t addr, size_t length): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga41c8380588bc01b6a8320b23bc172649',1,'cy_serial_flash_qspi_erase(uint32_t addr, size_t length): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fget_5ferase_5fsize_5',['cy_serial_flash_qspi_get_erase_size',['../group__group__board__libs.html#gacaad29bc13d3a4cd243830980b21c274',1,'cy_serial_flash_qspi_get_erase_size(uint32_t addr): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gacaad29bc13d3a4cd243830980b21c274',1,'cy_serial_flash_qspi_get_erase_size(uint32_t addr): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fget_5fprog_5fsize_6',['cy_serial_flash_qspi_get_prog_size',['../group__group__board__libs.html#ga3b4219e6b1182c0c75704581b6cacc37',1,'cy_serial_flash_qspi_get_prog_size(uint32_t addr): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga3b4219e6b1182c0c75704581b6cacc37',1,'cy_serial_flash_qspi_get_prog_size(uint32_t addr): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fget_5fsize_7',['cy_serial_flash_qspi_get_size',['../group__group__board__libs.html#ga7b9bff94b0c4ba30b11de9f64a0e4980',1,'cy_serial_flash_qspi_get_size(void): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga7b9bff94b0c4ba30b11de9f64a0e4980',1,'cy_serial_flash_qspi_get_size(void): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5finit_8',['cy_serial_flash_qspi_init',['../group__group__board__libs.html#gaa9c587684b8b629a0fde56e786400d82',1,'cy_serial_flash_qspi_init(const cy_stc_smif_mem_config_t *mem_config, cyhal_gpio_t io0, cyhal_gpio_t io1, cyhal_gpio_t io2, cyhal_gpio_t io3, cyhal_gpio_t io4, cyhal_gpio_t io5, cyhal_gpio_t io6, cyhal_gpio_t io7, cyhal_gpio_t sclk, cyhal_gpio_t ssel, uint32_t hz): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gaa9c587684b8b629a0fde56e786400d82',1,'cy_serial_flash_qspi_init(const cy_stc_smif_mem_config_t *mem_config, cyhal_gpio_t io0, cyhal_gpio_t io1, cyhal_gpio_t io2, cyhal_gpio_t io3, cyhal_gpio_t io4, cyhal_gpio_t io5, cyhal_gpio_t io6, cyhal_gpio_t io7, cyhal_gpio_t sclk, cyhal_gpio_t ssel, uint32_t hz): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fread_9',['cy_serial_flash_qspi_read',['../group__group__board__libs.html#ga8b700333be27d3f22dbf2b7a273e7f1e',1,'cy_serial_flash_qspi_read(uint32_t addr, size_t length, uint8_t *buf): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga8b700333be27d3f22dbf2b7a273e7f1e',1,'cy_serial_flash_qspi_read(uint32_t addr, size_t length, uint8_t *buf): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fread_5fasync_10',['cy_serial_flash_qspi_read_async',['../group__group__board__libs.html#ga869d6c8e2b93215608161fb889675b82',1,'cy_serial_flash_qspi_read_async(uint32_t addr, size_t length, uint8_t *buf, cy_serial_flash_qspi_read_complete_callback_t callback, void *callback_arg): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga869d6c8e2b93215608161fb889675b82',1,'cy_serial_flash_qspi_read_async(uint32_t addr, size_t length, uint8_t *buf, cy_serial_flash_qspi_read_complete_callback_t callback, void *callback_arg): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fset_5fdma_5finterrupt_5fpriority_11',['cy_serial_flash_qspi_set_dma_interrupt_priority',['../group__group__board__libs.html#ga181056affe774bccde023137e1e01f3a',1,'cy_serial_flash_qspi_set_dma_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga181056affe774bccde023137e1e01f3a',1,'cy_serial_flash_qspi_set_dma_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fset_5finterrupt_5fpriority_12',['cy_serial_flash_qspi_set_interrupt_priority',['../group__group__board__libs.html#ga818e617f0abbff49f43ee1254d7bc35c',1,'cy_serial_flash_qspi_set_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#ga818e617f0abbff49f43ee1254d7bc35c',1,'cy_serial_flash_qspi_set_interrupt_priority(uint8_t priority): cy_serial_flash_qspi.c']]], - ['cy_5fserial_5fflash_5fqspi_5fwrite_13',['cy_serial_flash_qspi_write',['../group__group__board__libs.html#gab7e5444e256507f0bc5d112d6741621a',1,'cy_serial_flash_qspi_write(uint32_t addr, size_t length, const uint8_t *buf): cy_serial_flash_qspi.c'],['../group__group__board__libs.html#gab7e5444e256507f0bc5d112d6741621a',1,'cy_serial_flash_qspi_write(uint32_t addr, size_t length, const uint8_t *buf): cy_serial_flash_qspi.c']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/groups_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/groups_0.html deleted file mode 100644 index b58dd540d4..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/groups_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/groups_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/groups_0.js deleted file mode 100644 index 6bd73c6ed9..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/groups_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['serial_20flash_0',['Serial Flash',['../group__group__board__libs.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/mag_sel.svg b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/mag_sel.svg deleted file mode 100644 index 03626f64a0..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/mag_sel.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/nomatches.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/nomatches.html deleted file mode 100644 index 2b9360b6bd..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/nomatches.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -
    -
    No Matches
    -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/pages_0.html b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/pages_0.html deleted file mode 100644 index 34ca499f4c..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/pages_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/pages_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/pages_0.js deleted file mode 100644 index 4dc5ed7e00..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/pages_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['serial_20flash_0',['Serial Flash',['../index.html',1,'']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/search.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/search.css deleted file mode 100644 index 648a792f5e..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/search.css +++ /dev/null @@ -1,263 +0,0 @@ -/*---------------- Search Box */ - -#MSearchBox { - white-space : nowrap; - background: white; - border-radius: 0.65em; - box-shadow: inset 0.5px 0.5px 3px 0px #555; - z-index: 102; -} - -#MSearchBox .left { - display: inline-block; - vertical-align: middle; - height: 1.4em; -} - -#MSearchSelect { - display: inline-block; - vertical-align: middle; - height: 19px; - padding: 0 0 0 0.3em; - margin: 0; -} - -#MSearchField { - display: inline-block; - vertical-align: middle; - width: 7.5em; - height: 19px; - margin: 0 0.15em; - padding: 0; - line-height: 1em; - border:none; - color: #909090; - outline: none; - font-family: Arial, Verdana, sans-serif; - -webkit-border-radius: 0px; - border-radius: 0px; - background: none; -} - -@media(hover: none) { - /* to avoid zooming on iOS */ - #MSearchField { - font-size: 16px; - } -} - -#MSearchBox .right { - display: inline-block; - vertical-align: middle; - width: 1.4em; - height: 1.4em; -} - -#MSearchClose { - display: none; - font-size: inherit; - background : none; - border: none; - margin: 0; - padding: 0; - outline: none; - -} - -#MSearchCloseImg { - height: 1.4em; - padding: 0.3em; - margin: 0; -} - -.MSearchBoxActive #MSearchField { - color: #000000; -} - -#main-menu > li:last-child { - /* This
  • object is the parent of the search bar */ - display: flex; - justify-content: center; - align-items: center; - height: 36px; - margin-right: 1em; -} - -/*---------------- Search filter selection */ - -#MSearchSelectWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #90A5CE; - background-color: #F9FAFC; - z-index: 10001; - padding-top: 4px; - padding-bottom: 4px; - -moz-border-radius: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -.SelectItem { - font: 8pt Arial, Verdana, sans-serif; - padding-left: 2px; - padding-right: 12px; - border: 0px; -} - -span.SelectionMark { - margin-right: 4px; - font-family: monospace; - outline-style: none; - text-decoration: none; -} - -a.SelectItem { - display: block; - outline-style: none; - color: #000000; - text-decoration: none; - padding-left: 6px; - padding-right: 12px; -} - -a.SelectItem:focus, -a.SelectItem:active { - color: #000000; - outline-style: none; - text-decoration: none; -} - -a.SelectItem:hover { - color: #FFFFFF; - background-color: #3D578C; - outline-style: none; - text-decoration: none; - cursor: pointer; - display: block; -} - -/*---------------- Search results window */ - -iframe#MSearchResults { - /*width: 60ex;*/ - height: 15em; -} - -#MSearchResultsWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #000; - background-color: #EEF1F7; - z-index:10000; -} - -/* ----------------------------------- */ - - -#SRIndex { - clear:both; - padding-bottom: 15px; -} - -.SREntry { - font-size: 10pt; - padding-left: 1ex; -} - -.SRPage .SREntry { - font-size: 8pt; - padding: 1px 5px; -} - -body.SRPage { - margin: 5px 2px; -} - -.SRChildren { - padding-left: 3ex; padding-bottom: .5em -} - -.SRPage .SRChildren { - display: none; -} - -.SRSymbol { - font-weight: bold; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRScope { - display: block; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRSymbol:focus, a.SRSymbol:active, -a.SRScope:focus, a.SRScope:active { - text-decoration: underline; -} - -span.SRScope { - padding-left: 4px; - font-family: Arial, Verdana, sans-serif; -} - -.SRPage .SRStatus { - padding: 2px 5px; - font-size: 8pt; - font-style: italic; - font-family: Arial, Verdana, sans-serif; -} - -.SRResult { - display: none; -} - -div.searchresults { - margin-left: 10px; - margin-right: 10px; -} - -/*---------------- External search page results */ - -.searchresult { - background-color: #F0F3F8; -} - -.pages b { - color: white; - padding: 5px 5px 3px 5px; - background-image: url("../tab_a.png"); - background-repeat: repeat-x; - text-shadow: 0 1px 1px #000000; -} - -.pages { - line-height: 17px; - margin-left: 4px; - text-decoration: none; -} - -.hl { - font-weight: bold; -} - -#searchresults { - margin-bottom: 20px; -} - -.searchpages { - margin-top: 10px; -} - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/search.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/search.js deleted file mode 100644 index ac8055d132..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/search.js +++ /dev/null @@ -1,794 +0,0 @@ -/* - @licstart The following is the entire license notice for the JavaScript code in this file. - - The MIT License (MIT) - - Copyright (C) 1997-2020 by Dimitri van Heesch - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, - sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or - substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @licend The above is the entire license notice for the JavaScript code in this file - */ -function convertToId(search) -{ - var result = ''; - for (i=0;i do a search - { - this.Search(); - } - } - - this.OnSearchSelectKey = function(evt) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==40 && this.searchIndex0) // Up - { - this.searchIndex--; - this.OnSelectItem(this.searchIndex); - } - else if (e.keyCode==13 || e.keyCode==27) - { - this.OnSelectItem(this.searchIndex); - this.CloseSelectionWindow(); - this.DOMSearchField().focus(); - } - return false; - } - - // --------- Actions - - // Closes the results window. - this.CloseResultsWindow = function() - { - this.DOMPopupSearchResultsWindow().style.display = 'none'; - this.DOMSearchClose().style.display = 'none'; - this.Activate(false); - } - - this.CloseSelectionWindow = function() - { - this.DOMSearchSelectWindow().style.display = 'none'; - } - - // Performs a search. - this.Search = function() - { - this.keyTimeout = 0; - - // strip leading whitespace - var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); - - var code = searchValue.toLowerCase().charCodeAt(0); - var idxChar = searchValue.substr(0, 1).toLowerCase(); - if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair - { - idxChar = searchValue.substr(0, 2); - } - - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; - - var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); - if (idx!=-1) - { - var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; - } - else // nothing available for this search term - { - resultsPage = this.resultsPath + '/nomatches' + this.extension; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; - } - - window.frames.MSearchResults.location = resultsPageWithSearch; - var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); - - if (domPopupSearchResultsWindow.style.display!='block') - { - var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline-block'; - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - var maxWidth = document.body.clientWidth; - var width = 400; - if (left<10) left=10; - if (width+left+8>maxWidth) width=maxWidth-left-8; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - domPopupSearchResultsWindow.style.width = width + 'px'; - } - - this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; - } - - // -------- Activation Functions - - // Activates or deactivates the search panel, resetting things to - // their default values if necessary. - this.Activate = function(isActive) - { - if (isActive || // open it - this.DOMPopupSearchResultsWindow().style.display == 'block' - ) - { - this.DOMSearchBox().className = 'MSearchBoxActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == this.searchLabel) // clear "Search" term upon entry - { - searchField.value = ''; - this.searchActive = true; - } - } - else if (!isActive) // directly remove the panel - { - this.DOMSearchBox().className = 'MSearchBoxInactive'; - this.DOMSearchField().value = this.searchLabel; - this.searchActive = false; - this.lastSearchValue = '' - this.lastResultsPage = ''; - } - } -} - -// ----------------------------------------------------------------------- - -// The class that handles everything on the search results page. -function SearchResults(name) -{ - // The number of matches from the last run of . - this.lastMatchCount = 0; - this.lastKey = 0; - this.repeatOn = false; - - // Toggles the visibility of the passed element ID. - this.FindChildElement = function(id) - { - var parentElement = document.getElementById(id); - var element = parentElement.firstChild; - - while (element && element!=parentElement) - { - if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') - { - return element; - } - - if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) - { - element = element.firstChild; - } - else if (element.nextSibling) - { - element = element.nextSibling; - } - else - { - do - { - element = element.parentNode; - } - while (element && element!=parentElement && !element.nextSibling); - - if (element && element!=parentElement) - { - element = element.nextSibling; - } - } - } - } - - this.Toggle = function(id) - { - var element = this.FindChildElement(id); - if (element) - { - if (element.style.display == 'block') - { - element.style.display = 'none'; - } - else - { - element.style.display = 'block'; - } - } - } - - // Searches for the passed string. If there is no parameter, - // it takes it from the URL query. - // - // Always returns true, since other documents may try to call it - // and that may or may not be possible. - this.Search = function(search) - { - if (!search) // get search word from URL - { - search = window.location.search; - search = search.substring(1); // Remove the leading '?' - search = unescape(search); - } - - search = search.replace(/^ +/, ""); // strip leading spaces - search = search.replace(/ +$/, ""); // strip trailing spaces - search = search.toLowerCase(); - search = convertToId(search); - - var resultRows = document.getElementsByTagName("div"); - var matches = 0; - - var i = 0; - while (i < resultRows.length) - { - var row = resultRows.item(i); - if (row.className == "SRResult") - { - var rowMatchName = row.id.toLowerCase(); - rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' - - if (search.length<=rowMatchName.length && - rowMatchName.substr(0, search.length)==search) - { - row.style.display = 'block'; - matches++; - } - else - { - row.style.display = 'none'; - } - } - i++; - } - document.getElementById("Searching").style.display='none'; - if (matches == 0) // no results - { - document.getElementById("NoMatches").style.display='block'; - } - else // at least one result - { - document.getElementById("NoMatches").style.display='none'; - } - this.lastMatchCount = matches; - return true; - } - - // return the first item with index index or higher that is visible - this.NavNext = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index++; - } - return focusItem; - } - - this.NavPrev = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index--; - } - return focusItem; - } - - this.ProcessKeys = function(e) - { - if (e.type == "keydown") - { - this.repeatOn = false; - this.lastKey = e.keyCode; - } - else if (e.type == "keypress") - { - if (!this.repeatOn) - { - if (this.lastKey) this.repeatOn = true; - return false; // ignore first keypress after keydown - } - } - else if (e.type == "keyup") - { - this.lastKey = 0; - this.repeatOn = false; - } - return this.lastKey!=0; - } - - this.Nav = function(evt,itemIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - var newIndex = itemIndex-1; - var focusItem = this.NavPrev(newIndex); - if (focusItem) - { - var child = this.FindChildElement(focusItem.parentNode.parentNode.id); - if (child && child.style.display == 'block') // children visible - { - var n=0; - var tmpElem; - while (1) // search for last child - { - tmpElem = document.getElementById('Item'+newIndex+'_c'+n); - if (tmpElem) - { - focusItem = tmpElem; - } - else // found it! - { - break; - } - n++; - } - } - } - if (focusItem) - { - focusItem.focus(); - } - else // return focus to search field - { - parent.document.getElementById("MSearchField").focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = itemIndex+1; - var focusItem; - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem && elem.style.display == 'block') // children visible - { - focusItem = document.getElementById('Item'+itemIndex+'_c0'); - } - if (!focusItem) focusItem = this.NavNext(newIndex); - if (focusItem) focusItem.focus(); - } - else if (this.lastKey==39) // Right - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'block'; - } - else if (this.lastKey==37) // Left - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'none'; - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } - - this.NavChild = function(evt,itemIndex,childIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - if (childIndex>0) - { - var newIndex = childIndex-1; - document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); - } - else // already at first child, jump to parent - { - document.getElementById('Item'+itemIndex).focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = childIndex+1; - var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); - if (!elem) // last child, jump to parent next parent - { - elem = this.NavNext(itemIndex+1); - } - if (elem) - { - elem.focus(); - } - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } -} - -function setKeyActions(elem,action) -{ - elem.setAttribute('onkeydown',action); - elem.setAttribute('onkeypress',action); - elem.setAttribute('onkeyup',action); -} - -function setClassAttr(elem,attr) -{ - elem.setAttribute('class',attr); - elem.setAttribute('className',attr); -} - -function createResults() -{ - var results = document.getElementById("SRResults"); - for (var e=0; e - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/typedefs_0.js b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/typedefs_0.js deleted file mode 100644 index baa53b0902..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/search/typedefs_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['cy_5fserial_5fflash_5fqspi_5fread_5fcomplete_5fcallback_5ft_0',['cy_serial_flash_qspi_read_complete_callback_t',['../group__group__board__libs.html#gaa528d15ff15325aaec05e5a548856a19',1,'cy_serial_flash_qspi.h']]] -]; diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/splitbar.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/splitbar.png deleted file mode 100644 index fe895f2c58..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/splitbar.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/sync_off.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/sync_off.png deleted file mode 100644 index 3b443fc628..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/sync_off.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/sync_on.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/sync_on.png deleted file mode 100644 index e08320fb64..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/sync_on.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_a.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_a.png deleted file mode 100644 index 3b725c41c5..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_a.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_b.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_b.png deleted file mode 100644 index e2b4a8638c..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_b.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_h.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_h.png deleted file mode 100644 index fd5cb70548..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_h.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_s.png b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_s.png deleted file mode 100644 index ab478c95b6..0000000000 Binary files a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tab_s.png and /dev/null differ diff --git a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tabs.css b/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tabs.css deleted file mode 100644 index 00d1c60249..0000000000 --- a/bsp/cypress/libraries/IFX_PSOC6_HAL/mtb_shared/serial-flash/docs/html/tabs.css +++ /dev/null @@ -1 +0,0 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:#666;-webkit-transition:all .25s;transition:all .25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px,1px,1px,1px)}#main-menu-state:not(:checked) ~ #main-menu{display:none}#main-menu-state:checked ~ #main-menu{display:block}@media(min-width:768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked) ~ #main-menu{display:block}}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px !important;-webkit-border-radius:5px;border-radius:5px !important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/bsp/cypress/psoc6-cy8cproto-4343w/board/Kconfig b/bsp/cypress/psoc6-cy8cproto-4343w/board/Kconfig index 53d28855ac..57047a2446 100644 --- a/bsp/cypress/psoc6-cy8cproto-4343w/board/Kconfig +++ b/bsp/cypress/psoc6-cy8cproto-4343w/board/Kconfig @@ -57,6 +57,14 @@ menu "On-chip Peripheral Drivers" bool "Enable timer0 output pwm" default n if BSP_USING_PWM0 + menuconfig BSP_USING_PWM0_CH3 + bool "Enable PWM0 channel3" + default n + if BSP_USING_PWM0_CH3 + config BSP_USING_PWM0_PORT13 + bool "Enable PWM0-PORT13 output pwm" + default n + endif menuconfig BSP_USING_PWM0_CH7 bool "Enable PWM0 channel7" default n @@ -215,15 +223,24 @@ menu "On-chip Peripheral Drivers" config BSP_USING_ON_CHIP_FLASH bool "Enable on-chip FLASH" - default n + default n config BSP_USING_WDT bool "Enable Watchdog Timer" select RT_USING_WDT - default n + default n endmenu menu "Board extended module Drivers" + + config BSP_USING_SLIDER + bool "Enable Slider Demo" + select BSP_USING_PWM + select BSP_USING_PWM0 + select BSP_USING_PWM0_CH3 + select BSP_USING_PWM0_PORT13 + default n + menuconfig BSP_USING_RW007 bool "Enable RW007" default n diff --git a/bsp/cypress/psoc6-cy8cproto-4343w/board/SConscript b/bsp/cypress/psoc6-cy8cproto-4343w/board/SConscript index ccb0dd11e2..d04b7b6c09 100644 --- a/bsp/cypress/psoc6-cy8cproto-4343w/board/SConscript +++ b/bsp/cypress/psoc6-cy8cproto-4343w/board/SConscript @@ -19,6 +19,9 @@ if GetDepend(['BSP_USING_SPI3_SAMPLE']): if GetDepend(['BSP_USING_RW007']): src += Glob('ports/drv_rw007.c') +if GetDepend(['BSP_USING_SLIDER']): + src += Glob('ports/slider_sample.c') + path = [cwd] path += [cwd + '/ports'] diff --git a/bsp/cypress/psoc6-cy8cproto-4343w/board/ports/slider_sample.c b/bsp/cypress/psoc6-cy8cproto-4343w/board/ports/slider_sample.c new file mode 100644 index 0000000000..6f2066dd6c --- /dev/null +++ b/bsp/cypress/psoc6-cy8cproto-4343w/board/ports/slider_sample.c @@ -0,0 +1,243 @@ +/* + * Copyright (c) 2006-2022, RT-Thread Development Team + * + * SPDX-License-Identifier: Apache-2.0 + * + * Change Logs: + * Date Author Notes + * 2022-07-28 Rbb666 first version + */ + +#include +#include "drv_common.h" + +#ifdef BSP_USING_SLIDER +#include "cycfg_capsense.h" + +#define CAPSENSE_INTR_PRIORITY (7u) +#define EZI2C_INTR_PRIORITY (6u) + +/* Allowed duty cycle for maximum brightness */ +#define LED_MAX_BRIGHTNESS (100u) + +/* Allowed duty cycle for minimum brightness*/ +#define LED_MIN_BRIGHTNESS (0u) + +#define GET_DUTY_CYCLE(x) (1 * 1000 * 1000 - x * 10 * 1000) + +typedef enum +{ + LED_OFF, + LED_ON +} led_state_t; + +typedef struct +{ + led_state_t state; + uint32_t brightness; +} led_data_t; + +static rt_sem_t trans_done_semphr = RT_NULL; + +#ifndef RT_USING_PWM + #error You need enable PWM to use this sample +#else + #define PWM_DEV_NAME "pwm0" + #define PWM_DEV_CHANNEL 3 + static struct rt_device_pwm *pwm_dev; +#endif + +static void capsense_isr(void) +{ + /* enter interrupt */ + rt_interrupt_enter(); + + Cy_CapSense_InterruptHandler(CYBSP_CSD_HW, &cy_capsense_context); + + /* leave interrupt */ + rt_interrupt_leave(); +} + +void capsense_callback(cy_stc_active_scan_sns_t *ptrActiveScan) +{ + rt_sem_release(trans_done_semphr); +} + +static uint32_t initialize_capsense(void) +{ + uint32_t status = CYRET_SUCCESS; + + /* CapSense interrupt configuration parameters */ + static const cy_stc_sysint_t capSense_intr_config = + { + .intrSrc = csd_interrupt_IRQn, + .intrPriority = CAPSENSE_INTR_PRIORITY, + }; + + /* Capture the CSD HW block and initialize it to the default state. */ + status = Cy_CapSense_Init(&cy_capsense_context); + if (CYRET_SUCCESS != status) + { + return status; + } + + /* Initialize CapSense interrupt */ + cyhal_system_set_isr(csd_interrupt_IRQn, csd_interrupt_IRQn, CAPSENSE_INTR_PRIORITY, &capsense_isr); + NVIC_ClearPendingIRQ(capSense_intr_config.intrSrc); + NVIC_EnableIRQ(capSense_intr_config.intrSrc); + + /* Initialize the CapSense firmware modules. */ + status = Cy_CapSense_Enable(&cy_capsense_context); + if (CYRET_SUCCESS != status) + { + return status; + } + + /* Assign a callback function to indicate end of CapSense scan. */ + status = Cy_CapSense_RegisterCallback(CY_CAPSENSE_END_OF_SCAN_E, + capsense_callback, &cy_capsense_context); + if (CYRET_SUCCESS != status) + { + return status; + } + + return status; +} + +void Slider_Init(void) +{ + cy_rslt_t result; + + result = initialize_capsense(); + + if (CYRET_SUCCESS != result) + { + /* Halt the CPU if CapSense initialization failed */ + RT_ASSERT(0); + } + + /* Initiate first scan */ + Cy_CapSense_ScanAllWidgets(&cy_capsense_context); + + trans_done_semphr = rt_sem_create("slider_sem", 1, RT_IPC_FLAG_PRIO); + if (trans_done_semphr == RT_NULL) + { + rt_kprintf("create transform done semphr failed.\n"); + RT_ASSERT(0); + return; + } + +#ifdef BSP_USING_PWM0_PORT13 + /* Initiate PWM*/ + pwm_dev = (struct rt_device_pwm *)rt_device_find(PWM_DEV_NAME); + + if (pwm_dev == RT_NULL) + { + rt_kprintf("PWM init failed! can't find %s device!\n", PWM_DEV_NAME); + RT_ASSERT(0); + } + + /*default period:1ms pulse:0*/ + rt_pwm_set(pwm_dev, PWM_DEV_CHANNEL, 1 * 1000 * 1000, 1 * 1000 * 1000); + rt_pwm_enable(pwm_dev, PWM_DEV_CHANNEL); +#endif +} + +void update_led_state(led_data_t *ledData) +{ + if (ledData->brightness >= 0) + { + uint32_t brightness = (ledData->brightness < LED_MIN_BRIGHTNESS) ? LED_MIN_BRIGHTNESS : ledData->brightness; + + /* Drive the LED with brightness */ + rt_pwm_set(pwm_dev, PWM_DEV_CHANNEL, 1 * 1000 * 1000, GET_DUTY_CYCLE(brightness)); + } +} + +static void process_touch(void) +{ + cy_stc_capsense_touch_t *slider_touch_info; + uint16_t slider_pos; + uint8_t slider_touch_status; + bool led_update_req = false; + + static uint16_t slider_pos_prev; + static led_data_t led_data = {LED_ON, LED_MAX_BRIGHTNESS}; + + /* Get slider status */ + slider_touch_info = Cy_CapSense_GetTouchInfo( + CY_CAPSENSE_LINEARSLIDER0_WDGT_ID, &cy_capsense_context); + slider_touch_status = slider_touch_info->numPosition; + slider_pos = slider_touch_info->ptrPosition->x; + + /* Detect the new touch on slider */ + if ((RT_NULL != slider_touch_status) && + (slider_pos != slider_pos_prev)) + { + led_data.brightness = (slider_pos * 100) + / cy_capsense_context.ptrWdConfig[CY_CAPSENSE_LINEARSLIDER0_WDGT_ID].xResolution; + + led_update_req = true; + } + +#ifndef RT_USING_PWM +#error You need enable PWM to use this sample +#else + /* Update the LED state if requested */ + if (led_update_req) + { + update_led_state(&led_data); + } +#endif + slider_pos_prev = slider_pos; +} + +static void Slider_thread_entry(void *parameter) +{ + Slider_Init(); + + for (;;) + { + rt_sem_take(trans_done_semphr, RT_WAITING_FOREVER); + + /* Process all widgets */ + Cy_CapSense_ProcessAllWidgets(&cy_capsense_context); + + /* Process touch input */ + process_touch(); + + /* Establishes synchronized operation between the CapSense + * middleware and the CapSense Tuner tool. + */ + Cy_CapSense_RunTuner(&cy_capsense_context); + + /* Initiate next scan */ + Cy_CapSense_ScanAllWidgets(&cy_capsense_context); + + rt_thread_mdelay(50); + } +} + +int Slider_ctrl_sample(void) +{ + rt_err_t ret = RT_EOK; + + rt_thread_t thread = rt_thread_create("slider_th", + Slider_thread_entry, + RT_NULL, + 1024, + 25, + 10); + if (thread != RT_NULL) + { + rt_thread_startup(thread); + } + else + { + ret = RT_ERROR; + } + + return ret; +} +MSH_CMD_EXPORT(Slider_ctrl_sample, Slider sample to ctrl led); +#endif