mirror of https://github.com/meshcore-dev/MeshCore
4 changed files with 257 additions and 0 deletions
@ -0,0 +1,45 @@ |
|||||
|
{ |
||||
|
"build": { |
||||
|
"arduino": { |
||||
|
"ldscript": "esp32s3_out.ld", |
||||
|
"partitions": "default.csv", |
||||
|
"memory_type": "qio_qspi" |
||||
|
}, |
||||
|
"core": "esp32", |
||||
|
"extra_flags": [ |
||||
|
"-DARDUINO_LILYGO_T3_S3_V1_X", |
||||
|
"-DBOARD_HAS_PSRAM", |
||||
|
"-DARDUINO_USB_CDC_ON_BOOT=1", |
||||
|
"-DARDUINO_RUNNING_CORE=1", |
||||
|
"-DARDUINO_EVENT_RUNNING_CORE=1", |
||||
|
"-DARDUINO_USB_MODE=1" |
||||
|
], |
||||
|
"f_cpu": "240000000L", |
||||
|
"f_flash": "80000000L", |
||||
|
"flash_mode": "qio", |
||||
|
"mcu": "esp32s3", |
||||
|
"variant": "esp32s3" |
||||
|
}, |
||||
|
"connectivity": [ |
||||
|
"wifi" |
||||
|
], |
||||
|
"debug": { |
||||
|
"openocd_target": "esp32s3.cfg" |
||||
|
}, |
||||
|
"frameworks": [ |
||||
|
"arduino", |
||||
|
"espidf" |
||||
|
], |
||||
|
"name": "Ebyte EoRa-S3-XXXTB Radio", |
||||
|
"upload": { |
||||
|
"flash_size": "4MB", |
||||
|
"maximum_ram_size": 327680, |
||||
|
"maximum_size": 4194304, |
||||
|
"use_1200bps_touch": true, |
||||
|
"wait_for_upload_port": true, |
||||
|
"require_upload_port": true, |
||||
|
"speed": 460800 |
||||
|
}, |
||||
|
"url": "https://www.cdebyte.com/products/EoRa-S3-900TB", |
||||
|
"vendor": "Chengdu Ebyte Electronic Technology Co., Ltd" |
||||
|
} |
||||
@ -0,0 +1,135 @@ |
|||||
|
[Ebyte_EoRa-S3] |
||||
|
extends = esp32_base |
||||
|
board = ebyte_eora-s3 |
||||
|
build_flags = |
||||
|
${esp32_base.build_flags} |
||||
|
-I variants/ebyte_eora_s3 |
||||
|
-D EBYTE_EORA_S3 |
||||
|
-D P_LORA_DIO_1=33 |
||||
|
-D P_LORA_NSS=7 |
||||
|
-D P_LORA_RESET=8 ; RADIOLIB_NC |
||||
|
-D P_LORA_BUSY=34 |
||||
|
-D P_LORA_SCLK=5 |
||||
|
-D P_LORA_MISO=3 |
||||
|
-D P_LORA_MOSI=6 |
||||
|
-D P_LORA_TX_LED=37 |
||||
|
-D PIN_VBAT_READ=1 |
||||
|
-D PIN_USER_BTN=0 |
||||
|
-D PIN_BOARD_SDA=18 |
||||
|
-D PIN_BOARD_SCL=17 |
||||
|
-D PIN_OLED_RESET=21 |
||||
|
|
||||
|
; SD_DAT0/MISO - GPIO2 |
||||
|
; SD_DAT1 - GPIO4 |
||||
|
; SD_CMD/MOSI - GPIO11 |
||||
|
; SD_DAT2 - GPIO112 |
||||
|
; SD_DAT3/CS - GPIO113 |
||||
|
; SD_CLK - GPIO114 |
||||
|
|
||||
|
-D SX126X_DIO2_AS_RF_SWITCH=true |
||||
|
-D SX126X_DIO3_TCXO_VOLTAGE=1.8 |
||||
|
-D SX126X_CURRENT_LIMIT=140 |
||||
|
-D RADIO_CLASS=CustomSX1262 |
||||
|
-D WRAPPER_CLASS=CustomSX1262Wrapper |
||||
|
-D LORA_TX_POWER=22 |
||||
|
-D SX126X_RX_BOOSTED_GAIN=1 |
||||
|
build_src_filter = ${esp32_base.build_src_filter} |
||||
|
+<../variants/ebyte_eora_s3> |
||||
|
lib_deps = |
||||
|
${esp32_base.lib_deps} |
||||
|
adafruit/Adafruit SSD1306 @ ^2.5.13 |
||||
|
|
||||
|
; === EByte EORA_S3 with SX1262 environments === |
||||
|
[env:Ebyte_EoRa-S3_Repeater] |
||||
|
extends = Ebyte_EoRa-S3 |
||||
|
build_flags = |
||||
|
${Ebyte_EoRa-S3.build_flags} |
||||
|
-D DISPLAY_CLASS=SSD1306Display |
||||
|
-D ADVERT_NAME='"EORA_S3-1262 Repeater"' |
||||
|
-D ADVERT_LAT=0.0 |
||||
|
-D ADVERT_LON=0.0 |
||||
|
-D ADMIN_PASSWORD='"password"' |
||||
|
-D MAX_NEIGHBOURS=8 |
||||
|
; -D MESH_PACKET_LOGGING=1 |
||||
|
; -D MESH_DEBUG=1 |
||||
|
build_src_filter = ${Ebyte_EoRa-S3.build_src_filter} |
||||
|
+<helpers/ui/SSD1306Display.cpp> |
||||
|
+<../examples/simple_repeater> |
||||
|
lib_deps = |
||||
|
${Ebyte_EoRa-S3.lib_deps} |
||||
|
${esp32_ota.lib_deps} |
||||
|
|
||||
|
[env:Ebyte_EoRa-S3_terminal_chat] |
||||
|
extends = Ebyte_EoRa-S3 |
||||
|
build_flags = |
||||
|
${Ebyte_EoRa-S3.build_flags} |
||||
|
-D MAX_CONTACTS=300 |
||||
|
-D MAX_GROUP_CHANNELS=1 |
||||
|
; -D MESH_PACKET_LOGGING=1 |
||||
|
; -D MESH_DEBUG=1 |
||||
|
build_src_filter = ${Ebyte_EoRa-S3.build_src_filter} |
||||
|
+<../examples/simple_secure_chat/main.cpp> |
||||
|
lib_deps = |
||||
|
${Ebyte_EoRa-S3.lib_deps} |
||||
|
densaugeo/base64 @ ~1.4.0 |
||||
|
|
||||
|
[env:Ebyte_EoRa-S3_room_server] |
||||
|
extends = Ebyte_EoRa-S3 |
||||
|
build_flags = |
||||
|
${Ebyte_EoRa-S3.build_flags} |
||||
|
-D DISPLAY_CLASS=SSD1306Display |
||||
|
-D ADVERT_NAME='"EORA_S3-1262 Room"' |
||||
|
-D ADVERT_LAT=0.0 |
||||
|
-D ADVERT_LON=0.0 |
||||
|
-D ADMIN_PASSWORD='"password"' |
||||
|
-D ROOM_PASSWORD='"hello"' |
||||
|
; -D MESH_PACKET_LOGGING=1 |
||||
|
; -D MESH_DEBUG=1 |
||||
|
build_src_filter = ${Ebyte_EoRa-S3.build_src_filter} |
||||
|
+<helpers/ui/SSD1306Display.cpp> |
||||
|
+<../examples/simple_room_server> |
||||
|
lib_deps = |
||||
|
${Ebyte_EoRa-S3.lib_deps} |
||||
|
${esp32_ota.lib_deps} |
||||
|
|
||||
|
[env:Ebyte_EoRa-S3_companion_radio_usb] |
||||
|
extends = Ebyte_EoRa-S3 |
||||
|
build_flags = |
||||
|
${Ebyte_EoRa-S3.build_flags} |
||||
|
-I examples/companion_radio/ui-new |
||||
|
-D DISPLAY_CLASS=SSD1306Display |
||||
|
-D MAX_CONTACTS=300 |
||||
|
-D MAX_GROUP_CHANNELS=8 |
||||
|
; NOTE: DO NOT ENABLE --> -D MESH_PACKET_LOGGING=1 |
||||
|
; NOTE: DO NOT ENABLE --> -D MESH_DEBUG=1 |
||||
|
build_src_filter = ${Ebyte_EoRa-S3.build_src_filter} |
||||
|
+<helpers/ui/SSD1306Display.cpp> |
||||
|
+<helpers/ui/MomentaryButton.cpp> |
||||
|
+<../examples/companion_radio/*.cpp> |
||||
|
+<../examples/companion_radio/ui-new/*.cpp> |
||||
|
lib_deps = |
||||
|
${Ebyte_EoRa-S3.lib_deps} |
||||
|
densaugeo/base64 @ ~1.4.0 |
||||
|
|
||||
|
[env:Ebyte_EoRa-S3_companion_radio_ble] |
||||
|
extends = Ebyte_EoRa-S3 |
||||
|
build_flags = |
||||
|
${Ebyte_EoRa-S3.build_flags} |
||||
|
-I examples/companion_radio/ui-new |
||||
|
-D DISPLAY_CLASS=SSD1306Display |
||||
|
-D MAX_CONTACTS=300 |
||||
|
-D MAX_GROUP_CHANNELS=8 |
||||
|
-D BLE_PIN_CODE=123456 |
||||
|
-D BLE_DEBUG_LOGGING=1 |
||||
|
-D OFFLINE_QUEUE_SIZE=256 |
||||
|
; -D MESH_PACKET_LOGGING=1 |
||||
|
; -D MESH_DEBUG=1 |
||||
|
build_src_filter = ${Ebyte_EoRa-S3.build_src_filter} |
||||
|
+<helpers/esp32/*.cpp> |
||||
|
+<helpers/ui/SSD1306Display.cpp> |
||||
|
+<helpers/ui/MomentaryButton.cpp> |
||||
|
+<../examples/companion_radio/*.cpp> |
||||
|
+<../examples/companion_radio/ui-new/*.cpp> |
||||
|
lib_deps = |
||||
|
${Ebyte_EoRa-S3.lib_deps} |
||||
|
densaugeo/base64 @ ~1.4.0 |
||||
@ -0,0 +1,48 @@ |
|||||
|
#include <Arduino.h> |
||||
|
#include "target.h" |
||||
|
|
||||
|
ESP32Board board; |
||||
|
|
||||
|
static SPIClass spi; |
||||
|
RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BUSY, spi); |
||||
|
WRAPPER_CLASS radio_driver(radio, board); |
||||
|
|
||||
|
ESP32RTCClock fallback_clock; |
||||
|
AutoDiscoverRTCClock rtc_clock(fallback_clock); |
||||
|
SensorManager sensors; |
||||
|
|
||||
|
#ifdef DISPLAY_CLASS |
||||
|
DISPLAY_CLASS display; |
||||
|
MomentaryButton user_btn(PIN_USER_BTN, 1000, true); |
||||
|
#endif |
||||
|
|
||||
|
#ifndef LORA_CR |
||||
|
#define LORA_CR 5 |
||||
|
#endif |
||||
|
|
||||
|
bool radio_init() { |
||||
|
fallback_clock.begin(); |
||||
|
rtc_clock.begin(Wire); |
||||
|
|
||||
|
return radio.std_init(&spi); |
||||
|
} |
||||
|
|
||||
|
uint32_t radio_get_rng_seed() { |
||||
|
return radio.random(0x7FFFFFFF); |
||||
|
} |
||||
|
|
||||
|
void radio_set_params(float freq, float bw, uint8_t sf, uint8_t cr) { |
||||
|
radio.setFrequency(freq); |
||||
|
radio.setSpreadingFactor(sf); |
||||
|
radio.setBandwidth(bw); |
||||
|
radio.setCodingRate(cr); |
||||
|
} |
||||
|
|
||||
|
void radio_set_tx_power(uint8_t dbm) { |
||||
|
radio.setOutputPower(dbm); |
||||
|
} |
||||
|
|
||||
|
mesh::LocalIdentity radio_new_identity() { |
||||
|
RadioNoiseListener rng(radio); |
||||
|
return mesh::LocalIdentity(&rng); // create new random identity
|
||||
|
} |
||||
@ -0,0 +1,29 @@ |
|||||
|
#pragma once |
||||
|
|
||||
|
#define RADIOLIB_STATIC_ONLY 1 |
||||
|
#include <RadioLib.h> |
||||
|
#include <helpers/radiolib/RadioLibWrappers.h> |
||||
|
#include <helpers/ESP32Board.h> |
||||
|
#include <helpers/radiolib/CustomSX1262Wrapper.h> |
||||
|
#include <helpers/AutoDiscoverRTCClock.h> |
||||
|
#include <helpers/SensorManager.h> |
||||
|
#ifdef DISPLAY_CLASS |
||||
|
#include <helpers/ui/SSD1306Display.h> |
||||
|
#include <helpers/ui/MomentaryButton.h> |
||||
|
#endif |
||||
|
|
||||
|
extern ESP32Board board; |
||||
|
extern WRAPPER_CLASS radio_driver; |
||||
|
extern AutoDiscoverRTCClock rtc_clock; |
||||
|
extern SensorManager sensors; |
||||
|
|
||||
|
#ifdef DISPLAY_CLASS |
||||
|
extern DISPLAY_CLASS display; |
||||
|
extern MomentaryButton user_btn; |
||||
|
#endif |
||||
|
|
||||
|
bool radio_init(); |
||||
|
uint32_t radio_get_rng_seed(); |
||||
|
void radio_set_params(float freq, float bw, uint8_t sf, uint8_t cr); |
||||
|
void radio_set_tx_power(uint8_t dbm); |
||||
|
mesh::LocalIdentity radio_new_identity(); |
||||
Loading…
Reference in new issue