VP-Digi is a functional, cheap, easy to assemble and configure STM32-based APRS digipeater controller with built-in KISS modem.
 
 
Go to file
Piotr Wilkon bc18307a97 initial commit 2021-09-10 13:55:39 +02:00
Drivers initial commit 2021-09-10 11:30:51 +02:00
EWARM initial commit 2021-09-10 11:30:51 +02:00
Inc initial commit 2021-09-10 11:30:51 +02:00
Middlewares/ST/STM32_USB_Device_Library initial commit 2021-09-10 11:30:51 +02:00
Src initial commit 2021-09-10 13:55:39 +02:00
startup initial commit 2021-09-10 11:30:51 +02:00
.gitignore gitignore 2021-09-10 11:30:08 +02:00
.project initial commit 2021-09-10 11:30:51 +02:00
CHANGELOG.md initial commit 2021-09-10 13:55:39 +02:00
F103C8T6_DIGI_USB Debug.cfg initial commit 2021-09-10 11:30:51 +02:00
F103C8T6_DIGI_USB Release.cfg initial commit 2021-09-10 11:30:51 +02:00
F103C8T6_DIGI_USB.ioc initial commit 2021-09-10 11:30:51 +02:00
F103C8T6_DIGI_USB.xml initial commit 2021-09-10 11:30:51 +02:00
README.md initial commit 2021-09-10 13:55:39 +02:00
STM32F103C8Tx_FLASH.ld initial commit 2021-09-10 11:30:51 +02:00
TODO initial commit 2021-09-10 13:55:39 +02:00

README.md

VP-Digi

VP-Digi is a functional, cheap, easy to assemble and configure STM32-based APRS digipeater controller with built-in KISS modem.

Description, schematic, instructions

If you are not interested in source code, this repository is not for you. You can find full project description, schematics, compiled firmware and instructions on my website.

Source code usage

The firmware was written using System Workbench for STM32 (SW4STM32) and you should be able to import this repository directly to the IDE. The source code is publicly available since version 1.3.0.

Technical description

The project was designed to be running on a Blue Pill board (STM32F103C8T6) with 8MHz crystal. The firmware was written using only register operations (with ST headers) and CMSIS libraries. The HAL is there only for USB. The code is (quite) extensively commented where needed, so it shouldn't be very hard to understand.

Demodulator

There are two demodulators (and decoders) running in parallel to provide better efficiency. The signal is sampled at 38400Hz (32 samples per symbol) by DMA. The interrupt is generated after receiving 4 samples and the samples are decimated. Then they are pushed through a preemphasis/deemphasis filter (if enabled) which equalizes tone amplitudes. Filtered samples are multiplied by locally generated mark and space tones (their I and Q parts - cosine and sine). This gives a correlation factor between the input signal and each tone. In the meanwhile an unfiltered symbol is produced to drive the data carrier detection PLL. The difference of correlation factors is the new sample and is pushed through a low pass filter to eliminate noise. Filtered samples are compared to zero and the demodulated symbol is sent to bit recovery mechanism.

Bit recovery (and NRZI decoder)

Bit recovery mechanism is based on a digital PLL. The PLL is nominally running at 1200Hz (=1200 Baud). The symbol change should occur near PLL counter zero, so that the counter overflows in the middle of the symbol and the symbol value is sampled. With every symbol change the counter is multiplied by a <1 factor to bring it closer to zero, keeping the PLL and incoming signal in phase. The DCD signal is multiplexed from both modems. Explained more in modem.c. Sampled symbol is decoded by NRZI decoder and sent to AX.25 layer.

AX.25 decoding

AX.25 decoder is quite standard. CRC, PID and Control Byte are checked and both modem paths are multiplexed to produce only one output frame.

Data carrier detection

DCD uses an analog-digital approach: based on PLL, but working on a digital unfiltered symbol stream. The PLL works in the same way as bit recovery PLL, except that there is a special DCD pulse counting mechanism implemented, explained in modem.c. This approach seems to be far more effective than a typical, digital, AX.25-based detection.

AX.25 encoding

AX.25 encoder is also quite simple. It can handle multiple frames in a row (limited by buffer length). Every transmission starts with preamble flags, then header flags, actual data, CRC, footer/separating flags, actual data, CRC, footer/separating flags... and tail flags. Raw bits are requested by the modulator.

Modulator (and NRZI encoder)

The NRZI encoder runs at exactly 1200Hz (=1200 Baud) and requests bits from the AX.25 encoder. Bits are encoded to symbols and the DAC sampling timer interval is set depending on symbol value. Because of that there is only one sine table used. For 1200Hz tone the timer interval is larger than for 2200 Hz tone - the sampling frequency is changed to change the output signal frequency. An array index is always kept so that the output signal phase is continuous.

References

The project took a lot of time, but now it's probably the most effective, publicly available, STM32-based modem and the most customizable microcontroller-based APRS digipeater. I would like to mention some resources I found really useful or inspiring:

Contributing

All contributions are appreciated, but please keep the code reasonably clean. Also, please make sure that the firmware is working well before creating a pull request.

License

The project is licensed under the GNU GPL v3 license (see LICENSE).