mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-21 17:40:54 +00:00
Merge pull request #251 from d-a-v/minorfixes
minor fixes for restoring warning-less emulation on host
This commit is contained in:
commit
c7a9438149
@ -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,8 @@ 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.print("param = ");
|
||||
Serial.println((long)param);
|
||||
}
|
||||
|
||||
void setup() {
|
||||
@ -443,6 +444,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
|
||||
@ -67,7 +67,8 @@ void buttonCallback(Control* sender, int type)
|
||||
|
||||
void buttonExample(Control* sender, int type, void* param)
|
||||
{
|
||||
Serial.println(String("param: ") + String(long(param)));
|
||||
Serial.print("param: ");
|
||||
Serial.println(long(param));
|
||||
switch (type)
|
||||
{
|
||||
case B_DOWN:
|
||||
|
@ -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
|
||||
@ -72,7 +72,8 @@ void buttonCallback(Control* sender, int type)
|
||||
|
||||
void buttonExample(Control* sender, int type, void* param)
|
||||
{
|
||||
Serial.println(String("param: ") + String(long(param)));
|
||||
Serial.print("param: ");
|
||||
Serial.println(long(param));
|
||||
switch (type)
|
||||
{
|
||||
case B_DOWN:
|
||||
|
@ -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
|
||||
@ -66,7 +66,8 @@ void buttonCallback(Control* sender, int type)
|
||||
|
||||
void buttonExample(Control* sender, int type, void* param)
|
||||
{
|
||||
Serial.println(String("param: ") + String(long(param)));
|
||||
Serial.print("param: ");
|
||||
Serial.println(long(param));
|
||||
switch (type)
|
||||
{
|
||||
case B_DOWN:
|
||||
|
Loading…
Reference in New Issue
Block a user