mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-11 16:07:13 +00:00

* Refactor and consolidate windowing logic * Trunk * Fixes * More * Fix braces and remove unused now variables. There was a brace in src/mesh/RadioLibInterface.cpp that was breaking compile on some architectures. Additionally, there were some brace errors in src/modules/Telemetry/AirQualityTelemetry.cpp src/modules/Telemetry/EnvironmentTelemetry.cpp src/mesh/wifi/WiFiAPClient.cpp Move throttle include in WifiAPClient.cpp to top. Add Default.h to sleep.cpp rest of files just remove unused now variables. * Remove a couple more meows --------- Co-authored-by: Tom Fifield <tom@tomfifield.net>
145 lines
4.6 KiB
C++
145 lines
4.6 KiB
C++
#include "RemoteHardwareModule.h"
|
|
#include "MeshService.h"
|
|
#include "NodeDB.h"
|
|
#include "RTC.h"
|
|
#include "Router.h"
|
|
#include "configuration.h"
|
|
#include "main.h"
|
|
#include <Throttle.h>
|
|
|
|
#define NUM_GPIOS 64
|
|
|
|
// Because (FIXME) we currently don't tell API clients status on sent messages
|
|
// we need to throttle our sending, so that if a gpio is bouncing up and down we
|
|
// don't generate more messages than the net can send. So we limit watch messages to
|
|
// a max of one change per 30 seconds
|
|
#define WATCH_INTERVAL_MSEC (30 * 1000)
|
|
|
|
/// Set pin modes for every set bit in a mask
|
|
static void pinModes(uint64_t mask, uint8_t mode)
|
|
{
|
|
for (uint64_t i = 0; i < NUM_GPIOS; i++) {
|
|
if (mask & (1ULL << i)) {
|
|
pinMode(i, mode);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Read all the pins mentioned in a mask
|
|
static uint64_t digitalReads(uint64_t mask)
|
|
{
|
|
uint64_t res = 0;
|
|
|
|
pinModes(mask, INPUT_PULLUP);
|
|
|
|
for (uint64_t i = 0; i < NUM_GPIOS; i++) {
|
|
uint64_t m = 1ULL << i;
|
|
if (mask & m) {
|
|
if (digitalRead(i)) {
|
|
res |= m;
|
|
}
|
|
}
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
RemoteHardwareModule::RemoteHardwareModule()
|
|
: ProtobufModule("remotehardware", meshtastic_PortNum_REMOTE_HARDWARE_APP, &meshtastic_HardwareMessage_msg),
|
|
concurrency::OSThread("RemoteHardwareModule")
|
|
{
|
|
// restrict to the gpio channel for rx
|
|
boundChannel = Channels::gpioChannel;
|
|
}
|
|
|
|
bool RemoteHardwareModule::handleReceivedProtobuf(const meshtastic_MeshPacket &req, meshtastic_HardwareMessage *pptr)
|
|
{
|
|
if (moduleConfig.remote_hardware.enabled) {
|
|
auto p = *pptr;
|
|
LOG_INFO("Received RemoteHardware type=%d\n", p.type);
|
|
|
|
switch (p.type) {
|
|
case meshtastic_HardwareMessage_Type_WRITE_GPIOS: {
|
|
// Print notification to LCD screen
|
|
screen->print("Write GPIOs\n");
|
|
|
|
pinModes(p.gpio_mask, OUTPUT);
|
|
for (uint8_t i = 0; i < NUM_GPIOS; i++) {
|
|
uint64_t mask = 1ULL << i;
|
|
if (p.gpio_mask & mask) {
|
|
digitalWrite(i, (p.gpio_value & mask) ? 1 : 0);
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case meshtastic_HardwareMessage_Type_READ_GPIOS: {
|
|
// Print notification to LCD screen
|
|
if (screen)
|
|
screen->print("Read GPIOs\n");
|
|
|
|
uint64_t res = digitalReads(p.gpio_mask);
|
|
|
|
// Send the reply
|
|
meshtastic_HardwareMessage r = meshtastic_HardwareMessage_init_default;
|
|
r.type = meshtastic_HardwareMessage_Type_READ_GPIOS_REPLY;
|
|
r.gpio_value = res;
|
|
r.gpio_mask = p.gpio_mask;
|
|
meshtastic_MeshPacket *p2 = allocDataProtobuf(r);
|
|
setReplyTo(p2, req);
|
|
myReply = p2;
|
|
break;
|
|
}
|
|
|
|
case meshtastic_HardwareMessage_Type_WATCH_GPIOS: {
|
|
watchGpios = p.gpio_mask;
|
|
lastWatchMsec = 0; // Force a new publish soon
|
|
previousWatch =
|
|
~watchGpios; // generate a 'previous' value which is guaranteed to not match (to force an initial publish)
|
|
enabled = true; // Let our thread run at least once
|
|
setInterval(2000); // Set a new interval so we'll run soon
|
|
LOG_INFO("Now watching GPIOs 0x%llx\n", watchGpios);
|
|
break;
|
|
}
|
|
|
|
case meshtastic_HardwareMessage_Type_READ_GPIOS_REPLY:
|
|
case meshtastic_HardwareMessage_Type_GPIOS_CHANGED:
|
|
break; // Ignore - we might see our own replies
|
|
|
|
default:
|
|
LOG_ERROR("Hardware operation %d not yet implemented! FIXME\n", p.type);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
int32_t RemoteHardwareModule::runOnce()
|
|
{
|
|
if (moduleConfig.remote_hardware.enabled && watchGpios) {
|
|
|
|
if (!Throttle::isWithinTimespanMs(lastWatchMsec, WATCH_INTERVAL_MSEC)) {
|
|
uint64_t curVal = digitalReads(watchGpios);
|
|
lastWatchMsec = millis();
|
|
|
|
if (curVal != previousWatch) {
|
|
previousWatch = curVal;
|
|
LOG_INFO("Broadcasting GPIOS 0x%llx changed!\n", curVal);
|
|
|
|
// Something changed! Tell the world with a broadcast message
|
|
meshtastic_HardwareMessage r = meshtastic_HardwareMessage_init_default;
|
|
r.type = meshtastic_HardwareMessage_Type_GPIOS_CHANGED;
|
|
r.gpio_value = curVal;
|
|
meshtastic_MeshPacket *p = allocDataProtobuf(r);
|
|
service->sendToMesh(p);
|
|
}
|
|
}
|
|
} else {
|
|
// No longer watching anything - stop using CPU
|
|
return disable();
|
|
}
|
|
|
|
return 2000; // Poll our GPIOs every 2000ms
|
|
} |