mirror of
https://github.com/meshtastic/firmware.git
synced 2026-08-01 02:48:49 -04:00
* Add T-Beam BPF (144-148 Mhz LoRa) * minor correction to fix compiler warnings * Add T-Beam BPF (144-148 Mhz LoRa) * minor correction to fix compiler warnings * Add ITU regions for this device and make GPS work. * Switch pin after defining it as output Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Lora CS is indeed 1, SD Card CS is 10 * Include the back option. * Fix compilation with pioarduino (USB_MODE) * Default ham to narrow_fast * Default PROFILE_HAM to slot 17 This is an appropriate default in the USA but not the EU. The slot override really should follow the region itself, not the regionprofile. * Fix for ITU 2/3 split * Add ITU region options to MenuAction enum * Add HAS_HAM_2M definition to variant headers for 2M support * Re-add PROFILE_HAM regionprofile Accidentally removed in last merge * Trunk fmt * Initial default slots * Switch to TinyFast Still need to flesh out the default channels * Adjust slotOverrides for TinyFast * RadioLib doesn't accept 15.625 kHz Use 15.6 instead * Set RF95 pins for T-Beam Supreme May cause regressions!! * Remove other-variant changes (BPF-only) These have been moved to other PRs * Remove mismatch guarding (we need a more comprehensive approach) * Add comment back * Add template for PA curve * This is a 5-6W radio!! Add TX_GAIN_LORA * Trunk fmt because NomDeTom hates emdashes --------- Co-authored-by: Thomas Göttgens <tgoettgens@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
40 lines
926 B
JSON
40 lines
926 B
JSON
{
|
|
"build": {
|
|
"arduino": {
|
|
"ldscript": "esp32s3_out.ld",
|
|
"memory_type": "qio_opi"
|
|
},
|
|
"core": "esp32",
|
|
"extra_flags": [
|
|
"-DBOARD_HAS_PSRAM",
|
|
"-DLILYGO_TBEAM_BPF",
|
|
"-DARDUINO_USB_CDC_ON_BOOT=1",
|
|
"-DARDUINO_USB_MODE=1",
|
|
"-DARDUINO_RUNNING_CORE=1",
|
|
"-DARDUINO_EVENT_RUNNING_CORE=1"
|
|
],
|
|
"f_cpu": "240000000L",
|
|
"f_flash": "80000000L",
|
|
"flash_mode": "qio",
|
|
"psram_type": "opi",
|
|
"hwids": [["0x303A", "0x1001"]],
|
|
"mcu": "esp32s3",
|
|
"variant": "t-beam-bpf"
|
|
},
|
|
"connectivity": ["wifi", "bluetooth", "lora"],
|
|
"debug": {
|
|
"openocd_target": "esp32s3.cfg"
|
|
},
|
|
"frameworks": ["arduino"],
|
|
"name": "LilyGo TBeam-BPF",
|
|
"upload": {
|
|
"flash_size": "16MB",
|
|
"maximum_ram_size": 327680,
|
|
"maximum_size": 16777216,
|
|
"require_upload_port": true,
|
|
"speed": 921600
|
|
},
|
|
"url": "http://www.lilygo.cn/",
|
|
"vendor": "LilyGo"
|
|
}
|