mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-21 22:50:55 +00:00
minor fixes for restoring warning-less emulation on host for debugging (using emuAsync, see main readme)
This commit is contained in:
parent
679a3b5a8d
commit
68c251226d
@ -35,7 +35,7 @@
|
|||||||
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
||||||
#warning then check http://<ip>/heap
|
#warning then check http://<ip>/heap
|
||||||
#endif // MMU_IRAM_HEAP
|
#endif // MMU_IRAM_HEAP
|
||||||
#ifndef DEBUG_ESP_OOM
|
#if !defined(DEBUG_ESP_OOM) && !defined(CORE_MOCK)
|
||||||
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
@ -396,7 +396,7 @@ void extendedCallback(Control* sender, int type, void* param)
|
|||||||
Serial.print(sender->label);
|
Serial.print(sender->label);
|
||||||
Serial.print("' = ");
|
Serial.print("' = ");
|
||||||
Serial.println(sender->value);
|
Serial.println(sender->value);
|
||||||
Serial.println(String("param = ") + String((int)param));
|
Serial.println(String("param = ") + String((long)param));
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
@ -443,6 +443,7 @@ void loop() {
|
|||||||
#if !defined(ESP32)
|
#if !defined(ESP32)
|
||||||
((void (*)())0xf00fdead)();
|
((void (*)())0xf00fdead)();
|
||||||
#endif
|
#endif
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
Serial.print('#');
|
Serial.print('#');
|
||||||
break;
|
break;
|
||||||
|
@ -1 +1,4 @@
|
|||||||
// placeholder
|
// placeholder
|
||||||
|
#if CORE_MOCK
|
||||||
|
#include "completeExample.cpp"
|
||||||
|
#endif
|
||||||
|
@ -16,7 +16,7 @@ DNSServer dnsServer;
|
|||||||
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
||||||
#warning then check http://<ip>/heap
|
#warning then check http://<ip>/heap
|
||||||
#endif // MMU_IRAM_HEAP
|
#endif // MMU_IRAM_HEAP
|
||||||
#ifndef DEBUG_ESP_OOM
|
#if !defined(DEBUG_ESP_OOM) && !defined(CORE_MOCK)
|
||||||
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@ DNSServer dnsServer;
|
|||||||
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
||||||
#warning then check http://<ip>/heap
|
#warning then check http://<ip>/heap
|
||||||
#endif // MMU_IRAM_HEAP
|
#endif // MMU_IRAM_HEAP
|
||||||
#ifndef DEBUG_ESP_OOM
|
#if !defined(DEBUG_ESP_OOM) && !defined(CORE_MOCK)
|
||||||
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@ DNSServer dnsServer;
|
|||||||
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
||||||
#warning then check http://<ip>/heap
|
#warning then check http://<ip>/heap
|
||||||
#endif // MMU_IRAM_HEAP
|
#endif // MMU_IRAM_HEAP
|
||||||
#ifndef DEBUG_ESP_OOM
|
#if !defined(DEBUG_ESP_OOM) && !defined(CORE_MOCK)
|
||||||
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user