Move LUFA compile time options to a new section in the application makefiles for clarity.
This commit is contained in:
		
							parent
							
								
									dfa547164a
								
							
						
					
					
						commit
						beb0b2bda0
					
				
					 52 changed files with 473 additions and 191 deletions
				
			
		| 
						 | 
				
			
			@ -122,6 +122,15 @@ OBJDIR = .
 | 
			
		|||
LUFA_PATH = ../../../..
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# LUFA library compile-time options
 | 
			
		||||
LUFA_OPTS  = USE_NONSTANDARD_DESCRIPTOR_NAMES
 | 
			
		||||
LUFA_OPTS += NO_STREAM_CALLBACKS
 | 
			
		||||
LUFA_OPTS += USB_DEVICE_ONLY
 | 
			
		||||
LUFA_OPTS += FIXED_CONTROL_ENDPOINT_SIZE=8
 | 
			
		||||
LUFA_OPTS += USE_SINGLE_DEVICE_CONFIGURATION
 | 
			
		||||
LUFA_OPTS += USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# List C source files here. (C dependencies are automatically generated.)
 | 
			
		||||
SRC = $(TARGET).c                                                 \
 | 
			
		||||
      Descriptors.c                                               \
 | 
			
		||||
| 
						 | 
				
			
			@ -192,11 +201,8 @@ CSTANDARD = -std=gnu99
 | 
			
		|||
 | 
			
		||||
 | 
			
		||||
# Place -D or -U options here for C sources
 | 
			
		||||
CDEFS  = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD)
 | 
			
		||||
CDEFS += -DUSE_NONSTANDARD_DESCRIPTOR_NAMES -DNO_STREAM_CALLBACKS -DUSB_DEVICE_ONLY
 | 
			
		||||
CDEFS += -DFIXED_CONTROL_ENDPOINT_SIZE=8 -DUSE_SINGLE_DEVICE_CONFIGURATION
 | 
			
		||||
CDEFS += -DUSE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
 | 
			
		||||
CDEFS += -DNO_DECODE_ETHERNET -DNO_DECODE_ARP -DNO_DECODE_ICMP -DNO_DECODE_IP -DNO_DECODE_TCP -DNO_DECODE_UDP -DNO_DECODE_DHCP
 | 
			
		||||
CDEFS  = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(patsubst %,-D%,$(LUFA_OPTS))
 | 
			
		||||
CDEFS += NO_DECODE_ETHERNET -DNO_DECODE_ARP -DNO_DECODE_ICMP -DNO_DECODE_IP -DNO_DECODE_TCP -DNO_DECODE_UDP -DNO_DECODE_DHCP
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Place -D or -U options here for ASM sources
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue