mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-02-15 03:54:14 +01:00
Make the various modes optional within the executable.
This commit is contained in:
parent
c2bd065b2d
commit
9d41681990
13
Defines.h
13
Defines.h
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2015,2016,2017,2018,2020,2021 by Jonathan Naylor G4KLX
|
||||
* Copyright (C) 2015,2016,2017,2018,2020,2021,2023 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
|
||||
|
|
@ -19,6 +19,17 @@
|
|||
#if !defined(Defines_H)
|
||||
#define Defines_H
|
||||
|
||||
// Define the wanted modes to compile into the host here
|
||||
#define USE_DSTAR
|
||||
#define USE_DMR
|
||||
#define USE_YSF
|
||||
#define USE_P25
|
||||
#define USE_NXDN
|
||||
#define USE_POCSAG
|
||||
#define USE_FM
|
||||
#define USE_AX25
|
||||
#define USE_M17
|
||||
|
||||
const unsigned char MODE_IDLE = 0U;
|
||||
const unsigned char MODE_DSTAR = 1U;
|
||||
const unsigned char MODE_DMR = 2U;
|
||||
|
|
|
|||
Loading…
Reference in a new issue