9 lines
		
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								from building import *
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								cwd     = GetCurrentDir()
							 | 
						||
| 
								 | 
							
								src     = Glob('*.c')
							 | 
						||
| 
								 | 
							
								CPPPATH = [cwd + '/../include']
							 | 
						||
| 
								 | 
							
								group   = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_HWTIMER'], CPPPATH = CPPPATH)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Return('group')
							 |