From 7d12e1fd047f8abe9dc7c06abc97434007abd004 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 19 Jan 2011 20:31:20 +0000 Subject: [PATCH] Extend README git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3263 42af7a65-404d-4744-a932-0658087f49c3 --- drivers/README.txt | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/drivers/README.txt b/drivers/README.txt index ddc92a2b72..d0949e5142 100644 --- a/drivers/README.txt +++ b/drivers/README.txt @@ -4,7 +4,12 @@ README This directory contains various device drivers -- both block and character drivers as well as other more specialized drivers. -Files in this directory: +Contents: + - Files in this directory + - Subdirectories of this directory + - Skeleton files + +Files in this directory ^^^^^^^^^^^^^^^^^^^^^^^ can.c @@ -71,3 +76,15 @@ usbdev/ usbhost/ USB host drivers. See also include/nuttx/usb/usbhost.h + +Skeleton Files +^^^^^^^^^^^^^^ + +Skeleton files a "empty" frameworks for NuttX drivers. They are provided to +give you a good starting point if you want to create a new NuttX driver. +The following skeleton files are available: + + drivers/lcd/skeleton.c -- Skeleton LCD driver + drivers/mtd/skeleton.c -- Skeleton memory technology device drivers + drivers/net/skeleton.c -- Skeleton network/Ethernet drivers + drivers/usbhost/usbhost_skeleton.c -- Skeleton USB host class driver