Home
last modified time | relevance | path

Searched full:tap (Results 1 – 25 of 75) sorted by relevance

123

/Zephyr-latest/dts/bindings/sensor/
Dst,iis2dlpc-common.yaml14 tap-mode = <IIS2DLPC_DT_SINGLE_DOUBLE_TAP>;
72 # tap and tap-tap configuration section
74 # tap and tap-tap events can be generated on INT1 only.
76 tap-mode:
80 Tap mode. Default is power-up configuration.
87 tap-threshold:
91 Tap X/Y/Z axes threshold. Default is power-up configuration.
94 Thresholds to start the tap-event detection procedure on the X/Y/Z axes.
97 corresponds to disable the tap detection on that axis.
100 and want to disable tap detection on Y, you should specify in Device Tree
[all …]
Dst,lis2dw12-common.yaml16 tap-mode = <LIS2DW12_DT_SINGLE_DOUBLE_TAP>;
100 # tap and tap-tap configuration section
102 # tap and tap-tap events can be generated on INT1 only.
104 tap-mode:
108 Tap mode. Default is power-up configuration.
115 tap-threshold:
119 Tap X/Y/Z axes threshold. Default is power-up configuration.
122 Thresholds to start the tap-event detection procedure on the X/Y/Z axes.
125 corresponds to disable the tap detection on that axis.
128 and want to disable tap detection on Y, you should specify in Device Tree
[all …]
/Zephyr-latest/dts/bindings/input/
Dzephyr,input-double-tap.yaml5 Input double tap pseudo-device
19 compatible = "zephyr,input-double-tap";
21 double-tap-codes = <INPUT_KEY_A>, <INPUT_KEY_B>;
22 double-tap-delay-ms = <300>;
25 compatible: "zephyr,input-double-tap"
39 double-tap-codes:
45 double-tap-delay-ms:
48 description: Maximum time delay between taps to register a double tap, in milliseconds.
Dcirque,pinnacle-common.yaml104 primary-tap-enable:
107 In the relative mode enable the primary tap.
/Zephyr-latest/drivers/sensor/st/iis2dlpc/
DKconfig62 bool "Tap and Tap-Tap detection"
64 Enable tap (single/double) detection
Diis2dlpc.c336 LOG_INF("TAP: tap mode is %d", cfg->tap_mode); in iis2dlpc_init()
338 LOG_ERR("Failed to select tap trigger mode"); in iis2dlpc_init()
342 LOG_INF("TAP: ths_x is %02x", cfg->tap_threshold[0]); in iis2dlpc_init()
344 LOG_ERR("Failed to set tap X axis threshold"); in iis2dlpc_init()
348 LOG_INF("TAP: ths_y is %02x", cfg->tap_threshold[1]); in iis2dlpc_init()
350 LOG_ERR("Failed to set tap Y axis threshold"); in iis2dlpc_init()
354 LOG_INF("TAP: ths_z is %02x", cfg->tap_threshold[2]); in iis2dlpc_init()
356 LOG_ERR("Failed to set tap Z axis threshold"); in iis2dlpc_init()
361 LOG_INF("TAP: tap_x enabled"); in iis2dlpc_init()
363 LOG_ERR("Failed to set tap detection on X axis"); in iis2dlpc_init()
[all …]
/Zephyr-latest/tests/subsys/input/double_tap/boards/
Dnative_sim.overlay16 compatible = "zephyr,input-double-tap";
18 double-tap-codes = <INPUT_KEY_X>, <INPUT_KEY_Y>;
19 double-tap-delay-ms = <300>;
/Zephyr-latest/drivers/sensor/st/lis2dw12/
Dlis2dw12_trigger.c152 /* check if tap detection is enabled */ in lis2dw12_trigger_set()
160 /* Set single TAP trigger */ in lis2dw12_trigger_set()
167 /* Set double TAP trigger */ in lis2dw12_trigger_set()
377 LOG_DBG("TAP: tap mode is %d", cfg->tap_mode); in lis2dw12_tap_init()
379 LOG_ERR("Failed to select tap trigger mode"); in lis2dw12_tap_init()
383 LOG_DBG("TAP: ths_x is %02x", cfg->tap_threshold[0]); in lis2dw12_tap_init()
385 LOG_ERR("Failed to set tap X axis threshold"); in lis2dw12_tap_init()
389 LOG_DBG("TAP: ths_y is %02x", cfg->tap_threshold[1]); in lis2dw12_tap_init()
391 LOG_ERR("Failed to set tap Y axis threshold"); in lis2dw12_tap_init()
395 LOG_DBG("TAP: ths_z is %02x", cfg->tap_threshold[2]); in lis2dw12_tap_init()
[all …]
DKconfig62 bool "Tap and Tap-Tap detection"
64 Enable tap (single/double) detection
/Zephyr-latest/doc/hardware/peripherals/sensor/
Dtap_count.c29 printk("Tap! Total Taps: %u\n", state->count); in tap_handler()
36 printk("Tap Counter Example (%s)\n", CONFIG_ARCH); in main()
Daccel_stream.c86 /* If a tap has occurred lets print it out */ in main()
88 printk("Tap! Sensor %s\n", dev->name); in main()
/Zephyr-latest/boards/intel/socfpga_std/cyclonev_socdk/doc/
Dindex.rst245 …Info : JTAG tap: fpgasoc.fpga.tap tap/device found: 0x02d020dd (mfg: 0x06e (Altera), part: 0x2d02,…
246 …Info : JTAG tap: fpgasoc.cpu tap/device found: 0x4ba00477 (mfg: 0x23b (ARM Ltd), part: 0xba00, ver…
284 …Info : JTAG tap: fpgasoc.fpga.tap tap/device found: 0x02d020dd (mfg: 0x06e (Altera), part: 0x2d02,…
285 …Info : JTAG tap: fpgasoc.cpu tap/device found: 0x4ba00477 (mfg: 0x23b (ARM Ltd), part: 0xba00, ver…
310 …Info : JTAG tap: fpgasoc.fpga.tap tap/device found: 0x02d020dd (mfg: 0x06e (Altera), part: 0x2d02,…
311 …Info : JTAG tap: fpgasoc.cpu tap/device found: 0x4ba00477 (mfg: 0x23b (ARM Ltd), part: 0xba00, ver…
/Zephyr-latest/samples/sensor/icm42605/src/
Dmain.c90 printf("Tap Detected!\n"); in handle_icm42605_tap()
96 printf("Double Tap detected!\n"); in handle_icm42605_double_tap()
115 printf("Cannot configure tap trigger!!!\n"); in main()
126 printf("Cannot configure double tap trigger!!!\n"); in main()
/Zephyr-latest/subsys/input/
DKconfig99 bool "Input double tap"
103 Enable the input double tap driver.
/Zephyr-latest/samples/sensor/icm42605/
DREADME.rst12 temperature, acceleration, and angular velocity, tap, double tap
/Zephyr-latest/drivers/ethernet/
DKconfig.native_posix37 string "Host ethernet TUN/TAP device name"
40 This option sets the TUN/TAP device name in your host system.
/Zephyr-latest/boards/openisa/rv32m1_vega/support/
Dopenocd_rv32m1_vega_zero_riscy.cfg17 # OpenCores Mohor JTAG TAP ID
25 # Select the TAP core we are using
Dopenocd_rv32m1_vega_ri5cy.cfg17 # OpenCores Mohor JTAG TAP ID
25 # Select the TAP core we are using
/Zephyr-latest/dts/bindings/spi/
Dmicrochip,xec-qmspi-ldma.yaml92 timing tap.
98 timing tap.
/Zephyr-latest/include/zephyr/dt-bindings/sensor/
Diis2dlpc.h22 /* Tap mode */
Dlis2dw12.h22 /* Tap mode */
/Zephyr-latest/tests/subsys/input/double_tap/src/
Dmain.c45 /* double tap*/ in ZTEST()
61 /* double tap - other key */ in ZTEST()
/Zephyr-latest/doc/connectivity/networking/
Dnetworking_with_host.rst43 admin privileges on the host machine, unlike TAP. However, it has several
64 purpose, a TAP virtual Ethernet driver and an offloaded sockets driver.
/Zephyr-latest/drivers/net/
DKconfig170 bool "Use TAP interface to host"
173 In TAP the Ethernet frames are transferred over SLIP.
257 additional setup on the host side, unlike with the native TAP Ethernet driver.
/Zephyr-latest/dts/bindings/qspi/
Dnxp,s32-qspi.yaml181 This field sets the number of delay elements in each delay tap. The field
196 a-dll-tap-select:
201 Selects the Nth tap provided by the slave delay-chain.

123