You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							631 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							631 B
						
					
					
				| // Combined include file for esp8266
 | |
| 
 | |
| 
 | |
| #include <ctype.h>
 | |
| #include <stdio.h>
 | |
| #include <stdlib.h>
 | |
| #include <string.h>
 | |
| 
 | |
| #ifdef FREERTOS
 | |
| #include <stdint.h>
 | |
| #include <espressif/esp_common.h>
 | |
| 
 | |
| #else
 | |
| #include <c_types.h>
 | |
| #include <ip_addr.h>
 | |
| #include <espconn.h>
 | |
| #include <ets_sys.h>
 | |
| #include <gpio.h>
 | |
| #include <mem.h>
 | |
| #include <osapi.h>
 | |
| #include <user_interface.h>
 | |
| #include <upgrade.h>
 | |
| #endif
 | |
| 
 | |
| #define FLASH_FN ICACHE_FLASH_ATTR
 | |
| 
 | |
| // this ideally would allow flash arrays, but alas works only for uint32_t
 | |
| #define FLASH_DATA ICACHE_RODATA_ATTR STORE_ATTR
 | |
| 
 | |
| #include "platform.h"
 | |
| #include "espmissingincludes.h"
 | |
| #include "esp_sdk_ver.h"
 | |
| 
 | |
| 
 |