Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d5dd896b45 | ||
|
|
bd7fa8f39c | ||
|
|
6395e931ce | ||
|
|
635fee6f7c | ||
|
|
dc2420d88e | ||
|
|
2fbc46cbe2 | ||
|
|
a003156ae1 | ||
|
|
913e1aa7ae | ||
|
|
8272515bd7 | ||
|
|
9a7f6a3020 | ||
|
|
fead702d9f | ||
|
|
eaf938f2fd | ||
|
|
8eefa63f45 | ||
|
|
9d48c436d8 | ||
|
|
82c5b971e9 |
1
.github/workflows/aunit.yml
vendored
1
.github/workflows/aunit.yml
vendored
@@ -21,7 +21,6 @@ jobs:
|
|||||||
git clone https://github.com/bxparks/AceRoutine
|
git clone https://github.com/bxparks/AceRoutine
|
||||||
git clone https://github.com/bxparks/AUnit
|
git clone https://github.com/bxparks/AUnit
|
||||||
git clone https://github.com/bxparks/AceCommon
|
git clone https://github.com/bxparks/AceCommon
|
||||||
git clone https://github.com/hsaturn/EspMock
|
|
||||||
- name: Verify tests
|
- name: Verify tests
|
||||||
run: |
|
run: |
|
||||||
make -C tests
|
make -C tests
|
||||||
|
|||||||
@@ -158,8 +158,8 @@ class MqttClient
|
|||||||
void dump()
|
void dump()
|
||||||
{
|
{
|
||||||
uint32_t ms=millis();
|
uint32_t ms=millis();
|
||||||
Serial << "MqttClient (" << clientId.c_str() << ") p=" << (uint64_t) parent
|
Serial << "MqttClient (" << clientId.c_str() << ") p=" << (int32_t) parent
|
||||||
<< " c=" << (uint64_t)client << (connected() ? " ON " : " OFF");
|
<< " c=" << (int32_t)client << (connected() ? " ON " : " OFF");
|
||||||
Serial << ", alive=" << (uint32_t)alive << '/' << ms << ", ka=" << keep_alive;
|
Serial << ", alive=" << (uint32_t)alive << '/' << ms << ", ka=" << keep_alive;
|
||||||
Serial << (client && client->connected() ? "" : "dis") << "connected";
|
Serial << (client && client->connected() ? "" : "dis") << "connected";
|
||||||
message.hexdump("entrant msg");
|
message.hexdump("entrant msg");
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
# Makefile to compile and run Arduino programs natively on Linux or MacOS.
|
# Makefile to compile and run Arduino programs natively on Linux or MacOS.
|
||||||
|
|
||||||
APP_NAME := local-tests
|
APP_NAME := local-tests
|
||||||
ARDUINO_LIBS := AUnit AceCommon AceTime TinyMqtt EspMock
|
ARDUINO_LIBS := AUnit AceCommon AceTime TinyMqtt ESP8266WiFi
|
||||||
include ../../../EpoxyDuino/EpoxyDuino.mk
|
include ../../../EpoxyDuino/EpoxyDuino.mk
|
||||||
|
|||||||
Reference in New Issue
Block a user