mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-21 17:40:54 +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 then check http://<ip>/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
|
||||
#endif
|
||||
#endif
|
||||
@ -396,7 +396,7 @@ void extendedCallback(Control* sender, int type, void* param)
|
||||
Serial.print(sender->label);
|
||||
Serial.print("' = ");
|
||||
Serial.println(sender->value);
|
||||
Serial.println(String("param = ") + String((int)param));
|
||||
Serial.println(String("param = ") + String((long)param));
|
||||
}
|
||||
|
||||
void setup() {
|
||||
@ -443,6 +443,7 @@ void loop() {
|
||||
#if !defined(ESP32)
|
||||
((void (*)())0xf00fdead)();
|
||||
#endif
|
||||
break;
|
||||
default:
|
||||
Serial.print('#');
|
||||
break;
|
||||
|
@ -1 +1,4 @@
|
||||
// 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 then check http://<ip>/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
|
||||
#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 then check http://<ip>/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
|
||||
#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 then check http://<ip>/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
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user