aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host
diff options
context:
space:
mode:
Diffstat (limited to 'Demos/Host')
-rw-r--r--Demos/Host/LowLevel/PrinterHost/PrinterHost.c14
-rw-r--r--Demos/Host/LowLevel/PrinterHost/makefile2
-rw-r--r--Demos/Host/LowLevel/makefile4
3 files changed, 13 insertions, 7 deletions
diff --git a/Demos/Host/LowLevel/PrinterHost/PrinterHost.c b/Demos/Host/LowLevel/PrinterHost/PrinterHost.c
index 79e6f9ee8..6bbacab0a 100644
--- a/Demos/Host/LowLevel/PrinterHost/PrinterHost.c
+++ b/Demos/Host/LowLevel/PrinterHost/PrinterHost.c
@@ -28,15 +28,17 @@
this software.
*/
-/*
- USB Printer host demo application.
-
- ** NOT CURRENTLY FUNCTIONAL - DO NOT USE **
-*/
+/** \file
+ *
+ * Main source file for the PrinterHost demo. This file contains the main tasks of
+ * the demo and is responsible for the initial application hardware configuration.
+ */
#include "PrinterHost.h"
-
+/** Main program entry point. This routine configures the hardware required by the application, then
+ * starts the scheduler to run the application tasks.
+ */
int main(void)
{
SetupHardware();
diff --git a/Demos/Host/LowLevel/PrinterHost/makefile b/Demos/Host/LowLevel/PrinterHost/makefile
index ab2eaab23..a56d9f2a8 100644
--- a/Demos/Host/LowLevel/PrinterHost/makefile
+++ b/Demos/Host/LowLevel/PrinterHost/makefile
@@ -60,7 +60,7 @@
# MCU name
-MCU = at90usb647
+MCU = at90usb1287
# Target board (see library "Board Types" documentation, USER or blank for projects not requiring
diff --git a/Demos/Host/LowLevel/makefile b/Demos/Host/LowLevel/makefile
index 82661fffc..d118a25c8 100644
--- a/Demos/Host/LowLevel/makefile
+++ b/Demos/Host/LowLevel/makefile
@@ -32,6 +32,9 @@ all:
make -C MouseHostWithParser clean
make -C MouseHostWithParser all
+ make -C PrinterHost clean
+ make -C PrinterHost all
+
make -C StillImageHost clean
make -C StillImageHost all
@@ -43,4 +46,5 @@ all:
make -C MassStorageHost $@
make -C MouseHost $@
make -C MouseHostWithParser $@
+ make -C PrinterHost $@
make -C StillImageHost $@