forked from mfulz_github/qmk_firmware
Add PrinterHost to the project file and Host LowLevel directory makefile.
This commit is contained in:
parent
2a90f66de2
commit
3ee3ed2d6d
|
@ -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();
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
|
||||
|
||||
# MCU name
|
||||
MCU = at90usb647
|
||||
MCU = at90usb1287
|
||||
|
||||
|
||||
# Target board (see library "Board Types" documentation, USER or blank for projects not requiring
|
||||
|
|
|
@ -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 $@
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -28,6 +28,7 @@
|
|||
* - Added new EEPROM and FLASH buffer versions of the Endpoint and Pipe stream functions
|
||||
* - Added new USE_FLASH_DESCRIPTORS and TOTAL_NUM_CONFIGURATIONS compile time options
|
||||
* - Added support for the new ATMEGA32U2, ATMEGA16U2 and ATMEGA8U2 AVR models
|
||||
* - Added new PrinterHost demo (thanks to John Andrews)
|
||||
*
|
||||
* <b>Changed:</b>
|
||||
* - Deprecated psuedo-scheduler and removed dynamic memory allocator from the library (first no longer needed and second unused)
|
||||
|
|
Loading…
Reference in New Issue