1 #ifndef CONFIG_GT_H 2 #define CONFIG_GT_H 3 4 #ifdef JERRY_FOR_IAR_CONFIG 5 6 #ifdef JERRY_IAR_GT 7 8 #include "mc_fs.h" 9 #include "mc_memory_config.h" 10 #include "mc_memory.h" 11 #include "mc_type.h" 12 #include "mc_hal_rtc.h" 13 14 #define INPUTJS_BUFFER_SIZE (32 * 1024) 15 #define SNAPSHOT_BUFFER_SIZE (24 * 1024) 16 17 // Maximum size for js and snapshot file 18 __no_init static uint8_t input_buffer[INPUTJS_BUFFER_SIZE] @ ACE_CACHE_ADDRESS; 19 __no_init static uint8_t snapshot_buffer[SNAPSHOT_BUFFER_SIZE] @ SNAPSHOT_24K_ADDRESS; 20 21 #endif // JERRY_IAR_GT 22 #endif // JERRY_FOR_IAR_CONFIG 23 24 #endif // CONFIG_GT_H 25