Compare commits

..

No commits in common. "69abcf2638263bb37922a7f730711a27031dd593" and "a9a2fb49d788de3bb5998239b30d2d972243b3c6" have entirely different histories.

7 changed files with 13 additions and 23 deletions

View File

@ -6,14 +6,7 @@ pipeline:
- pip install -U platformio
- pio run -e esp32 -e esp32_wifi -e esp32_bluetooth -e esp32_wifi_display
- pio run -e esp32 -e esp32_wifi -e esp32_bluetooth -e esp32_wifi_display --target buildfs
build_esp8266:
group: build
image: python
commands:
- pip install -U platformio
- pio run -e esp8266 -e esp8266_wifi
- pio run -e esp8266 -e esp8266_wifi --target buildfs
check:
image: python
- pip install -U platformio
- pio check -e esp8266 -e esp32 --skip-packages --fail-on-defect medium --severity medium --severity high --severity low --pattern 'src/*' --pattern 'lib/*'
- pio check -e esp32 --skip-packages --fail-on-defect medium --severity medium --severity high --severity low --pattern 'src/*' --pattern 'lib/*'

View File

@ -130,7 +130,7 @@ private:
void init();
#ifdef CONFIG_THREADED_INPUTS
static void readThread(void* data);
MainLoop* m_threadLoop = nullptr;
MainLoop* m_threadLoop;
static uint8_t m_threadBuf[sizeof(InputEvent) * 32];
QueueHandle_t m_queue;
StaticQueue_t m_threadQueue;

View File

@ -13,11 +13,9 @@ MainLoop::dispatch(const InputEvent& evt)
m_eventBuf.insert(evt);
}
#ifndef __NOINIT_ATTR // Pre-defined on esp32
#define __NOINIT_ATTR __attribute__ ((section (".noinit")))
#endif
//#ifdef BOARD_ESP32
__NOINIT_ATTR const char* s_lastTaskName;
//#endif
void
MainLoop::dispatchSync(const InputEvent& evt)
@ -88,7 +86,7 @@ MainLoop::loop()
frameSpeed = millis() - frameStart;
if (frameSpeed >= 23) { // TODO: Configure max frame time at build
const char* slowestName = (slowestTask->name ? slowestTask->name : "(Unnamed)");
Log.warning("Slow frame: %dms, %d tasks, longest task %s was %dms", frameSpeed, taskCount, slowestName, slowest);
Log.warning("Slow frame: %dms, %d tasks, longest task %s was %dms", frameSpeed, taskCount, slowestTask->name, slowest);
}
}

View File

@ -17,10 +17,9 @@ src_build_flags =
-DRENDERBUG_LED_PIN=14
-DRENDERBUG_LED_PACKING=RGB
-DDEFAULT_PATTERN_INDEX=0
-Wall
lib_deps_external =
fastled/FastLED@^3.5.0
thijse/ArduinoLog@^1.1.0
fastled/FastLED@^3.4.0
thijse/ArduinoLog@1.0.3
bblanchon/ArduinoJson@^6.17.3
LittleFS
@ -28,7 +27,7 @@ lib_deps_external =
src_build_flags =
-DCONFIG_U8DISPLAY
lib_deps =
olikraus/U8g2@^2.34.15
olikraus/U8g2@2.34.13
src_filter = "+<platform/arduino/U8Display.cpp>"
[config_mqtt]
@ -129,7 +128,7 @@ src_build_flags =
lib_deps =
${common_env_data.lib_deps_external}
arduino-libraries/NTPClient@^3.1.0
src_filter = "${common_env_data.src_filter}"
src_filter = "${common_env_data.src_filter} +<inputs/Serial.cpp>"
[env:esp32_bluetooth]
extends = env:esp32, config_bluetooth

View File

@ -27,9 +27,8 @@ STARTUP(BootOptions::initPins());
#ifdef CONFIG_MQTT
#include "platform/arduino/MQTTTelemetry.h"
#endif
void printNewline(Print* logOutput, int logLevel)
void printNewline(Print* logOutput)
{
(void)logLevel; // unused
logOutput->print("\r\n");
}
int printEspLog(const char* fmt, va_list args)
@ -181,7 +180,7 @@ Platform::getLocalTime(struct tm* timedata)
return false;
#elif defined(BOARD_ESP32)
time_t rawtime;
memset(&rawtime, sizeof(rawtime), 0);
memset(&rawtime, 0, sizeof(rawtime));
time(&rawtime);
(*timedata) = (*localtime(&rawtime));
return (timedata->tm_year > (2016-1990));

View File

@ -1,4 +1,5 @@
#pragma once
#include "Particle.h"
#include "../Figments/Figments.h"
class SerialInput: public InputSource {

View File

@ -89,7 +89,7 @@ void setup() {
if (Platform::bootopts.crashCount > 0) {
Log.warning(u8"Previous crash detected!!!! We're on attempt %d", Platform::bootopts.crashCount);
char lastTaskBuf[16];
char lastTaskBuf[15];
strncpy(lastTaskBuf, MainLoop::lastTaskName(), sizeof(lastTaskBuf));
lastTaskBuf[15] = 0;
Log.error(u8"Crash occurred in task %s", lastTaskBuf);