mirror of https://github.com/lwvmobile/mbelib
Fix Typo; Update Readme with Build Intructions;
This commit is contained in:
parent
96186b85a9
commit
2c02e4c63d
|
|
@ -6,7 +6,7 @@ if(MSVC)
|
||||||
add_definitions(-D_USE_MATH_DEFINES)
|
add_definitions(-D_USE_MATH_DEFINES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
#use cmake option -DNOTONES=OFF to disable AMBE+2 Tones
|
#use cmake option -DNOTONES=ON to disable AMBE+2 Tones
|
||||||
option(NOTONES
|
option(NOTONES
|
||||||
"Disable AMBE+2 Tones" OFF)
|
"Disable AMBE+2 Tones" OFF)
|
||||||
if (NOTONES)
|
if (NOTONES)
|
||||||
|
|
|
||||||
17
README.md
17
README.md
|
|
@ -9,10 +9,25 @@ Readers are strongly advised to check for any patent restrictions
|
||||||
or licencing requirements before compiling or using this source code.
|
or licencing requirements before compiling or using this source code.
|
||||||
```
|
```
|
||||||
|
|
||||||
mbelib 1.3.3T
|
mbelib 1.3.3T w/ AMBE+2 Tone Synthesis
|
||||||
|
|
||||||
```
|
```
|
||||||
mbelib supports the 7200x4400 bit/s codec used in P25 Phase 1,
|
mbelib supports the 7200x4400 bit/s codec used in P25 Phase 1,
|
||||||
the 7100x4400 bit/s codec used in ProVoice, AMBE used in DSTAR,
|
the 7100x4400 bit/s codec used in ProVoice, AMBE used in DSTAR,
|
||||||
and AMBE+2 used in DMR, NXDN, P25 Phase 2, dPMR, etc.
|
and AMBE+2 used in DMR, NXDN, P25 Phase 2, dPMR, etc.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Build Instructions
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/lwvmobile/mbelib.git
|
||||||
|
git checkout ambe_tones
|
||||||
|
cd mbelib
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
sudo make install
|
||||||
|
```
|
||||||
|
|
||||||
|
To Disable AMBE+2 Tones, run cmake with option `cmake -DNOTONES=ON ..` when building.
|
||||||
Loading…
Reference in New Issue