diff options
Diffstat (limited to 'Projects/SerialToLCD')
| -rw-r--r-- | Projects/SerialToLCD/Config/LUFAConfig.h | 4 | ||||
| -rw-r--r-- | Projects/SerialToLCD/Descriptors.c | 10 | ||||
| -rw-r--r-- | Projects/SerialToLCD/Descriptors.h | 4 | ||||
| -rw-r--r-- | Projects/SerialToLCD/Doxygen.conf | 39 | ||||
| -rw-r--r-- | Projects/SerialToLCD/Lib/HD44780.c | 24 | ||||
| -rw-r--r-- | Projects/SerialToLCD/Lib/HD44780.h | 6 | ||||
| -rw-r--r-- | Projects/SerialToLCD/SerialToLCD.c | 4 | ||||
| -rw-r--r-- | Projects/SerialToLCD/SerialToLCD.h | 4 | ||||
| -rw-r--r-- | Projects/SerialToLCD/makefile | 2 | 
9 files changed, 60 insertions, 37 deletions
| diff --git a/Projects/SerialToLCD/Config/LUFAConfig.h b/Projects/SerialToLCD/Config/LUFAConfig.h index b378a6412..1bf1f19e6 100644 --- a/Projects/SerialToLCD/Config/LUFAConfig.h +++ b/Projects/SerialToLCD/Config/LUFAConfig.h @@ -1,13 +1,13 @@  /*               LUFA Library -     Copyright (C) Dean Camera, 2013. +     Copyright (C) Dean Camera, 2014.    dean [at] fourwalledcubicle [dot] com             www.lufa-lib.org  */  /* -  Copyright 2013  Dean Camera (dean [at] fourwalledcubicle [dot] com) +  Copyright 2014  Dean Camera (dean [at] fourwalledcubicle [dot] com)    Permission to use, copy, modify, distribute, and sell this    software and its documentation for any purpose is hereby granted diff --git a/Projects/SerialToLCD/Descriptors.c b/Projects/SerialToLCD/Descriptors.c index a2f11ab5a..c94458e77 100644 --- a/Projects/SerialToLCD/Descriptors.c +++ b/Projects/SerialToLCD/Descriptors.c @@ -1,13 +1,13 @@  /*               LUFA Library -     Copyright (C) Dean Camera, 2013. +     Copyright (C) Dean Camera, 2014.    dean [at] fourwalledcubicle [dot] com             www.lufa-lib.org  */  /* -  Copyright 2013  Dean Camera (dean [at] fourwalledcubicle [dot] com) +  Copyright 2014  Dean Camera (dean [at] fourwalledcubicle [dot] com)    Copyright 2012  Simon Foster (simon.foster [at] inbox [dot] com)    Permission to use, copy, modify, distribute, and sell this @@ -59,7 +59,7 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor =  {  	.Header                 = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device}, -	.USBSpecification       = VERSION_BCD(01.10), +	.USBSpecification       = VERSION_BCD(1,1,0),  	.Class                  = CDC_CSCP_CDCClass,  	.SubClass               = CDC_CSCP_NoSpecificSubclass,  	.Protocol               = CDC_CSCP_NoSpecificProtocol, @@ -68,7 +68,7 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor =  	.VendorID               = 0x03EB,  	.ProductID              = 0x204B, -	.ReleaseNumber          = VERSION_BCD(00.01), +	.ReleaseNumber          = VERSION_BCD(0,0,1),  	.ManufacturerStrIndex   = STRING_ID_Manufacturer,  	.ProductStrIndex        = STRING_ID_Product, @@ -120,7 +120,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =  			.Header                 = {.Size = sizeof(USB_CDC_Descriptor_FunctionalHeader_t), .Type = DTYPE_CSInterface},  			.Subtype                = CDC_DSUBTYPE_CSInterface_Header, -			.CDCSpecification       = VERSION_BCD(01.10), +			.CDCSpecification       = VERSION_BCD(1,1,0),  		},  	.CDC_Functional_ACM = diff --git a/Projects/SerialToLCD/Descriptors.h b/Projects/SerialToLCD/Descriptors.h index f6619296d..ed26aeed1 100644 --- a/Projects/SerialToLCD/Descriptors.h +++ b/Projects/SerialToLCD/Descriptors.h @@ -1,13 +1,13 @@  /*               LUFA Library -     Copyright (C) Dean Camera, 2013. +     Copyright (C) Dean Camera, 2014.    dean [at] fourwalledcubicle [dot] com             www.lufa-lib.org  */  /* -  Copyright 2013  Dean Camera (dean [at] fourwalledcubicle [dot] com) +  Copyright 2014  Dean Camera (dean [at] fourwalledcubicle [dot] com)    Copyright 2012  Simon Foster (simon.foster [at] inbox [dot] com)    Permission to use, copy, modify, distribute, and sell this diff --git a/Projects/SerialToLCD/Doxygen.conf b/Projects/SerialToLCD/Doxygen.conf index 87ea5dc93..2d6ebaf8f 100644 --- a/Projects/SerialToLCD/Doxygen.conf +++ b/Projects/SerialToLCD/Doxygen.conf @@ -1,4 +1,4 @@ -# Doxyfile 1.8.5 +# Doxyfile 1.8.6  # This file describes the settings to be used by the documentation system  # doxygen (www.doxygen.org) for a project. @@ -73,12 +73,14 @@ CREATE_SUBDIRS         = NO  # The OUTPUT_LANGUAGE tag is used to specify the language in which all  # documentation generated by doxygen is written. Doxygen will use this  # information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese- -# Traditional, Croatian, Czech, Danish, Dutch, English, Esperanto, Farsi, -# Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en, -# Korean, Korean-en, Latvian, Norwegian, Macedonian, Persian, Polish, -# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, -# Turkish, Ukrainian and Vietnamese. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese.  # The default value is: English.  OUTPUT_LANGUAGE        = English @@ -510,6 +512,13 @@ HIDE_SCOPE_NAMES       = NO  SHOW_INCLUDE_FILES     = YES +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC  = NO +  # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include  # files with double quotes in the documentation rather than with sharp brackets.  # The default value is: NO. @@ -531,7 +540,8 @@ SORT_MEMBER_DOCS       = YES  # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief  # descriptions of file, namespace and class members alphabetically by member -# name. If set to NO the members will appear in declaration order. +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list.  # The default value is: NO.  SORT_BRIEF_DOCS        = NO @@ -2052,6 +2062,13 @@ CLASS_DIAGRAMS         = NO  MSCGEN_PATH            = +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH               = +  # If set to YES, the inheritance and collaboration graphs will hide inheritance  # and usage relations if the target is undocumented or is not a class.  # The default value is: YES. @@ -2252,6 +2269,12 @@ DOTFILE_DIRS           =  MSCFILE_DIRS           = +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS           = +  # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes  # that will be shown in the graph. If the number of nodes in a graph becomes  # larger than this value, doxygen will truncate the graph, which is visualized diff --git a/Projects/SerialToLCD/Lib/HD44780.c b/Projects/SerialToLCD/Lib/HD44780.c index cd825f8ef..a91e79310 100644 --- a/Projects/SerialToLCD/Lib/HD44780.c +++ b/Projects/SerialToLCD/Lib/HD44780.c @@ -1,13 +1,13 @@  /*               LUFA Library -     Copyright (C) Dean Camera, 2013. +     Copyright (C) Dean Camera, 2014.    dean [at] fourwalledcubicle [dot] com             www.lufa-lib.org  */  /* -  Copyright 2013  Dean Camera (dean [at] fourwalledcubicle [dot] com) +  Copyright 2014  Dean Camera (dean [at] fourwalledcubicle [dot] com)    Copyright 2012  Simon Foster (simon.foster [at] inbox [dot] com)    Permission to use, copy, modify, distribute, and sell this @@ -33,21 +33,21 @@  static void HD44780_WriteNibble(const uint8_t nib)  { -	/* Read PORTD and clear the ENABLE and PD0..3 bits  +	/* Read PORTD and clear the ENABLE and PD0..3 bits  	   then OR in the data */ -	 +  	PORTD = (PORTD & ~(ENABLE | LO4_MASK)) | (nib & LO4_MASK); -	 -	/* Enforce address setup time (tAS) 60ns  -	   60 @ 16MHz = <1   + +	/* Enforce address setup time (tAS) 60ns +	   60 @ 16MHz = <1  	   Let's us a few NOPs for good measure */  	asm volatile("nop\n\t"  	             "nop\n\t"  	             :: ); -	 +  	/* Take enable high and enforce Enable High time (tEH=450ns)  	   450ns @ 16MHz = 7.2 => 7 NOPs */ -	    +  	PORTD |= ENABLE;  	asm volatile("nop\n\t" @@ -63,7 +63,7 @@ static void HD44780_WriteNibble(const uint8_t nib)  	/* Take enable low and enforce Enable Low time (tEL=500ns)  	   500ns @ 16MHz = 8.0 => 7 NOPs */  	PORTD &= ~ENABLE; -	 +  	asm volatile("nop\n\t"  	             "nop\n\t"  	             "nop\n\t" @@ -90,11 +90,11 @@ static void HD44780_PowerUp4Bit(void)  	/* Wait for more than 4.1 ms */  	_delay_ms(5);  	HD44780_WriteNibble(0x03);        // FN_SET 8-bit -	 +  	/* Wait for more than 100 µs */  	_delay_us(100);  	HD44780_WriteNibble(0x03);        // FN_SET 8-bit -	 +  	/* From now on we must allow 40us for each command */  	_delay_us(50);  	HD44780_WriteNibble(0x02);        // FN_SET 4-bit diff --git a/Projects/SerialToLCD/Lib/HD44780.h b/Projects/SerialToLCD/Lib/HD44780.h index 509f71448..b6dbe905e 100644 --- a/Projects/SerialToLCD/Lib/HD44780.h +++ b/Projects/SerialToLCD/Lib/HD44780.h @@ -1,13 +1,13 @@  /*               LUFA Library -     Copyright (C) Dean Camera, 2013. +     Copyright (C) Dean Camera, 2014.    dean [at] fourwalledcubicle [dot] com             www.lufa-lib.org  */  /* -  Copyright 2013  Dean Camera (dean [at] fourwalledcubicle [dot] com) +  Copyright 2014  Dean Camera (dean [at] fourwalledcubicle [dot] com)    Copyright 2012  Simon Foster (simon.foster [at] inbox [dot] com)    Permission to use, copy, modify, distribute, and sell this @@ -36,7 +36,7 @@  #ifndef _HD44780_H_  #define _HD44780_H_ -	 +  	/* Includes: */  		#include <avr/io.h>  		#include <util/delay.h> diff --git a/Projects/SerialToLCD/SerialToLCD.c b/Projects/SerialToLCD/SerialToLCD.c index 21a5d68cb..21588c947 100644 --- a/Projects/SerialToLCD/SerialToLCD.c +++ b/Projects/SerialToLCD/SerialToLCD.c @@ -1,13 +1,13 @@  /*               LUFA Library -     Copyright (C) Dean Camera, 2013. +     Copyright (C) Dean Camera, 2014.    dean [at] fourwalledcubicle [dot] com             www.lufa-lib.org  */  /* -  Copyright 2013  Dean Camera (dean [at] fourwalledcubicle [dot] com) +  Copyright 2014  Dean Camera (dean [at] fourwalledcubicle [dot] com)    Copyright 2012  Simon Foster (simon.foster [at] inbox [dot] com)    Permission to use, copy, modify, distribute, and sell this diff --git a/Projects/SerialToLCD/SerialToLCD.h b/Projects/SerialToLCD/SerialToLCD.h index bafc03c27..73455b1d4 100644 --- a/Projects/SerialToLCD/SerialToLCD.h +++ b/Projects/SerialToLCD/SerialToLCD.h @@ -1,13 +1,13 @@  /*               LUFA Library -     Copyright (C) Dean Camera, 2013. +     Copyright (C) Dean Camera, 2014.    dean [at] fourwalledcubicle [dot] com             www.lufa-lib.org  */  /* -  Copyright 2013  Dean Camera (dean [at] fourwalledcubicle [dot] com) +  Copyright 2014  Dean Camera (dean [at] fourwalledcubicle [dot] com)    Copyright 2012  Simon Foster (simon.foster [at] inbox [dot] com)    Permission to use, copy, modify, distribute, and sell this diff --git a/Projects/SerialToLCD/makefile b/Projects/SerialToLCD/makefile index 96d173392..b7e6d4211 100644 --- a/Projects/SerialToLCD/makefile +++ b/Projects/SerialToLCD/makefile @@ -1,6 +1,6 @@  #  #             LUFA Library -#     Copyright (C) Dean Camera, 2013. +#     Copyright (C) Dean Camera, 2014.  #  #  dean [at] fourwalledcubicle [dot] com  #           www.lufa-lib.org | 
