MMDVM-based Digital Voice Modem Firmware (Hotspot)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Bryan Biedenkapp 6d1afdcce4
fix issue where data buffer isn't properly cleared on a reset of P25RX data; slightly refactor how P25 sync is detected for performance reasons;
3 years ago
.github/workflows implement GitHub workflow CI; 4 years ago
STM32F4XX_Platform@b8b3d5380f update Makefiles to use included submodules for STM32 platform files; 4 years ago
STM32F10X_Platform@527fee72ae update Makefiles to use included submodules for STM32 platform files; 4 years ago
dmr make incoming data FIFO sizes consistent; 3 years ago
nxdn make incoming data FIFO sizes consistent; 3 years ago
p25 fix issue where data buffer isn't properly cleared on a reset of P25RX data; slightly refactor how P25 sync is detected for performance reasons; 3 years ago
.gitignore update .gitignore, ignore .bin, .elf; 4 years ago
.gitmodules update Makefiles to use included submodules for STM32 platform files; 4 years ago
ADF7021.cpp remove P25_LF_CAL mode; 3 years ago
ADF7021.h expose ADF7021 AFC control to the host (optionally); 3 years ago
AUTHORS.md bump copyright dates; add authors and credits; 4 years ago
BitBuffer.cpp code cleanup; 4 years ago
BitBuffer.h initial commit of new codebase; 4 years ago
CWIdTX.cpp code cleanup; 4 years ago
CWIdTX.h initial commit of new codebase; 4 years ago
CalRSSI.cpp code cleanup; 4 years ago
CalRSSI.h add Makefiles; fix compilation errors; 4 years ago
Defines.h expose ADF7021 AFC control to the host (optionally); 3 years ago
FirmwareMain.cpp remove P25_LF_CAL mode; 3 years ago
Globals.h implement initial NXDN support (EXPERIMENTAL); 4 years ago
IO.cpp fix incorrect opcode callback from NXDN RX; code cleanup; 3 years ago
IO.h expose ADF7021 AFC control to the host (optionally); 3 years ago
IOSTM.cpp implement initial NXDN support (EXPERIMENTAL); 4 years ago
LICENSE.md initial commit of new codebase; 4 years ago
Makefile add Makefiles; fix compilation errors; 4 years ago
Makefile.STM32FX implement initial NXDN support (EXPERIMENTAL); 4 years ago
README.md update README.md; 4 years ago
STM_UART.cpp code cleanup; 4 years ago
STM_UART.h initial commit of new codebase; 4 years ago
SerialBuffer.cpp make incoming data FIFO sizes consistent; 3 years ago
SerialBuffer.h make incoming data FIFO sizes consistent; 3 years ago
SerialPort.cpp remove P25_LF_CAL mode; 3 years ago
SerialPort.h remove P25_LF_CAL mode; 3 years ago
SerialSTM.cpp remove flash operation debug messages to save on code space; reword some other debug messages; 3 years ago
Utils.cpp initial commit of new codebase; 4 years ago
Utils.h initial commit of new codebase; 4 years ago
bootloader.ld initial commit of new codebase; 4 years ago
normal.ld initial commit of new codebase; 4 years ago
stm32f4xx_link.ld initial commit of new codebase; 4 years ago
stm32f7xx_link.ld initial commit of new codebase; 4 years ago
stm32f10x_link.ld initial commit of new codebase; 4 years ago

README.md

Digital Voice Modem Firmware (Hotspot)

The DVM hotspot firmware provides the embedded microcontroller implementation of a dedicated-mode DMR, P25 or NXDN hotspot system. The firmware; is the portion of a complete Over-The-Air modem implementation that uses an ADF7021 to provide a raw RF interface.

