OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
include
/
linux
/
spi
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
ad7877.h
835 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
adi_spi3.h
15.1 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ads7846.h
2.02 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
at73c213.h
828 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
at86rf230.h
724 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cc2520.h
620 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
corgi_lcd.h
460 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ds1305.h
1.08 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
eeprom.h
1.19 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
flash.h
1023 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ifx_modem.h
616 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
l4f00242t03.h
847 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
libertas_spi.h
907 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
lms283gf05.h
775 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
max7301.h
939 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mc33880.h
196 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mcp23s08.h
685 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mmc_spi.h
1.91 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
mxs-spi.h
5.24 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pxa2xx_spi.h
1.5 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
rspi.h
715 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
s3c24xx.h
816 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sh_hspi.h
572 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sh_msiof.h
357 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
spi-fsl-dspi.h
955 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
spi.h
50.33 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
spi_bitbang.h
1.43 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
spi_gpio.h
2.56 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
spi_oc_tiny.h
628 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
tdo24m.h
210 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
tle62x0.h
660 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
xilinx_spi.h
627 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: ad7877.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ /* linux/spi/ad7877.h */ /* Touchscreen characteristics vary between boards and models. The * platform_data for the device's "struct device" holds this information. * * It's OK if the min/max values are zero. */ struct ad7877_platform_data { u16 model; /* 7877 */ u16 vref_delay_usecs; /* 0 for external vref; etc */ u16 x_plate_ohms; u16 y_plate_ohms; u16 x_min, x_max; u16 y_min, y_max; u16 pressure_min, pressure_max; u8 stopacq_polarity; /* 1 = Active HIGH, 0 = Active LOW */ u8 first_conversion_delay; /* 0 = 0.5us, 1 = 128us, 2 = 1ms, 3 = 8ms */ u8 acquisition_time; /* 0 = 2us, 1 = 4us, 2 = 8us, 3 = 16us */ u8 averaging; /* 0 = 1, 1 = 4, 2 = 8, 3 = 16 */ u8 pen_down_acc_interval; /* 0 = covert once, 1 = every 0.5 ms, 2 = ever 1 ms, 3 = every 8 ms,*/ };