Main Page
Namespaces
Classes
Files
File List
File Members
settings.h
Go to the documentation of this file.
1
#pragma once
2
3
namespace
MSP430Proxy
4
{
5
enum
BreakpointPolicy
6
{
7
HardwareOnly
,
8
HardwareThenSoftware
,
9
SoftwareOnly
,
10
};
11
12
struct
GlobalSettings
13
{
14
bool
EnableEEMMode
;
15
bool
InstantBreakpointCleanup
;
16
unsigned
short
BreakpointInstruction
;
17
BreakpointPolicy
SoftBreakPolicy
;
18
const
char
*
PortName
;
19
unsigned
Voltage
;
20
int
ListenPort
;
21
bool
SingleSessionOnly
;
22
bool
AutoErase
;
23
24
GlobalSettings
()
25
{
26
EnableEEMMode
=
true
;
27
InstantBreakpointCleanup
=
true
;
28
BreakpointInstruction
= 0x4343;
29
SoftBreakPolicy
=
HardwareThenSoftware
;
30
PortName
=
"USB"
;
31
Voltage
= 3333;
32
ListenPort
= 2000;
33
SingleSessionOnly
=
true
;
34
AutoErase
=
false
;
35
}
36
};
37
}