# lines starting with # are ignored as comments ####################### # IP address of computer running PSX: # (change this to the one _you_ use) psxIP = 127.0.0.1 ####################### # TCP/IP port on which the PSX server is listening for clients: psxPort = 10749 ####################### # REQINTV: interval (msec) at which the _webpage_ requests map updates from the Wheramium _webserver_ # e.g. # 500 ms ( 2 Hz) # 250 ms ( 4 Hz) # 100 ms (10 Hz) # 50 ms (20 Hz) # !!! CAUTION !!! Other values possible but do not set too low # (not lower than 50 ms or so), else may crash browser or system REQINTV = 100 ####################### # POLLINTV: interval (msec) at which the Wheramium _PSX client_ actually # consumes and processes the coordinate updates from the PSX _Boost server_ # e.g. # 100 ms ( 10 Hz) # 50 ms ( 20 Hz) # 10 ms (100 Hz) # !!! CAUTION !!! Small values may improve "smoothness" but will also stress the CPU. # Try out various values, but at your own risk and discretion. POLLINTV = 50 ####################### # NOTE: # The relation between REQINTV and POLLINTV may also play a role. # All this is also system (hardware) dependent. # REQINTV = 100 ms and POLLINTV = 50 ms as pre-set here may be a little too cautious on modern systems; # e.g. on an i7-8700 (3.2 GHz, 6 cores) with Windows 10 a smooth (but demanding on the CPU?) combo was # REQINTV = 50 ms and POLLINTV = 10 # end of file