00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __config_h__
00023 #define __config_h__
00024
00025 #define DEFAULT_USARSIM_HOST "127.0.0.1"
00026 #define DEFAULT_USARSIM_PORT 3000
00027 #define DEFAULT_USARSIM_IMGSERVER_PORT 5003
00028 #define DEFAULT_USARSIM_ROBOT "ERS"
00029 #define DEFAULT_USARSIM_LOCATION "0,0,-0.6"
00030 #define DEFAULT_USARSIM_ROBOT_TEAM NO_TEAM
00031 #define DEFAULT_USARSIM_BALL_LOCATION "-2,0,-0.04"
00032
00033 #define DEFAULT_DISPLAY_IMAGE_FPS false
00034
00035 #define DEBUG_USARSIM_PROTOCOL false
00036
00037 #define BUFFER_SIZE 2048
00038
00039
00040 #if defined(__GNUC__) && __GNUC__ >= 3
00041 # define PRINTF_FORMAT __attribute__((__format__(printf, 2, 3)))
00042 #else
00043 # define PRINTF_FORMAT
00044 #endif
00045
00046 #endif