diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index ddd2086bf0..762d12b6bd 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@
Last Updated: November 15, 2014
+Last Updated: February 15, 2014
@@ -190,8 +190,10 @@ 6.3.12 PWM Drivers+ NuttX supports a low-level, two-part timer driver. +
++ Files supporting the timer driver can be found in the following locations: +
+include/nuttx/timer.h
.
+ This header file includes both the application level interface to the timer driver as well as the interface between the "upper half" and "lower half" drivers.
+ The timer driver uses a standard character driver framework.
+ drivers/timers/timer.c
.
+ arch/
<architecture>/src/
<chip> directory for the specific processor <architecture> and for the specific <chip> timer peripheral devices.
+ + NuttX supports a low-level, two-part RealTime Clock (RTC) driver. +
++ Files supporting the RTC driver can be found in the following locations: +
+include/nuttx/rtc.h
.
+ This header file includes both the application level interface to the RTC driver as well as the interface between the "upper half" and "lower half" drivers.
+ The RTC driver uses a standard character driver framework.
+ drivers/timers/rtc.c
.
+ arch/
<architecture>/src/
<chip> directory for the specific processor <architecture> and for the specific <chip> RTC peripheral devices.
+ NuttX supports a low-level, two-part watchdog timer driver.
@@ -5197,7 +5257,7 @@ void board_led_off(int led);- Files supporting the watchdog timer can be found in the following locations: + Files supporting the watchdog timer driver can be found in the following locations:
drivers/watchdog.c
.
+ The generic, "upper half" watchdog timer driver resides at drivers/timers/watchdog.c
.
arch/
<architecture>/src/
<chip> directory for the specific processor <architecture> and for the specific <chip> watchdog timer peripheral devices.
Keypads vs. Keyboards Keyboards and keypads are really the same devices for NuttX.