mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-15 09:45:06 +00:00
Merge branch 'master' into tft-gui-work
This commit is contained in:
commit
7cc5f8c422
1
.github/actions/setup-base/action.yml
vendored
1
.github/actions/setup-base/action.yml
vendored
@ -35,6 +35,7 @@ runs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -U --no-build-isolation --no-cache-dir "setuptools<72"
|
pip install -U --no-build-isolation --no-cache-dir "setuptools<72"
|
||||||
pip install -U platformio adafruit-nrfutil --no-build-isolation
|
pip install -U platformio adafruit-nrfutil --no-build-isolation
|
||||||
|
pip install -U poetry --no-build-isolation
|
||||||
pip install -U meshtastic --pre --no-build-isolation
|
pip install -U meshtastic --pre --no-build-isolation
|
||||||
|
|
||||||
- name: Upgrade platformio
|
- name: Upgrade platformio
|
||||||
|
@ -238,6 +238,7 @@ bool AdminModule::handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshta
|
|||||||
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(r->set_favorite_node);
|
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(r->set_favorite_node);
|
||||||
if (node != NULL) {
|
if (node != NULL) {
|
||||||
node->is_favorite = true;
|
node->is_favorite = true;
|
||||||
|
saveChanges(SEGMENT_DEVICESTATE, false);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -246,6 +247,7 @@ bool AdminModule::handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshta
|
|||||||
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(r->remove_favorite_node);
|
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(r->remove_favorite_node);
|
||||||
if (node != NULL) {
|
if (node != NULL) {
|
||||||
node->is_favorite = false;
|
node->is_favorite = false;
|
||||||
|
saveChanges(SEGMENT_DEVICESTATE, false);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -65,8 +65,8 @@
|
|||||||
#define HW_VENDOR meshtastic_HardwareModel_WIO_WM1110
|
#define HW_VENDOR meshtastic_HardwareModel_WIO_WM1110
|
||||||
#elif defined(TRACKER_T1000_E)
|
#elif defined(TRACKER_T1000_E)
|
||||||
#define HW_VENDOR meshtastic_HardwareModel_TRACKER_T1000_E
|
#define HW_VENDOR meshtastic_HardwareModel_TRACKER_T1000_E
|
||||||
#elif defined(ME25LS01)
|
#elif defined(ME25LS01_4Y10TD)
|
||||||
#define HW_VENDOR meshtastic_HardwareModel_ME25LS01
|
#define HW_VENDOR meshtastic_HardwareModel_ME25LS01_4Y10TD
|
||||||
#elif defined(PRIVATE_HW) || defined(FEATHER_DIY)
|
#elif defined(PRIVATE_HW) || defined(FEATHER_DIY)
|
||||||
#define HW_VENDOR meshtastic_HardwareModel_PRIVATE_HW
|
#define HW_VENDOR meshtastic_HardwareModel_PRIVATE_HW
|
||||||
#else
|
#else
|
||||||
|
@ -110,8 +110,8 @@ static const uint8_t SCK = PIN_SPI_SCK;
|
|||||||
#define PIN_EINK_BUSY (0 + 19) // EPD_BUSY
|
#define PIN_EINK_BUSY (0 + 19) // EPD_BUSY
|
||||||
#define PIN_EINK_DC (0 + 24) // EPD_D/C
|
#define PIN_EINK_DC (0 + 24) // EPD_D/C
|
||||||
#define PIN_EINK_RES (0 + 23) // EPD_RESET
|
#define PIN_EINK_RES (0 + 23) // EPD_RESET
|
||||||
#define PIN_EINK_SCLK (0 + 9) // EPD_SCLK
|
#define PIN_EINK_SCLK PIN_SPI1_SCK
|
||||||
#define PIN_EINK_MOSI (0 + 10) // EPD_MOSI
|
#define PIN_EINK_MOSI PIN_SPI1_MOSI
|
||||||
|
|
||||||
// supported modules list
|
// supported modules list
|
||||||
#define USE_LR1110
|
#define USE_LR1110
|
||||||
|
@ -11,7 +11,7 @@ board_upload.require_upload_port = yes
|
|||||||
|
|
||||||
;upload_port = /dev/ttyACM0
|
;upload_port = /dev/ttyACM0
|
||||||
|
|
||||||
build_flags = ${esp32_base.build_flags}
|
build_flags = ${esp32s3_base.build_flags}
|
||||||
-DESP32_S3_PICO
|
-DESP32_S3_PICO
|
||||||
;-DPRIVATE_HW
|
;-DPRIVATE_HW
|
||||||
-Ivariants/esp32-s3-pico
|
-Ivariants/esp32-s3-pico
|
||||||
@ -22,4 +22,4 @@ build_flags = ${esp32_base.build_flags}
|
|||||||
|
|
||||||
lib_deps = ${esp32s3_base.lib_deps}
|
lib_deps = ${esp32s3_base.lib_deps}
|
||||||
zinggjm/GxEPD2@^1.5.3
|
zinggjm/GxEPD2@^1.5.3
|
||||||
adafruit/Adafruit NeoPixel @ ^1.12.0
|
adafruit/Adafruit NeoPixel @ ^1.12.0
|
||||||
|
@ -15,4 +15,7 @@ Do not expect a working Meshtastic device with this target.
|
|||||||
#define USE_STM32WLx
|
#define USE_STM32WLx
|
||||||
#define MAX_NUM_NODES 10
|
#define MAX_NUM_NODES 10
|
||||||
|
|
||||||
#endif
|
#define LED_PIN PB5
|
||||||
|
#define LED_STATE_ON 1
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user