settings.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace MSP430Proxy
4 {
6  {
10  };
11 
13  {
16  unsigned short BreakpointInstruction;
18  const char *PortName;
19  unsigned Voltage;
22  bool AutoErase;
23 
25  {
26  EnableEEMMode = true;
28  BreakpointInstruction = 0x4343;
30  PortName = "USB";
31  Voltage = 3333;
32  ListenPort = 2000;
33  SingleSessionOnly = true;
34  AutoErase = false;
35  }
36  };
37 }