* SubGhz: add timeout to subghz_hal_async_tx_test_run * Removed full API from unit_test build config --------- Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: hedger <hedger@users.noreply.github.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			417 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			417 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
App(
 | 
						|
    appid="unit_tests",
 | 
						|
    apptype=FlipperAppType.STARTUP,
 | 
						|
    entry_point="unit_tests_on_system_start",
 | 
						|
    cdefines=["APP_UNIT_TESTS"],
 | 
						|
    requires=["system_settings"],
 | 
						|
    provides=["delay_test"],
 | 
						|
    order=100,
 | 
						|
)
 | 
						|
 | 
						|
App(
 | 
						|
    appid="delay_test",
 | 
						|
    name="Delay Test",
 | 
						|
    apptype=FlipperAppType.SYSTEM,
 | 
						|
    entry_point="delay_test_app",
 | 
						|
    stack_size=1 * 1024,
 | 
						|
    requires=["unit_tests"],
 | 
						|
    order=110,
 | 
						|
)
 |