Initial commit

This commit is contained in:
2026-01-17 09:53:08 +02:00
commit 159633e837
148 changed files with 42795 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
menu "LoRa radio (LR1121)"
config LORA_SPI_HOST
int "SPI host"
range 0 3
default 2
help
Номер SPI host для RA01 (звичайно HSPI = 2, VSPI = 3).
config LORA_PIN_CS
int "LR1121 CS (NSS) pin"
default 18
config LORA_PIN_MOSI
int "LR1121 MOSI pin"
default 27
config LORA_PIN_MISO
int "LR1121 MISO pin"
default 19
config LORA_PIN_SCK
int "LR1121 SCK pin"
default 5
config LORA_PIN_RST
int "LR1121 RESET pin"
default 14
config LORA_PIN_BUSY
int "LR1121 BUSY pin"
default 26
config LORA_PIN_DIO1
int "LR1121 DIO1 pin"
default 25
config LORA_FREQ_MHZ
int "Частота МГц"
default 868
config LORA_BW_KHZ
int "Смуга пропускання кГц"
default 125
config LORA_SF
int "Spreading factor"
range 5 12
default 7
config LORA_CR
int "Coding rate (4/x)"
range 5 8
default 5
endmenu