-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcmdmgr.h
31 lines (26 loc) · 872 Bytes
/
cmdmgr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//=========================================================================
// cmdmgr.h
//
// header file for commandline / configuration management for runMag utility.
//
// Author: David Witten, KD0EAG
// Date: June 19, 2020
// License: GPL 3.0
//=========================================================================
#ifndef SWX3100CMDMGR_h
#define SWX3100CMDMGR_h
#include "runMag.h"
#include "main.h"
//------------------------------------------
// Prototypes
//------------------------------------------
long currentTimeMillis();
struct tm *getUTC();
void listSBCs();
int buildLogFilePath(pList *p);
void showCountGainRelationship();
//int readConfigFromFile(pList *p, char *cfgFile);
//int saveConfigToFile(pList *p, char *cfgFile);
void showSettings(pList *p);
int getCommandLine(int argc, char** argv, pList *p);
#endif // SWX3100CMDMGR_h