-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
233 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
*.exe | ||
*.zip | ||
*.7z | ||
*.tgz | ||
ui*.h | ||
Makefile | ||
*.stash | ||
.directory | ||
moc_* | ||
*.deb | ||
description-pak | ||
ffs2play | ||
|
||
#Qt temporary project files | ||
*.save | ||
*.pro.user.* | ||
|
||
# Build results | ||
|
||
[Dd]ebug/ | ||
[Rr]elease/ | ||
x64/ | ||
build*/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
|
||
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets | ||
!packages/*/build/ | ||
|
||
# MSTest test Results | ||
[Tt]est[Rr]esult*/ | ||
[Bb]uild[Ll]og.* | ||
|
||
*.o | ||
*_i.c | ||
*_p.c | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.pch | ||
*.pdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.tmp_proj | ||
*.log | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
*.pidb | ||
*.log | ||
*.scc | ||
*.old | ||
*.db | ||
*.smproj | ||
*.pb.cc | ||
*.pb.h | ||
*.pro.user | ||
|
||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
*.cachefile | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
*.vspx | ||
|
||
# Guidance Automation Toolkit | ||
*.gpState | ||
|
||
# ReSharper is a .NET coding add-in | ||
_ReSharper*/ | ||
*.[Rr]e[Ss]harper | ||
|
||
# TeamCity is a build add-in | ||
_TeamCity* | ||
|
||
# DotCover is a Code Coverage Tool | ||
*.dotCover | ||
|
||
# NCrunch | ||
*.ncrunch* | ||
.*crunch*.local.xml | ||
|
||
# Installshield output folder | ||
[Ee]xpress/ | ||
|
||
# DocProject is a documentation generator add-in | ||
DocProject/buildhelp/ | ||
DocProject/Help/*.HxT | ||
DocProject/Help/*.HxC | ||
DocProject/Help/*.hhc | ||
DocProject/Help/*.hhk | ||
DocProject/Help/*.hhp | ||
DocProject/Help/Html2 | ||
DocProject/Help/html | ||
|
||
# Click-Once directory | ||
publish/ | ||
|
||
# Publish Web Output | ||
*.Publish.xml | ||
|
||
# NuGet Packages Directory | ||
## TODO: If you have NuGet Package Restore enabled, uncomment the next line | ||
#packages/ | ||
|
||
# Windows Azure Build Output | ||
csx | ||
*.build.csdef | ||
|
||
# Windows Store app package directory | ||
AppPackages/ | ||
|
||
# Others | ||
sql/ | ||
*.Cache | ||
ClientBin/ | ||
[Ss]tyle[Cc]op.* | ||
~$* | ||
*~ | ||
*.dbmdl | ||
*.[Pp]ublish.xml | ||
*.pfx | ||
*.publishsettings | ||
|
||
# RIA/Silverlight projects | ||
Generated_Code/ | ||
|
||
# Backup & report files from converting an old project file to a newer | ||
# Visual Studio version. Backup files are not needed, because we have git ;-) | ||
_UpgradeReport_Files/ | ||
Backup*/ | ||
UpgradeLog*.XML | ||
UpgradeLog*.htm | ||
|
||
# SQL Server files | ||
App_Data/*.mdf | ||
App_Data/*.ldf | ||
|
||
|
||
#LightSwitch generated files | ||
GeneratedArtifacts/ | ||
_Pvt_Extensions/ | ||
ModelManifest.xml | ||
|
||
# ========================= | ||
# Windows detritus | ||
# ========================= | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Mac desktop service store files | ||
.DS_Store | ||
packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright (C) 2015,2016 by Jonathan Naylor G4KLX | ||
* | ||
* 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 | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
*/ | ||
|
||
#if !defined(YSFDefines_H) | ||
#define YSFDefines_H | ||
|
||
const unsigned int YSF_FRAME_LENGTH_BYTES = 120U; | ||
|
||
const unsigned char YSF_SYNC_BYTES[] = {0xD4U, 0x71U, 0xC9U, 0x63U, 0x4DU}; | ||
const unsigned int YSF_SYNC_LENGTH_BYTES = 5U; | ||
|
||
const unsigned int YSF_FICH_LENGTH_BYTES = 25U; | ||
|
||
const unsigned char YSF_SYNC_OK = 0x01U; | ||
|
||
const unsigned int YSF_CALLSIGN_LENGTH = 10U; | ||
|
||
const unsigned char YSF_FI_HEADER = 0x00U; | ||
const unsigned char YSF_FI_COMMUNICATIONS = 0x01U; | ||
const unsigned char YSF_FI_TERMINATOR = 0x02U; | ||
const unsigned char YSF_FI_TEST = 0x03U; | ||
|
||
const unsigned char YSF_DT_VD_MODE1 = 0x00U; | ||
const unsigned char YSF_DT_DATA_FR_MODE = 0x01U; | ||
const unsigned char YSF_DT_VD_MODE2 = 0x02U; | ||
const unsigned char YSF_DT_VOICE_FR_MODE = 0x03U; | ||
|
||
const unsigned char YSF_CM_GROUP1 = 0x00U; | ||
const unsigned char YSF_CM_GROUP2 = 0x01U; | ||
const unsigned char YSF_CM_INDIVIDUAL = 0x03U; | ||
|
||
const unsigned char YSF_MR_DIRECT = 0x00U; | ||
const unsigned char YSF_MR_NOT_BUSY = 0x01U; | ||
const unsigned char YSF_MR_BUSY = 0x02U; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[{"excluded":[],"includePaths":["E:/devel/Qt/5.15.2/msvc2019_64/include","E:/devel/Qt/5.15.2/msvc2019_64/include/QtMultimedia","E:/devel/Qt/5.15.2/msvc2019_64/include/QtWidgets","E:/devel/Qt/5.15.2/msvc2019_64/include/QtGui","E:/devel/Qt/5.15.2/msvc2019_64/include/QtANGLE","E:/devel/Qt/5.15.2/msvc2019_64/include/QtNetwork","E:/devel/Qt/5.15.2/msvc2019_64/include/QtSerialPort","E:/devel/Qt/5.15.2/msvc2019_64/include/QtCore","E:/devel/git/dudestar","E:/devel/git/dudestar"],"projectFile":"E:/devel/git/dudestar/dudestar.pro","sources":["E:/devel/git/dudestar/CRCenc.cpp","E:/devel/git/dudestar/CRCenc.h","E:/devel/git/dudestar/DMRData.cpp","E:/devel/git/dudestar/DMRData.h","E:/devel/git/dudestar/DMRDefines.h","E:/devel/git/dudestar/Golay24128.cpp","E:/devel/git/dudestar/Golay24128.h","E:/devel/git/dudestar/SHA256.cpp","E:/devel/git/dudestar/SHA256.h","E:/devel/git/dudestar/YSFConvolution.cpp","E:/devel/git/dudestar/YSFConvolution.h","E:/devel/git/dudestar/YSFFICH.cpp","E:/devel/git/dudestar/YSFFICH.h","E:/devel/git/dudestar/ambe.c","E:/devel/git/dudestar/ambe.h","E:/devel/git/dudestar/ambe3600x2400.c","E:/devel/git/dudestar/ambe3600x2400_const.h","E:/devel/git/dudestar/ambe3600x2450.c","E:/devel/git/dudestar/ambe3600x2450_const.h","E:/devel/git/dudestar/audioengine.cpp","E:/devel/git/dudestar/audioengine.h","E:/devel/git/dudestar/cbptc19696.cpp","E:/devel/git/dudestar/cbptc19696.h","E:/devel/git/dudestar/cgolay2087.cpp","E:/devel/git/dudestar/cgolay2087.h","E:/devel/git/dudestar/chamming.cpp","E:/devel/git/dudestar/chamming.h","E:/devel/git/dudestar/codec2/codebooks.cpp","E:/devel/git/dudestar/codec2/codec2.cpp","E:/devel/git/dudestar/codec2/codec2.h","E:/devel/git/dudestar/codec2/codec2_internal.h","E:/devel/git/dudestar/codec2/defines.h","E:/devel/git/dudestar/codec2/kiss_fft.cpp","E:/devel/git/dudestar/codec2/kiss_fft.h","E:/devel/git/dudestar/codec2/lpc.cpp","E:/devel/git/dudestar/codec2/lpc.h","E:/devel/git/dudestar/codec2/nlp.cpp","E:/devel/git/dudestar/codec2/nlp.h","E:/devel/git/dudestar/codec2/pack.cpp","E:/devel/git/dudestar/codec2/qbase.cpp","E:/devel/git/dudestar/codec2/qbase.h","E:/devel/git/dudestar/codec2/quantise.cpp","E:/devel/git/dudestar/codec2/quantise.h","E:/devel/git/dudestar/crs129.cpp","E:/devel/git/dudestar/crs129.h","E:/devel/git/dudestar/dcscodec.cpp","E:/devel/git/dudestar/dcscodec.h","E:/devel/git/dudestar/dmrcodec.cpp","E:/devel/git/dudestar/dmrcodec.h","E:/devel/git/dudestar/dudestar.cpp","E:/devel/git/dudestar/dudestar.h","E:/devel/git/dudestar/dudestar.ui","E:/devel/git/dudestar/ecc.c","E:/devel/git/dudestar/ecc_const.h","E:/devel/git/dudestar/httpmanager.cpp","E:/devel/git/dudestar/httpmanager.h","E:/devel/git/dudestar/imbe7200x4400.c","E:/devel/git/dudestar/imbe7200x4400_const.h","E:/devel/git/dudestar/imbe_vocoder/aux_sub.cc","E:/devel/git/dudestar/imbe_vocoder/aux_sub.h","E:/devel/git/dudestar/imbe_vocoder/basic_op.h","E:/devel/git/dudestar/imbe_vocoder/basicop2.cc","E:/devel/git/dudestar/imbe_vocoder/ch_decode.cc","E:/devel/git/dudestar/imbe_vocoder/ch_decode.h","E:/devel/git/dudestar/imbe_vocoder/ch_encode.cc","E:/devel/git/dudestar/imbe_vocoder/ch_encode.h","E:/devel/git/dudestar/imbe_vocoder/dc_rmv.cc","E:/devel/git/dudestar/imbe_vocoder/dc_rmv.h","E:/devel/git/dudestar/imbe_vocoder/decode.cc","E:/devel/git/dudestar/imbe_vocoder/decode.h","E:/devel/git/dudestar/imbe_vocoder/dsp_sub.cc","E:/devel/git/dudestar/imbe_vocoder/dsp_sub.h","E:/devel/git/dudestar/imbe_vocoder/encode.cc","E:/devel/git/dudestar/imbe_vocoder/encode.h","E:/devel/git/dudestar/imbe_vocoder/globals.h","E:/devel/git/dudestar/imbe_vocoder/imbe.h","E:/devel/git/dudestar/imbe_vocoder/imbe_vocoder.cc","E:/devel/git/dudestar/imbe_vocoder/imbe_vocoder.h","E:/devel/git/dudestar/imbe_vocoder/math_sub.cc","E:/devel/git/dudestar/imbe_vocoder/math_sub.h","E:/devel/git/dudestar/imbe_vocoder/pe_lpf.cc","E:/devel/git/dudestar/imbe_vocoder/pe_lpf.h","E:/devel/git/dudestar/imbe_vocoder/pitch_est.cc","E:/devel/git/dudestar/imbe_vocoder/pitch_est.h","E:/devel/git/dudestar/imbe_vocoder/pitch_ref.cc","E:/devel/git/dudestar/imbe_vocoder/pitch_ref.h","E:/devel/git/dudestar/imbe_vocoder/qnt_sub.cc","E:/devel/git/dudestar/imbe_vocoder/qnt_sub.h","E:/devel/git/dudestar/imbe_vocoder/rand_gen.cc","E:/devel/git/dudestar/imbe_vocoder/rand_gen.h","E:/devel/git/dudestar/imbe_vocoder/sa_decode.cc","E:/devel/git/dudestar/imbe_vocoder/sa_decode.h","E:/devel/git/dudestar/imbe_vocoder/sa_encode.cc","E:/devel/git/dudestar/imbe_vocoder/sa_encode.h","E:/devel/git/dudestar/imbe_vocoder/sa_enh.cc","E:/devel/git/dudestar/imbe_vocoder/sa_enh.h","E:/devel/git/dudestar/imbe_vocoder/tbls.cc","E:/devel/git/dudestar/imbe_vocoder/tbls.h","E:/devel/git/dudestar/imbe_vocoder/typedef.h","E:/devel/git/dudestar/imbe_vocoder/typedefs.h","E:/devel/git/dudestar/imbe_vocoder/uv_synt.cc","E:/devel/git/dudestar/imbe_vocoder/uv_synt.h","E:/devel/git/dudestar/imbe_vocoder/v_synt.cc","E:/devel/git/dudestar/imbe_vocoder/v_synt.h","E:/devel/git/dudestar/imbe_vocoder/v_uv_det.cc","E:/devel/git/dudestar/imbe_vocoder/v_uv_det.h","E:/devel/git/dudestar/levelmeter.cpp","E:/devel/git/dudestar/levelmeter.h","E:/devel/git/dudestar/m17codec.cpp","E:/devel/git/dudestar/m17codec.h","E:/devel/git/dudestar/main.cpp","E:/devel/git/dudestar/mbedec.cpp","E:/devel/git/dudestar/mbedec.h","E:/devel/git/dudestar/mbeenc.cc","E:/devel/git/dudestar/mbeenc.h","E:/devel/git/dudestar/mbelib.c","E:/devel/git/dudestar/mbelib.h","E:/devel/git/dudestar/mbelib_const.h","E:/devel/git/dudestar/mbelib_parms.h","E:/devel/git/dudestar/nxdncodec.cpp","E:/devel/git/dudestar/nxdncodec.h","E:/devel/git/dudestar/p25codec.cpp","E:/devel/git/dudestar/p25codec.h","E:/devel/git/dudestar/refcodec.cpp","E:/devel/git/dudestar/refcodec.h","E:/devel/git/dudestar/serialambe.cpp","E:/devel/git/dudestar/serialambe.h","E:/devel/git/dudestar/tools/keepalive.h","E:/devel/git/dudestar/tools/keepalive.mm","E:/devel/git/dudestar/vocoder_tables.h","E:/devel/git/dudestar/xrfcodec.cpp","E:/devel/git/dudestar/xrfcodec.h","E:/devel/git/dudestar/ysfcodec.cpp","E:/devel/git/dudestar/ysfcodec.h"],"translations":["E:/devel/git/dudestar/translations/dudestar_fr_FR.ts"]}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.