mirror of
https://github.com/etaHEN/etaHEN.git
synced 2026-01-15 12:33:15 +08:00
25 lines
440 B
C
25 lines
440 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
/*
|
|
* Enable debug logging via TCP connection to PC
|
|
*/
|
|
#define PC_DEBUG_ENABLED 0
|
|
|
|
/*
|
|
* PC IP address for debug logging
|
|
*/
|
|
#define PC_DEBUG_IP "10.0.0.143"
|
|
|
|
/*
|
|
* PC IP port for debug logging
|
|
*/
|
|
#define PC_DEBUG_PORT 5655
|
|
|
|
/*
|
|
* TCP port to run the RPC server on
|
|
*/
|
|
#define RPC_TCP_PORT 9002
|
|
|
|
#endif // CONFIG_H
|