mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 04:59:55 +00:00 
			
		
		
		
	 a71fa82177
			
		
	
	a71fa82177
	
	
	
		
			
			* Fix thread safety issues in non-core locking * Add option to verify thread safety issues in lwip (core-lock assertion) * Make esp_sntp.h thread safe API * Fix sntp examples * Fix openthread libs Closes https://github.com/espressif/esp-idf/issues/9908 Closes https://github.com/espressif/esp-idf/issues/10502 Closes https://github.com/espressif/esp-idf/issues/10466
		
			
				
	
	
		
			17 lines
		
	
	
		
			503 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			503 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
 | |
|  *
 | |
|  * SPDX-License-Identifier: Apache-2.0
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #warning "sntp.h in IDF's lwip port folder is deprecated. Please include esp_sntp.h"
 | |
| /*
 | |
|  * This header is provided only for compatibility reasons for existing
 | |
|  * applications which directly include "sntp.h" from the IDF default paths.
 | |
|  * and will be removed in IDF v6.0.
 | |
|  * It is recommended to use "esp_sntp.h" from IDF's lwip port folder
 | |
|  */
 | |
| #include "esp_sntp.h"
 |