mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-02 21:47:15 +00:00
Compare commits
2 Commits
ecd9f015d8
...
98411d408a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
98411d408a | ||
![]() |
040a34fca8 |
@ -51,4 +51,3 @@
|
|||||||
"url": "https://heltec.org/project/meshpocket/",
|
"url": "https://heltec.org/project/meshpocket/",
|
||||||
"vendor": "Heltec"
|
"vendor": "Heltec"
|
||||||
}
|
}
|
||||||
|
|
@ -93,8 +93,8 @@ build_src_filter = ${env.build_src_filter} -<platform/portduino/> -<graphics/nic
|
|||||||
; Common libs for communicating over TCP/IP networks such as MQTT
|
; Common libs for communicating over TCP/IP networks such as MQTT
|
||||||
[networking_base]
|
[networking_base]
|
||||||
lib_deps =
|
lib_deps =
|
||||||
# renovate: datasource=custom.pio depName=PubSubClient packageName=knolleary/library/PubSubClient
|
# renovate: datasource=custom.pio depName=TBPubSubClient packageName=thingsboard/library/TBPubSubClient
|
||||||
knolleary/PubSubClient@2.8
|
thingsboard/TBPubSubClient@2.12.1
|
||||||
# renovate: datasource=custom.pio depName=NTPClient packageName=arduino-libraries/library/NTPClient
|
# renovate: datasource=custom.pio depName=NTPClient packageName=arduino-libraries/library/NTPClient
|
||||||
arduino-libraries/NTPClient@3.2.1
|
arduino-libraries/NTPClient@3.2.1
|
||||||
# renovate: datasource=custom.pio depName=Syslog packageName=arcao/library/Syslog
|
# renovate: datasource=custom.pio depName=Syslog packageName=arcao/library/Syslog
|
||||||
|
@ -281,7 +281,7 @@ struct PubSubConfig {
|
|||||||
#if HAS_NETWORKING
|
#if HAS_NETWORKING
|
||||||
bool connectPubSub(const PubSubConfig &config, PubSubClient &pubSub, Client &client)
|
bool connectPubSub(const PubSubConfig &config, PubSubClient &pubSub, Client &client)
|
||||||
{
|
{
|
||||||
pubSub.setBufferSize(1024);
|
pubSub.setBufferSize(1024, 1024);
|
||||||
pubSub.setClient(client);
|
pubSub.setClient(client);
|
||||||
pubSub.setServer(config.serverAddr.c_str(), config.serverPort);
|
pubSub.setServer(config.serverAddr.c_str(), config.serverPort);
|
||||||
|
|
||||||
|
@ -9,5 +9,3 @@ const uint32_t g_ADigitalPinMap[] = {
|
|||||||
|
|
||||||
// P1
|
// P1
|
||||||
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47};
|
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47};
|
||||||
|
|
||||||
|
|
||||||
|
@ -79,12 +79,10 @@ No longer populated on PCB
|
|||||||
#define PIN_EINK_SCLK 22
|
#define PIN_EINK_SCLK 22
|
||||||
#define PIN_EINK_MOSI 20
|
#define PIN_EINK_MOSI 20
|
||||||
|
|
||||||
|
|
||||||
#define PIN_SPI1_MISO -1
|
#define PIN_SPI1_MISO -1
|
||||||
#define PIN_SPI1_MOSI PIN_EINK_MOSI
|
#define PIN_SPI1_MOSI PIN_EINK_MOSI
|
||||||
#define PIN_SPI1_SCK PIN_EINK_SCLK
|
#define PIN_SPI1_SCK PIN_EINK_SCLK
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GPS pins
|
* GPS pins
|
||||||
*/
|
*/
|
||||||
@ -131,5 +129,4 @@ No longer populated on PCB
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
Loading…
Reference in New Issue
Block a user