mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-06 15:03:22 +00:00
Compare commits
3 Commits
947191a797
...
10693c4569
Author | SHA1 | Date | |
---|---|---|---|
![]() |
10693c4569 | ||
![]() |
7da8aea1df | ||
![]() |
baae2503d5 |
@ -1,6 +1,6 @@
|
|||||||
version: 0.1
|
version: 0.1
|
||||||
cli:
|
cli:
|
||||||
version: 1.22.12
|
version: 1.22.15
|
||||||
plugins:
|
plugins:
|
||||||
sources:
|
sources:
|
||||||
- id: trunk
|
- id: trunk
|
||||||
@ -8,18 +8,18 @@ plugins:
|
|||||||
uri: https://github.com/trunk-io/plugins
|
uri: https://github.com/trunk-io/plugins
|
||||||
lint:
|
lint:
|
||||||
enabled:
|
enabled:
|
||||||
- renovate@39.243.0
|
- renovate@40.0.6
|
||||||
- prettier@3.5.3
|
- prettier@3.5.3
|
||||||
- trufflehog@3.88.23
|
- trufflehog@3.88.26
|
||||||
- yamllint@1.37.0
|
- yamllint@1.37.0
|
||||||
- bandit@1.8.3
|
- bandit@1.8.3
|
||||||
- terrascan@1.19.9
|
- terrascan@1.19.9
|
||||||
- trivy@0.61.0
|
- trivy@0.61.1
|
||||||
- taplo@0.9.3
|
- taplo@0.9.3
|
||||||
- ruff@0.11.5
|
- ruff@0.11.7
|
||||||
- isort@6.0.1
|
- isort@6.0.1
|
||||||
- markdownlint@0.44.0
|
- markdownlint@0.44.0
|
||||||
- oxipng@9.1.4
|
- oxipng@9.1.5
|
||||||
- svgo@3.3.2
|
- svgo@3.3.2
|
||||||
- actionlint@1.7.7
|
- actionlint@1.7.7
|
||||||
- flake8@7.2.0
|
- flake8@7.2.0
|
||||||
@ -28,7 +28,7 @@ lint:
|
|||||||
- shellcheck@0.10.0
|
- shellcheck@0.10.0
|
||||||
- black@25.1.0
|
- black@25.1.0
|
||||||
- git-diff-check
|
- git-diff-check
|
||||||
- gitleaks@8.24.3
|
- gitleaks@8.25.1
|
||||||
- clang-format@16.0.3
|
- clang-format@16.0.3
|
||||||
ignore:
|
ignore:
|
||||||
- linters: [ALL]
|
- linters: [ALL]
|
||||||
|
@ -108,7 +108,7 @@ lib_deps =
|
|||||||
[device-ui_base]
|
[device-ui_base]
|
||||||
lib_deps =
|
lib_deps =
|
||||||
# renovate: datasource=git-refs depName=meshtastic-device-ui packageName=https://github.com/meshtastic/device-ui gitBranch=master
|
# renovate: datasource=git-refs depName=meshtastic-device-ui packageName=https://github.com/meshtastic/device-ui gitBranch=master
|
||||||
https://github.com/meshtastic/device-ui/archive/33aa6890f7862d81c2bc1658f43eeea7a8081c6e.zip
|
https://github.com/meshtastic/device-ui/archive/aa38459f4e4c0bc6e4d1bda52d26393f0fcf1b97.zip
|
||||||
|
|
||||||
; Common libs for environmental measurements in telemetry module
|
; Common libs for environmental measurements in telemetry module
|
||||||
[environmental_base]
|
[environmental_base]
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
#include "./LCMEN2R13EFC1.h"
|
|
||||||
|
|
||||||
#ifdef MESHTASTIC_INCLUDE_NICHE_GRAPHICS
|
#ifdef MESHTASTIC_INCLUDE_NICHE_GRAPHICS
|
||||||
|
|
||||||
|
#include "./LCMEN2R13EFC1.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
#include "SPILock.h"
|
||||||
|
|
||||||
using namespace NicheGraphics::Drivers;
|
using namespace NicheGraphics::Drivers;
|
||||||
|
|
||||||
// Look up table: fast refresh, common electrode
|
// Look up table: fast refresh, common electrode
|
||||||
@ -150,6 +152,9 @@ void LCMEN213EFC1::reset()
|
|||||||
|
|
||||||
void LCMEN213EFC1::sendCommand(const uint8_t command)
|
void LCMEN213EFC1::sendCommand(const uint8_t command)
|
||||||
{
|
{
|
||||||
|
// Take firmware's SPI lock
|
||||||
|
spiLock->lock();
|
||||||
|
|
||||||
spi->beginTransaction(spiSettings);
|
spi->beginTransaction(spiSettings);
|
||||||
digitalWrite(pin_dc, LOW); // DC pin low indicates command
|
digitalWrite(pin_dc, LOW); // DC pin low indicates command
|
||||||
digitalWrite(pin_cs, LOW);
|
digitalWrite(pin_cs, LOW);
|
||||||
@ -157,6 +162,8 @@ void LCMEN213EFC1::sendCommand(const uint8_t command)
|
|||||||
digitalWrite(pin_cs, HIGH);
|
digitalWrite(pin_cs, HIGH);
|
||||||
digitalWrite(pin_dc, HIGH);
|
digitalWrite(pin_dc, HIGH);
|
||||||
spi->endTransaction();
|
spi->endTransaction();
|
||||||
|
|
||||||
|
spiLock->unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void LCMEN213EFC1::sendData(uint8_t data)
|
void LCMEN213EFC1::sendData(uint8_t data)
|
||||||
@ -166,6 +173,9 @@ void LCMEN213EFC1::sendData(uint8_t data)
|
|||||||
|
|
||||||
void LCMEN213EFC1::sendData(const uint8_t *data, uint32_t size)
|
void LCMEN213EFC1::sendData(const uint8_t *data, uint32_t size)
|
||||||
{
|
{
|
||||||
|
// Take firmware's SPI lock
|
||||||
|
spiLock->lock();
|
||||||
|
|
||||||
spi->beginTransaction(spiSettings);
|
spi->beginTransaction(spiSettings);
|
||||||
digitalWrite(pin_dc, HIGH); // DC pin HIGH indicates data, instead of command
|
digitalWrite(pin_dc, HIGH); // DC pin HIGH indicates data, instead of command
|
||||||
digitalWrite(pin_cs, LOW);
|
digitalWrite(pin_cs, LOW);
|
||||||
@ -183,6 +193,8 @@ void LCMEN213EFC1::sendData(const uint8_t *data, uint32_t size)
|
|||||||
digitalWrite(pin_cs, HIGH);
|
digitalWrite(pin_cs, HIGH);
|
||||||
digitalWrite(pin_dc, HIGH);
|
digitalWrite(pin_dc, HIGH);
|
||||||
spi->endTransaction();
|
spi->endTransaction();
|
||||||
|
|
||||||
|
spiLock->unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void LCMEN213EFC1::configFull()
|
void LCMEN213EFC1::configFull()
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
#ifdef MESHTASTIC_INCLUDE_NICHE_GRAPHICS
|
||||||
|
|
||||||
#include "./SSD16XX.h"
|
#include "./SSD16XX.h"
|
||||||
|
|
||||||
#ifdef MESHTASTIC_INCLUDE_NICHE_GRAPHICS
|
#include "SPILock.h"
|
||||||
|
|
||||||
using namespace NicheGraphics::Drivers;
|
using namespace NicheGraphics::Drivers;
|
||||||
|
|
||||||
SSD16XX::SSD16XX(uint16_t width, uint16_t height, UpdateTypes supported, uint8_t bufferOffsetX)
|
SSD16XX::SSD16XX(uint16_t width, uint16_t height, UpdateTypes supported, uint8_t bufferOffsetX)
|
||||||
@ -82,6 +85,9 @@ void SSD16XX::sendCommand(const uint8_t command)
|
|||||||
if (failed)
|
if (failed)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// Take firmware's SPI lock
|
||||||
|
spiLock->lock();
|
||||||
|
|
||||||
spi->beginTransaction(spiSettings);
|
spi->beginTransaction(spiSettings);
|
||||||
digitalWrite(pin_dc, LOW); // DC pin low indicates command
|
digitalWrite(pin_dc, LOW); // DC pin low indicates command
|
||||||
digitalWrite(pin_cs, LOW);
|
digitalWrite(pin_cs, LOW);
|
||||||
@ -89,6 +95,8 @@ void SSD16XX::sendCommand(const uint8_t command)
|
|||||||
digitalWrite(pin_cs, HIGH);
|
digitalWrite(pin_cs, HIGH);
|
||||||
digitalWrite(pin_dc, HIGH);
|
digitalWrite(pin_dc, HIGH);
|
||||||
spi->endTransaction();
|
spi->endTransaction();
|
||||||
|
|
||||||
|
spiLock->unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSD16XX::sendData(uint8_t data)
|
void SSD16XX::sendData(uint8_t data)
|
||||||
@ -103,6 +111,9 @@ void SSD16XX::sendData(const uint8_t *data, uint32_t size)
|
|||||||
if (failed)
|
if (failed)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// Take firmware's SPI lock
|
||||||
|
spiLock->lock();
|
||||||
|
|
||||||
spi->beginTransaction(spiSettings);
|
spi->beginTransaction(spiSettings);
|
||||||
digitalWrite(pin_dc, HIGH); // DC pin HIGH indicates data, instead of command
|
digitalWrite(pin_dc, HIGH); // DC pin HIGH indicates data, instead of command
|
||||||
digitalWrite(pin_cs, LOW);
|
digitalWrite(pin_cs, LOW);
|
||||||
@ -119,6 +130,8 @@ void SSD16XX::sendData(const uint8_t *data, uint32_t size)
|
|||||||
digitalWrite(pin_cs, HIGH);
|
digitalWrite(pin_cs, HIGH);
|
||||||
digitalWrite(pin_dc, HIGH);
|
digitalWrite(pin_dc, HIGH);
|
||||||
spi->endTransaction();
|
spi->endTransaction();
|
||||||
|
|
||||||
|
spiLock->unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSD16XX::configFullscreen()
|
void SSD16XX::configFullscreen()
|
||||||
|
@ -13,6 +13,7 @@ Avoid bloating everyone's protobuf code for our one-off UI implementations
|
|||||||
|
|
||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
|
|
||||||
|
#include "SPILock.h"
|
||||||
#include "SafeFile.h"
|
#include "SafeFile.h"
|
||||||
|
|
||||||
namespace NicheGraphics
|
namespace NicheGraphics
|
||||||
@ -46,6 +47,9 @@ template <typename T> class FlashData
|
|||||||
public:
|
public:
|
||||||
static bool load(T *data, const char *label)
|
static bool load(T *data, const char *label)
|
||||||
{
|
{
|
||||||
|
// Take firmware's SPI lock
|
||||||
|
concurrency::LockGuard guard(spiLock);
|
||||||
|
|
||||||
// Set false if we run into issues
|
// Set false if we run into issues
|
||||||
bool okay = true;
|
bool okay = true;
|
||||||
|
|
||||||
@ -103,14 +107,18 @@ template <typename T> class FlashData
|
|||||||
return okay;
|
return okay;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save module's custom data (settings?) to flash. Does use protobufs
|
// Save module's custom data (settings?) to flash. Doesn't use protobufs
|
||||||
|
// Takes the firmware's SPI lock, in case the files are stored on SD card
|
||||||
|
// Need to lock and unlock around specific FS methods, as the SafeFile class takes the lock for itself internally.
|
||||||
static void save(T *data, const char *label)
|
static void save(T *data, const char *label)
|
||||||
{
|
{
|
||||||
// Get a filename based on the label
|
// Get a filename based on the label
|
||||||
std::string filename = getFilename(label);
|
std::string filename = getFilename(label);
|
||||||
|
|
||||||
#ifdef FSCom
|
#ifdef FSCom
|
||||||
|
spiLock->lock();
|
||||||
FSCom.mkdir("/NicheGraphics");
|
FSCom.mkdir("/NicheGraphics");
|
||||||
|
spiLock->unlock();
|
||||||
|
|
||||||
auto f = SafeFile(filename.c_str(), true); // "true": full atomic. Write new data to temp file, then rename.
|
auto f = SafeFile(filename.c_str(), true); // "true": full atomic. Write new data to temp file, then rename.
|
||||||
|
|
||||||
@ -119,10 +127,10 @@ template <typename T> class FlashData
|
|||||||
// Calculate a hash of the data
|
// Calculate a hash of the data
|
||||||
uint32_t hash = getHash(data);
|
uint32_t hash = getHash(data);
|
||||||
|
|
||||||
|
spiLock->lock();
|
||||||
f.write((uint8_t *)data, sizeof(T)); // Write the actual data
|
f.write((uint8_t *)data, sizeof(T)); // Write the actual data
|
||||||
f.write((uint8_t *)&hash, sizeof(hash)); // Append the hash
|
f.write((uint8_t *)&hash, sizeof(hash)); // Append the hash
|
||||||
|
spiLock->unlock();
|
||||||
// f.flush();
|
|
||||||
|
|
||||||
bool writeSucceeded = f.close();
|
bool writeSucceeded = f.close();
|
||||||
|
|
||||||
@ -139,6 +147,9 @@ template <typename T> class FlashData
|
|||||||
inline void clearFlashData()
|
inline void clearFlashData()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// Take firmware's SPI lock, in case the files are stored on SD card
|
||||||
|
concurrency::LockGuard guard(spiLock);
|
||||||
|
|
||||||
#ifdef FSCom
|
#ifdef FSCom
|
||||||
File dir = FSCom.open("/NicheGraphics"); // Open the directory
|
File dir = FSCom.open("/NicheGraphics"); // Open the directory
|
||||||
File file = dir.openNextFile(); // Attempt to open the first file in the directory
|
File file = dir.openNextFile(); // Attempt to open the first file in the directory
|
||||||
|
@ -22,6 +22,8 @@ InkHUD::MessageStore::MessageStore(std::string label)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Write the contents of the MessageStore::messages object to flash
|
// Write the contents of the MessageStore::messages object to flash
|
||||||
|
// Takes the firmware's SPI lock during FS operations. Implemented for consistency, but only relevant when using SD card.
|
||||||
|
// Need to lock and unlock around specific FS methods, as the SafeFile class takes the lock for itself internally
|
||||||
void InkHUD::MessageStore::saveToFlash()
|
void InkHUD::MessageStore::saveToFlash()
|
||||||
{
|
{
|
||||||
assert(!filename.empty());
|
assert(!filename.empty());
|
||||||
@ -29,7 +31,9 @@ void InkHUD::MessageStore::saveToFlash()
|
|||||||
#ifdef FSCom
|
#ifdef FSCom
|
||||||
// Make the directory, if doesn't already exist
|
// Make the directory, if doesn't already exist
|
||||||
// This is the same directory accessed by NicheGraphics::FlashData
|
// This is the same directory accessed by NicheGraphics::FlashData
|
||||||
|
spiLock->lock();
|
||||||
FSCom.mkdir("/NicheGraphics");
|
FSCom.mkdir("/NicheGraphics");
|
||||||
|
spiLock->unlock();
|
||||||
|
|
||||||
// Open or create the file
|
// Open or create the file
|
||||||
// No "full atomic": don't save then rename
|
// No "full atomic": don't save then rename
|
||||||
@ -37,6 +41,9 @@ void InkHUD::MessageStore::saveToFlash()
|
|||||||
|
|
||||||
LOG_INFO("Saving messages in %s", filename.c_str());
|
LOG_INFO("Saving messages in %s", filename.c_str());
|
||||||
|
|
||||||
|
// Take firmware's SPI Lock while writing
|
||||||
|
spiLock->lock();
|
||||||
|
|
||||||
// 1st byte: how many messages will be written to store
|
// 1st byte: how many messages will be written to store
|
||||||
f.write(messages.size());
|
f.write(messages.size());
|
||||||
|
|
||||||
@ -51,6 +58,9 @@ void InkHUD::MessageStore::saveToFlash()
|
|||||||
LOG_DEBUG("Wrote message %u, length %u, text \"%s\"", (uint32_t)i, min(MAX_MESSAGE_SIZE, m.text.size()), m.text.c_str());
|
LOG_DEBUG("Wrote message %u, length %u, text \"%s\"", (uint32_t)i, min(MAX_MESSAGE_SIZE, m.text.size()), m.text.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Release firmware's SPI lock, because SafeFile::close needs it
|
||||||
|
spiLock->unlock();
|
||||||
|
|
||||||
bool writeSucceeded = f.close();
|
bool writeSucceeded = f.close();
|
||||||
|
|
||||||
if (!writeSucceeded) {
|
if (!writeSucceeded) {
|
||||||
@ -63,6 +73,7 @@ void InkHUD::MessageStore::saveToFlash()
|
|||||||
|
|
||||||
// Attempt to load the previous contents of the MessageStore:message deque from flash.
|
// Attempt to load the previous contents of the MessageStore:message deque from flash.
|
||||||
// Filename is controlled by the "label" parameter
|
// Filename is controlled by the "label" parameter
|
||||||
|
// Takes the firmware's SPI lock during FS operations. Implemented for consistency, but only relevant when using SD card.
|
||||||
void InkHUD::MessageStore::loadFromFlash()
|
void InkHUD::MessageStore::loadFromFlash()
|
||||||
{
|
{
|
||||||
// Hopefully redundant. Initial intention is to only load / save once per boot.
|
// Hopefully redundant. Initial intention is to only load / save once per boot.
|
||||||
@ -70,6 +81,9 @@ void InkHUD::MessageStore::loadFromFlash()
|
|||||||
|
|
||||||
#ifdef FSCom
|
#ifdef FSCom
|
||||||
|
|
||||||
|
// Take the firmware's SPI Lock, in case filesystem is on SD card
|
||||||
|
concurrency::LockGuard guard(spiLock);
|
||||||
|
|
||||||
// Check that the file *does* actually exist
|
// Check that the file *does* actually exist
|
||||||
if (!FSCom.exists(filename.c_str())) {
|
if (!FSCom.exists(filename.c_str())) {
|
||||||
LOG_WARN("'%s' not found. Using default values", filename.c_str());
|
LOG_WARN("'%s' not found. Using default values", filename.c_str());
|
||||||
|
Loading…
Reference in New Issue
Block a user