This project is a direct fork of the MMDVM_HS (https://github.com/juribeparada/MMDVM_HS) project.

Please feel free to reach out to us for help, comments or otherwise, on our Discord: https://discord.gg/3pBe8xgrEz

Building

Please see the various Makefile's included in the project for more information. This project includes a few Makefiles to target different hardware. (All following information assumes familiarity with the standard Linux make system.)

  • Makefile.STM32FX - This makefile is used for targeting a generic STM32F103 with an ADF7021 RF SoC device.

  • For STM32F103 using Ubuntu OS install the standard ARM embedded toolchain (typically arm-gcc-none-eabi).

    • Make sure to clone this repository with the --recurse-submodules option, otherwise the STM32 platform files will be missing! git clone --recurse-submodules https://github.com/DVMProject/dvmfirmware-hs.git

To build the firmware, use the make command, followed by -f and the correct makefile, followed by the type of board you are using.

NOTE: The only two known tested targets are mmdvm-hs-hat-dual and mmdvm-hs-hat-dual-usb.

An example of this would be make -f Makefile.STM32FX mmdvm-hs-hat-dual for a full duplex modem hotspot, attached to GPIO.

Firmware installation

The device can be used on top on a RPi attached via the GPIO port or standalone and connected via USB. Both variants require different handling of compiling and uploading the firmware, examples on flashing devices are mostly not included here because the methods to flash vary from device to device.

The USB connection requires firmware with bootloader support whereas the GPIO version does not. For USB connection a bootloader has to be installed initally. This requires STlink connection. After that is done the firmware upgrade can be done via the USB connection. The STlink connection can be used as fallback if wrongly configured firmware was installed for example.

Install the firmware via GPIO on Raspberry Pi

NOTE: Your mileage may vary with these instructions, the hotspot boards are loosely designed around a common factor but not all are created equally.

First you will need to disable the serial console and disable bluetooth. Edit /boot/cmdline.txt and remove the line console=serial0, 115200. Next, you will need to disable bluetooth on the board. Edit /boot/config.txt and add a line containing dtoverlay=disable-bt. Reboot.

Most sets of instructions reccomend to download stm32flash from online, however we have found the prepackaged version to work fine.

Once the hotspot is back on, navigate to the build folder where you compiled the firmware. Put a jumper across the J1 points on the board, and the RED heartbeat LED should stop flashing. Run the below command to flash.

stm32flash -v -w dvm-firmware-hs_f1.bin -i 20,-21,21,-20 -R /dev/ttyAMA0

You should see the below output if the board flashed successfully.

Wrote and verified address 0x0800be40 (100.00%) Done.

Resetting device... 
Reset done.

Install the firmware with bootloader support for USB connection

If you want to use the device via USB port you have to install a bootloader and build the firmware with bootloader support. As the raw device cannot be used with USB you have to use a USB-serial adapter or STlink device.

An example Using STlink this can be done as follows:

user@host:~/dvmfirmware-hs$ -f Makefile.STM32FX mmdvm-hs-hat-usb-dual
...
user@host:~/dvmfirmware-hs$ ./STM32F10X_Platform/utils/linux64/st-flash write ./STM32F10X_Platform/utils/bootloader/generic_boot20_pc13.bin 0x8000000
2018-03-02T10:01:04 INFO src/usb.c: -- exit_dfu_mode
2018-03-02T10:01:04 INFO src/common.c: Loading device parameters....
2018-03-02T10:01:04 INFO src/common.c: Device connected is: F1 Medium-density device, id 0x20036410
2018-03-02T10:01:04 INFO src/common.c: SRAM size: 0x5000 bytes (20 KiB), Flash: 0x10000 bytes (64 KiB) in pages of 1024 bytes
2018-03-02T10:01:04 INFO src/common.c: Attempting to write 7160 (0x1bf8) bytes to stm32 address: 134217728 (0x8000000)
Flash page at addr: 0x08001800 erased
2018-03-02T10:01:04 INFO src/common.c: Finished erasing 7 pages of 1024 (0x400) bytes
2018-03-02T10:01:04 INFO src/common.c: Starting Flash write for VL/F0/F3 core id
2018-03-02T10:01:04 INFO src/common.c: Successfully loaded flash loader in sram
  6/6 pages written
2018-03-02T10:01:05 INFO src/common.c: Starting verification of write complete
2018-03-02T10:01:05 INFO src/common.c: Flash written and verified! jolly good!
user@host:~/dvmfirmware-hs$ ./STM32F10X_Platform/utils/linux64/st-flash write dvm-firmware-hs_f1bl.bin 0x8002000
2018-03-02T10:01:05 INFO src/common.c: Loading device parameters....
2018-03-02T10:01:05 INFO src/common.c: Device connected is: F1 Medium-density device, id 0x20036410
2018-03-02T10:01:05 INFO src/common.c: SRAM size: 0x5000 bytes (20 KiB), Flash: 0x10000 bytes (64 KiB) in pages of 1024 bytes
2018-03-02T10:01:05 INFO src/common.c: Attempting to write 55016 (0xd6e8) bytes to stm32 address: 134225920 (0x8002000)
Flash page at addr: 0x0800f400 erased
2018-03-02T10:01:07 INFO src/common.c: Finished erasing 54 pages of 1024 (0x400) bytes
2018-03-02T10:01:07 INFO src/common.c: Starting Flash write for VL/F0/F3 core id
2018-03-02T10:01:07 INFO src/common.c: Successfully loaded flash loader in sram
 53/53 pages written
2018-03-02T10:01:12 INFO src/common.c: Starting verification of write complete
2018-03-02T10:01:13 INFO src/common.c: Flash written and verified! jolly good!

The device should now be usable as /dev/ttyACMx.

Notes

NXDN Support Note: NXDN support is currently experimental.

License

This project is licensed under the GPLv2 License - see the LICENSE.md file for details. Use of this project is intended, for amateur and/or educational use ONLY. Any other use is at the risk of user and all commercial purposes is strictly discouraged.

Powered by TurnKey Linux.