summaryrefslogtreecommitdiff
path: root/nuttx/Documentation/NuttxPortingGuide.html
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-29 00:54:22 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-29 00:54:22 +0000
commit05738115218b3090bce9e5e3e279e0a9f5df194d (patch)
treeb1005787ec664d9595472abbc73bba602d0e00e6 /nuttx/Documentation/NuttxPortingGuide.html
parenta6eddbb85537ebee6860b0c38ab48be615b297f6 (diff)
downloadpx4-nuttx-05738115218b3090bce9e5e3e279e0a9f5df194d.tar.gz
px4-nuttx-05738115218b3090bce9e5e3e279e0a9f5df194d.tar.bz2
px4-nuttx-05738115218b3090bce9e5e3e279e0a9f5df194d.zip
Massive naming fix: STMPE11->STMPE811
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4782 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Documentation/NuttxPortingGuide.html')
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html38
1 files changed, 19 insertions, 19 deletions
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index 15019ad10..18ff07d19 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -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>