diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 293b7d683c..f68dc3d796 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@
Last Updated: December 19, 2011
+Last Updated: December 21, 2011
@@ -127,7 +127,8 @@ 6.3.9 USB Host-Side Drivers+ Files supporting PWM can be found in the following locations: +
include/nuttx/pwm.h
.
This header file includes both the application level interface to the PWM driver as well as the interface between the "upper half" and "lower half" drivers.
The PWM module uses a standard character driver framework.
However, since the PWM driver is a devices control interface and not a data transfer interface,
the majority of the functionality available to the application is implemented in driver ioctl calls.
drivers/pwm.c
.
arch/
<architecture>/src/
<chip> directory for the specific processor <architecture> and for the specific <chip> analog peripheral devices.
+ arch/
<architecture>/src/
<chip> directory for the specific processor <architecture> and for the specific <chip> PWM peripheral devices.
+ NuttX supports only a very low-level CAN driver. + This driver supports only the data exchange and does not include any high-level CAN protocol. + The NuttX CAN driver is split into two parts: +
++ Files supporting CAN can be found in the following locations: +
+include/nuttx/can.h
.
+ This header file includes both the application level interface to the CAN driver as well as the interface between the "upper half" and "lower half" drivers.
+ The CAN module uses a standard character driver framework.
+ drivers/can.c
.
+ arch/
<architecture>/src/
<chip> directory for the specific processor <architecture> and for the specific <chip> CAN peripheral devices.
+ CONFIG_CAN
: Enables CAN support
+ CONFIG_CAN_FIFOSIZE
: The size of the circular buffer of CAN messages. Default: 8
+ CONFIG_CAN_NPENDINGRTR
: The size of the list of pending RTR requests. Default: 4
+