mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
Massive naming fix: STMPE11->STMPE811
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4782 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -4673,69 +4673,69 @@ build
|
||||
multiple touchscreens with the same driver.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_INPUT_STMPE11</code>:
|
||||
Enables support for the STMPE11 driver (Needs <code>CONFIG_INPUT</code>)
|
||||
<code>CONFIG_INPUT_STMPE811</code>:
|
||||
Enables support for the STMPE811 driver (Needs <code>CONFIG_INPUT</code>)
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_SPI</code>:
|
||||
<code>CONFIG_STMPE811_SPI</code>:
|
||||
Enables support for the SPI interface (not currenly supported)
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_I2C</code>:
|
||||
<code>CONFIG_STMPE811_I2C</code>:
|
||||
Enables support for the I2C interface
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_MULTIPLE </code>:
|
||||
Can be defined to support multiple STMPE11 devices on board.
|
||||
<code>CONFIG_STMPE811_MULTIPLE </code>:
|
||||
Can be defined to support multiple STMPE811 devices on board.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_ACTIVELOW</code>:
|
||||
<code>CONFIG_STMPE811_ACTIVELOW</code>:
|
||||
Interrupt is generated by an active low signal (or falling edge).
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_EDGE</code>:
|
||||
<code>CONFIG_STMPE811_EDGE</code>:
|
||||
Interrupt is generated on an edge (vs. on the active level)
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_NPOLLWAITERS</code>:
|
||||
<code>CONFIG_STMPE811_NPOLLWAITERS</code>:
|
||||
Maximum number of threads that can be waiting on poll() (ignored if
|
||||
<code>CONFIG_DISABLE_POLL</code> is set).
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_TSC_DISABLE</code>:
|
||||
<code>CONFIG_STMPE811_TSC_DISABLE</code>:
|
||||
Disable driver touchscreen functionality.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_ADC_DISABLE</code>:
|
||||
<code>CONFIG_STMPE811_ADC_DISABLE</code>:
|
||||
Disable driver ADC functionality.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_GPIO_DISABLE</code>:
|
||||
<code>CONFIG_STMPE811_GPIO_DISABLE</code>:
|
||||
Disable driver GPIO functionlaity.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_GPIOINT_DISABLE</code>:
|
||||
<code>CONFIG_STMPE811_GPIOINT_DISABLE</code>:
|
||||
Disable driver GPIO interrupt functionality (ignored if GPIO
|
||||
functionality is disabled).
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_SWAPXY</code>:
|
||||
<code>CONFIG_STMPE811_SWAPXY</code>:
|
||||
Reverse the meaning of X and Y to handle different LCD orientations.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_TEMP_DISABLE</code>:
|
||||
<code>CONFIG_STMPE811_TEMP_DISABLE</code>:
|
||||
Disable driver temperature sensor functionality.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_REGDEBUG</code>:
|
||||
<code>CONFIG_STMPE811_REGDEBUG</code>:
|
||||
Enabled very low register-level debug output. Requires <code>CONFIG_DEBUG</code>.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_STMPE11_THRESHX</code> and <code>CONFIG_STMPE11_THRESHY</code>:
|
||||
STMPE11 touchscreen data comes in a a very high rate. New touch positions
|
||||
<code>CONFIG_STMPE811_THRESHX</code> and <code>CONFIG_STMPE811_THRESHY</code>:
|
||||
STMPE811 touchscreen data comes in a a very high rate. New touch positions
|
||||
will only be reported when the X or Y data changes by these thresholds.
|
||||
This trades reduces data rate for some loss in dragging accuracy. The
|
||||
STMPE11 is configure for 12-bit values so the raw ranges are 0-4095. So
|
||||
STMPE811 is configure for 12-bit values so the raw ranges are 0-4095. So
|
||||
for example, if your display is 320x240, then THRESHX=13 and THRESHY=17
|
||||
would correspond to one pixel. Default: 12
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user