mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 00:21:44 +01:00 
			
		
		
		
	This wave generator example does following: - An analog signal generator. - Offering four kinds of waveform: sine, triangle, sawtooth, square. - Customer can select their expected waveform, frequency, etc. All of them can be configured in menuconfig.
		
			
				
	
	
		
			10 lines
		
	
	
		
			180 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			180 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
 | 
						|
# project subdirectory.
 | 
						|
#
 | 
						|
 | 
						|
PROJECT_NAME := wave_gen
 | 
						|
 | 
						|
include $(IDF_PATH)/make/project.mk
 | 
						|
 |