vp-digi/README.md

52 wiersze
2.4 KiB
Markdown

2021-09-10 11:55:39 +00:00
# VP-Digi
2023-09-06 11:17:21 +00:00
Polska wersja tego pliku dostępna jest [tutaj](README_pl.md).
**VP-Digi** is a functional, affordable, easy-to-assemble, and configure STM32-based APRS digipeater controller with a built-in KISS modem.
2021-09-10 11:55:39 +00:00
* Multiple modems:
* 1200 Bd AFSK Bell 202 (VHF standard)
* 300 Bd AFSK Bell 103 (HF standard)
* 9600 Bd GFSK G3RUH (UHF standard)
* 1200 Bd AFSK V.23
* PWM (or deprecated R2R) signal generation
2021-12-28 21:13:25 +00:00
* Analog-digital busy channel detection (data carrier detection)
* AX.25 coder/decoder
* FX.25 (AX.25 with error correction) coder/decoder, fully compatible with [Direwolf](https://github.com/wb2osz/direwolf) and [UZ7HO Soundmodem](http://uz7.ho.ua/packetradio.htm)
* Digipeater: 4 settable n-N aliases, 4 simple aliases, viscous delay (known from aprx) or direct only, black and white list
2021-12-28 21:13:25 +00:00
* 8 independent beacons
2023-09-06 11:17:21 +00:00
* KISS mode (can be used as an ordinary Packet Radio, Winlink, APRS, etc. modem)
* USB and 2 UARTs: independent, running in KISS, monitor, or configuration mode
## Download and setup
The latest compiled firmware can be downloaded [here](https://github.com/sq8vps/vp-digi/releases).\
Full documentation can be found [here](doc/manual.md).
2021-12-28 21:13:25 +00:00
## Updating to 2.0.0+ on older hardware
2023-09-06 11:17:21 +00:00
Since version 2.0.0, the component values have changed to provide support for faster modulations (9600 Bd). If you want to use these, some components must be replaced. For more information, refer to the [manual](doc/manual.md).
2021-09-10 11:55:39 +00:00
## Description, schematic, instructions
2023-09-06 11:17:21 +00:00
The user manual and technical description are available [here](doc/manual.md).
2021-09-10 11:55:39 +00:00
## Source code
2023-09-06 11:17:21 +00:00
The firmware was written using STM32CubeIDE, and you should be able to import this repository directly into the IDE. You can get the source code using:
2023-09-06 11:17:21 +00:00
```bash
git clone https://github.com/sq8vps/vp-digi.git
```
2023-09-06 11:17:21 +00:00
Since version 2.0.0, you will also need to get the appropriate submodule ([LwFEC](https://github.com/sq8vps/lwfec) for Reed-Solomon FEC):
```bash
git submodule init
git submodule update
```
2023-09-08 20:43:05 +00:00
Since version 2.0.0, there is also a possibility to build the firmware with or without FX.25 protocol support. The `ENABLE_FX25` symbol must be defined to enable FX.25 support. On STM32CubeIDE, this can be done under *Project->Properties->C/C++ Build->Settings->Preprocessor->Defined symbols*.
2021-09-10 11:55:39 +00:00
## Contributing
All contributions are appreciated.
2021-09-10 11:55:39 +00:00
## License
2021-09-11 12:22:12 +00:00
The project is licensed under the GNU GPL v3 license (see [LICENSE](LICENSE)).