0
|
1 |
#
|
|
2 |
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
# All rights reserved.
|
|
4 |
# This component and the accompanying materials are made available
|
|
5 |
# under the terms of "Eclipse Public License v1.0"
|
|
6 |
# which accompanies this distribution, and is available
|
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
#
|
|
9 |
# Initial Contributors:
|
|
10 |
# Nokia Corporation - initial contribution.
|
|
11 |
#
|
|
12 |
# Contributors:
|
|
13 |
#
|
|
14 |
# Description:
|
|
15 |
#
|
|
16 |
#
|
|
17 |
|
|
18 |
### Parameters for serial connection
|
|
19 |
#init string
|
|
20 |
#INIT_STRING = 115200,n,8,1
|
|
21 |
#INIT_STRING = 9600,n,8,1
|
|
22 |
|
|
23 |
#comm port
|
|
24 |
COMPORT = COM7
|
|
25 |
|
|
26 |
#timeout for communication operations, in ms
|
|
27 |
#default value is 40000
|
|
28 |
#TIMEOUT=60000
|
|
29 |
|
|
30 |
#enable hw flow control
|
|
31 |
#should be "1" to enable
|
|
32 |
#disabled by default
|
|
33 |
#HW_FLOWCONTROL=1
|
|
34 |
|
|
35 |
#make pause after sending over serial, in ms
|
|
36 |
#can be used to avoid overflow problem
|
|
37 |
# default value is 0
|
|
38 |
#SEND_PAUSE=1000
|
|
39 |
|
|
40 |
#set the size for output buffer
|
|
41 |
# can be set smaller to avoid overrun
|
|
42 |
#SEND_SIZE=1000
|