parent
118d7f4009
commit
e2b8a4b085
9 changed files with 156 additions and 17 deletions
@ -0,0 +1,21 @@ |
|||||||
|
# Changelog |
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file. |
||||||
|
|
||||||
|
Added : for new features. |
||||||
|
Changed : for changes in existing functionality. |
||||||
|
Deprecated: for soon-to-be removed features. |
||||||
|
Removed : for now removed features. |
||||||
|
Fixed : for any bug fixes. |
||||||
|
Security : in case of vulnerabilities. |
||||||
|
|
||||||
|
## [0.0.1] - 2022-01-31 |
||||||
|
|
||||||
|
### Added |
||||||
|
- Lora support fo an SX1278 connected to the RPi GPIO |
||||||
|
|
||||||
|
### Deprecated |
||||||
|
- RPi-LoRa-KISS-TNC shall be moved to a seperate repository |
||||||
|
|
||||||
|
### Fixed |
||||||
|
- LoRa APRS header (<\xff\x01) was not added to the payload, due to an indentation fault. Long live Python! |
@ -0,0 +1,24 @@ |
|||||||
|
# Changelog |
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file. |
||||||
|
|
||||||
|
Added : for new features. |
||||||
|
Changed : for changes in existing functionality. |
||||||
|
Deprecated: for soon-to-be removed features. |
||||||
|
Removed : for now removed features. |
||||||
|
Fixed : for any bug fixes. |
||||||
|
Security : in case of vulnerabilities. |
||||||
|
|
||||||
|
## [0.0.1] - 2022-01-31 |
||||||
|
|
||||||
|
### Added |
||||||
|
- Lora and TCP settings are now configurable via configuration file RPi-LoRa-KISS-TNC.ini |
||||||
|
|
||||||
|
### Changed |
||||||
|
- Better encoding of AX.25 frames: less/no crashes due to corrupted incomming frames |
||||||
|
|
||||||
|
### Deprecated |
||||||
|
- Configuration via config.py |
||||||
|
|
||||||
|
### Fixed |
||||||
|
- LoRa APRS header (<\xff\x01) was not added to the payload, due to an indentation fault. Long live Python! |
@ -0,0 +1,33 @@ |
|||||||
|
[LoRaSettings] |
||||||
|
# Settings for LoRa module |
||||||
|
frequency=433.775 |
||||||
|
preamble=8 |
||||||
|
spreadingFactor=12 |
||||||
|
# Bandwidth: |
||||||
|
# BW7_8 |
||||||
|
# BW10_4 |
||||||
|
# BW15_6 |
||||||
|
# BW20_8 |
||||||
|
# BW31_25 |
||||||
|
# BW41_7 |
||||||
|
# BW62_5 |
||||||
|
# BW125 |
||||||
|
# BW250 |
||||||
|
# BW500 |
||||||
|
bandwidth=BW125 |
||||||
|
# Coding Rate: |
||||||
|
# CR4_5 |
||||||
|
# CR4_6 |
||||||
|
# CR4_7 |
||||||
|
# CR4_8 |
||||||
|
codingrate=CR4_5 |
||||||
|
appendSignalReport=True |
||||||
|
paSelect = 1 |
||||||
|
MaxoutputPower = 15 |
||||||
|
outputPower = 15 |
||||||
|
|
||||||
|
[KISS] |
||||||
|
# Settings for KISS |
||||||
|
TCP_HOST=0.0.0.0 |
||||||
|
TCP_PORT_AX25=10001 |
||||||
|
TCP_PORT_RAW =10002 |
Loading…
Reference in new issue