forked from srynot4sale/freeems-tuner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.default.ini
79 lines (71 loc) · 2.5 KB
/
config.default.ini
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright 2008, 2009 Aaron Barnes
#
# This file is part of the FreeEMS project.
#
# FreeEMS software is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# FreeEMS software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with any FreeEMS software. If not, see <http://www.gnu.org/licenses/>.
#
# We ask that if you make any changes to this file you send them upstream to us at admin@diyefi.org
###################################################################
# Do not edit this file!! #
###################################################################
# If you would like to make any changes to configuration,
# Please create a file named my_config.ini in the data directory
# Everything in this file is overriddable by the my_config.ini file,
# but remember to include section titles above config directives
[Protocol]
# Corresponds to a directory name in comms/protocols/
default = IFreeEMS_Vanilla
# Corresponds to a subdriectory in above folder
default_version = v0_0_1
[Logging]
# Whether to print log messages to the terminal
to_terminal = False
# Whether to print log to file
to_file = False
# How much info to log
# Possible values are: DEBUG, INFO, WARNING, ERROR, CRITICAL
verboseness = DEBUG
# Log controller action queue sizes
log_queues = False
# Print all packets to gui diagnostics
enable_gui_diagnostics = False
[Gui]
# Real time data update frequency (milliseconds)
realtime_update_frequency = 100
[Comms]
# Corresponds to a file name in comms/
default = Test
[Comms_Serial]
# Serial port number or filepath to serial-like port
port = 0
# Baudrate
baudrate = 115200
# Number of data bits
# Possible values are: 5, 6, 7, 8
bytesize = 8
# Enable parity checking
# Possible values are: NONE, EVEN, ODD
parity = ODD
# Number of stop bits
# Possible values are: 1, 2
stopbits = 1
# Set a timeout value, 0 for waiting forever
timeout = 0
# Enable software flow control
xonxoff = Off
# Enable RTS/CTS flow control
rtscts = Off
[Comms_File]
# Path to file containing test data. Relative to data directory
path = test_input.bin