Merge branch '0_15' into bus-config

This commit is contained in:
Blaž Kristan
2024-09-12 08:49:04 +02:00
33 changed files with 373 additions and 279 deletions

View File

@@ -645,4 +645,12 @@
#define HW_PIN_MISOSPI MISO
#endif
// IRAM_ATTR for 8266 with 32Kb IRAM causes error: section `.text1' will not fit in region `iram1_0_seg'
// this hack removes the IRAM flag for some 1D/2D functions - somewhat slower, but it solves problems with some older 8266 chips
#ifdef WLED_SAVE_IRAM
#define IRAM_ATTR_YN
#else
#define IRAM_ATTR_YN IRAM_ATTR
#endif
#endif