aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-26 04:46:31 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-26 04:46:31 +0000
commit5aa2b26261389cfbdfae8e793be4b8150ddc7a0a (patch)
tree98cd416fe1b9407956892a22e5b01b3018ccbb09 /Demos/Host/ClassDriver/makefile
parentf37d21bbe961a72e4d6527767aacf843e3af412c (diff)
downloadlufa-5aa2b26261389cfbdfae8e793be4b8150ddc7a0a.tar.gz
lufa-5aa2b26261389cfbdfae8e793be4b8150ddc7a0a.tar.bz2
lufa-5aa2b26261389cfbdfae8e793be4b8150ddc7a0a.zip
Added new RNDIS Host class driver and the beginnings of a RNDISEthernetHost Class Driver demo.
Fixed all Class drivers to ensure they have appropriate guards on each function to ensure the device is enumerated before running, fixed error codes on all guards to return "DeviceDisconnected" where possble. Renamed HOST_SENDCONTROL_DeviceDisconnect enum value to HOST_SENDCONTROL_DeviceDisconnected to be in line with the rest of the library enum error codes.
Diffstat (limited to 'Demos/Host/ClassDriver/makefile')
-rw-r--r--Demos/Host/ClassDriver/makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Demos/Host/ClassDriver/makefile b/Demos/Host/ClassDriver/makefile
index 675ddfdc7..e7ad330d4 100644
--- a/Demos/Host/ClassDriver/makefile
+++ b/Demos/Host/ClassDriver/makefile
@@ -41,6 +41,9 @@ all:
make -C PrinterHost clean
make -C PrinterHost all
+ make -C RNDISEthernetHost clean
+ make -C RNDISEthernetHost all
+
make -C StillImageHost clean
make -C StillImageHost all
@@ -53,4 +56,5 @@ all:
make -C MouseHostWithParser $@
make -C MassStorageHost $@
make -C PrinterHost $@
+ make -C RNDISEthernetHost $@
make -C StillImageHost $@