Skip to content

Commit

Permalink
W#2150 Adds AMBE audio tone aliasing support to DMR. (#2151)
Browse files Browse the repository at this point in the history
Co-authored-by: Dennis Sheirer <[email protected]>
  • Loading branch information
DSheirer and Dennis Sheirer authored Feb 15, 2025
1 parent 71d2cb6 commit 4e367bb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* *****************************************************************************
* Copyright (C) 2014-2023 Dennis Sheirer
* Copyright (C) 2014-2025 Dennis Sheirer
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -694,13 +694,15 @@ private MenuButton getAddIdentifierButton()
p25Menu.getItems().add(new AddUserStatusItem());
p25Menu.getItems().add(new AddUnitStatusItem());
p25Menu.getItems().add(new SeparatorMenuItem());
p25Menu.getItems().add(new AddTonesItem("Audio Tones (Phase 2 Only)"));
p25Menu.getItems().add(new AddTonesItem("AMBE Audio Tones (Phase 2 Only)"));

Menu dmrMenu = new ProtocolMenu(Protocol.DMR);
dmrMenu.getItems().add(new AddTalkgroupItem(Protocol.DMR));
dmrMenu.getItems().add(new AddTalkgroupRangeItem(Protocol.DMR));
dmrMenu.getItems().add(new AddRadioIdItem(Protocol.DMR));
dmrMenu.getItems().add(new AddRadioIdRangeItem(Protocol.DMR));
dmrMenu.getItems().add(new AddTonesItem("AMBE Audio Tones"));


Menu fleetsyncMenu = new ProtocolMenu(Protocol.FLEETSYNC);
fleetsyncMenu.getItems().add(new AddTalkgroupItem(Protocol.FLEETSYNC));
Expand Down

0 comments on commit 4e367bb

Please sign in to comment.