2017-11-09 23:09:59 +03:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
|
|
|
// LIB VERSION
|
|
|
|
#define MAJOR_VERSION 0
|
2017-11-26 19:19:43 +03:00
|
|
|
#define MINOR_VERSION 1
|
2017-11-09 23:09:59 +03:00
|
|
|
#define REVISION_VERSION 0
|
|
|
|
|
|
|
|
// sqlite config
|
|
|
|
#define DATABASE_NAME "songdata.dat"
|
2017-12-13 22:40:29 +03:00
|
|
|
#define BUFFER_NAME "buffer"
|
2017-11-09 23:09:59 +03:00
|
|
|
|
|
|
|
// network config
|
2017-11-28 20:32:54 +03:00
|
|
|
#define DEFAULT_ADRESS "DEFAULT_ADRESS"
|
|
|
|
#define DEFAULT_NRTWORK 0 // the network number from which the address will be taken.
|
|
|
|
#define LOCAL_HOST "127.0.0.1"
|
2017-11-29 21:36:29 +03:00
|
|
|
#define DEFAULT_PORT 1994
|
2017-12-09 21:55:37 +03:00
|
|
|
#define MAX_SYNC_TIME 20 * 1000 // 10 sec on millisec
|
|
|
|
#define SYNC_TIME 5 * 1000 // 5 sec on millisec
|
2017-11-22 22:34:55 +03:00
|
|
|
#define DEEP_SCANER_INTERVAL 10000 // 10 sec
|
2017-11-09 23:09:59 +03:00
|
|
|
|
2017-12-09 21:55:37 +03:00
|
|
|
// sync
|
2017-12-17 01:23:38 +03:00
|
|
|
#define MIN_DIFFERENCE 10 // millisec
|
2017-12-09 21:55:37 +03:00
|
|
|
|
2017-11-09 23:09:59 +03:00
|
|
|
#endif // CONFIG_H
|