Skip to content

Commit 681f720

Browse files
committed
Adding MinComm - onecore serial terminal.
1 parent 2166e67 commit 681f720

File tree

3 files changed

+868
-0
lines changed

3 files changed

+868
-0
lines changed

MinComm/LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
2+
3+
The MIT License (MIT)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

MinComm/MinComm.vcxproj

+225
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
<ProjectConfiguration Include="Debug|ARM">
21+
<Configuration>Debug</Configuration>
22+
<Platform>ARM</Platform>
23+
</ProjectConfiguration>
24+
<ProjectConfiguration Include="Release|ARM">
25+
<Configuration>Release</Configuration>
26+
<Platform>ARM</Platform>
27+
</ProjectConfiguration>
28+
</ItemGroup>
29+
<PropertyGroup Label="Globals">
30+
<ProjectGuid>{243E8ED0-58CF-4322-BB7D-D52E70352608}</ProjectGuid>
31+
<Keyword>Win32Proj</Keyword>
32+
<RootNamespace>MinComm</RootNamespace>
33+
<WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
34+
</PropertyGroup>
35+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
37+
<ConfigurationType>Application</ConfigurationType>
38+
<UseDebugLibraries>true</UseDebugLibraries>
39+
<PlatformToolset>v140</PlatformToolset>
40+
<CharacterSet>Unicode</CharacterSet>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
43+
<ConfigurationType>Application</ConfigurationType>
44+
<UseDebugLibraries>false</UseDebugLibraries>
45+
<PlatformToolset>v140</PlatformToolset>
46+
<WholeProgramOptimization>true</WholeProgramOptimization>
47+
<CharacterSet>Unicode</CharacterSet>
48+
</PropertyGroup>
49+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
50+
<ConfigurationType>Application</ConfigurationType>
51+
<UseDebugLibraries>true</UseDebugLibraries>
52+
<PlatformToolset>v140</PlatformToolset>
53+
<CharacterSet>Unicode</CharacterSet>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
56+
<ConfigurationType>Application</ConfigurationType>
57+
<UseDebugLibraries>false</UseDebugLibraries>
58+
<PlatformToolset>v140</PlatformToolset>
59+
<WholeProgramOptimization>true</WholeProgramOptimization>
60+
<CharacterSet>Unicode</CharacterSet>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
63+
<ConfigurationType>Application</ConfigurationType>
64+
<UseDebugLibraries>true</UseDebugLibraries>
65+
<PlatformToolset>v140</PlatformToolset>
66+
<CharacterSet>Unicode</CharacterSet>
67+
</PropertyGroup>
68+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
69+
<ConfigurationType>Application</ConfigurationType>
70+
<UseDebugLibraries>false</UseDebugLibraries>
71+
<PlatformToolset>v140</PlatformToolset>
72+
<WholeProgramOptimization>true</WholeProgramOptimization>
73+
<CharacterSet>Unicode</CharacterSet>
74+
</PropertyGroup>
75+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
76+
<ImportGroup Label="ExtensionSettings">
77+
</ImportGroup>
78+
<ImportGroup Label="Shared">
79+
</ImportGroup>
80+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
81+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
82+
<Import Project="$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props" Condition="exists('$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props')" />
83+
</ImportGroup>
84+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
85+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
86+
<Import Project="$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props" Condition="exists('$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props')" />
87+
</ImportGroup>
88+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
89+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
90+
<Import Project="$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props" Condition="exists('$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props')" />
91+
</ImportGroup>
92+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
93+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
94+
<Import Project="$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props" Condition="exists('$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props')" />
95+
</ImportGroup>
96+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
97+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
98+
<Import Project="$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props" Condition="exists('$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props')" />
99+
</ImportGroup>
100+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
101+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
102+
<Import Project="$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props" Condition="exists('$(WindowsSdkDir)\Extension SDKs\WindowsIoT\$(TargetPlatformVersion)\DesignTime\Retail\x86\WindowsIoT.props')" />
103+
</ImportGroup>
104+
<PropertyGroup Label="UserMacros" />
105+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
106+
<LinkIncremental>true</LinkIncremental>
107+
</PropertyGroup>
108+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
109+
<LinkIncremental>true</LinkIncremental>
110+
</PropertyGroup>
111+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
112+
<LinkIncremental>true</LinkIncremental>
113+
</PropertyGroup>
114+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
115+
<LinkIncremental>false</LinkIncremental>
116+
</PropertyGroup>
117+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
118+
<LinkIncremental>false</LinkIncremental>
119+
</PropertyGroup>
120+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
121+
<LinkIncremental>false</LinkIncremental>
122+
</PropertyGroup>
123+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
124+
<ClCompile>
125+
<WarningLevel>Level4</WarningLevel>
126+
<TreatWarningAsError>true</TreatWarningAsError>
127+
<SDLCheck>true</SDLCheck>
128+
<Optimization>Disabled</Optimization>
129+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
130+
</ClCompile>
131+
<Link>
132+
<SubSystem>Console</SubSystem>
133+
<GenerateDebugInformation>true</GenerateDebugInformation>
134+
<AdditionalDependencies>onecore.lib;$(AdditionalDependencies)</AdditionalDependencies>
135+
</Link>
136+
</ItemDefinitionGroup>
137+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
138+
<ClCompile>
139+
<WarningLevel>Level4</WarningLevel>
140+
<TreatWarningAsError>true</TreatWarningAsError>
141+
<SDLCheck>true</SDLCheck>
142+
<Optimization>Disabled</Optimization>
143+
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
144+
</ClCompile>
145+
<Link>
146+
<SubSystem>Console</SubSystem>
147+
<GenerateDebugInformation>true</GenerateDebugInformation>
148+
<AdditionalDependencies>onecore.lib;$(AdditionalDependencies)</AdditionalDependencies>
149+
</Link>
150+
</ItemDefinitionGroup>
151+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
152+
<ClCompile>
153+
<WarningLevel>Level4</WarningLevel>
154+
<TreatWarningAsError>true</TreatWarningAsError>
155+
<SDLCheck>true</SDLCheck>
156+
<Optimization>Disabled</Optimization>
157+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
158+
</ClCompile>
159+
<Link>
160+
<SubSystem>Console</SubSystem>
161+
<GenerateDebugInformation>true</GenerateDebugInformation>
162+
<AdditionalDependencies>onecore.lib;$(AdditionalDependencies)</AdditionalDependencies>
163+
</Link>
164+
</ItemDefinitionGroup>
165+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
166+
<ClCompile>
167+
<WarningLevel>Level4</WarningLevel>
168+
<TreatWarningAsError>true</TreatWarningAsError>
169+
<SDLCheck>true</SDLCheck>
170+
<Optimization>MaxSpeed</Optimization>
171+
<FunctionLevelLinking>true</FunctionLevelLinking>
172+
<IntrinsicFunctions>true</IntrinsicFunctions>
173+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
174+
</ClCompile>
175+
<Link>
176+
<SubSystem>Console</SubSystem>
177+
<GenerateDebugInformation>true</GenerateDebugInformation>
178+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
179+
<OptimizeReferences>true</OptimizeReferences>
180+
<AdditionalDependencies>onecore.lib;$(AdditionalDependencies)</AdditionalDependencies>
181+
</Link>
182+
</ItemDefinitionGroup>
183+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
184+
<ClCompile>
185+
<WarningLevel>Level4</WarningLevel>
186+
<TreatWarningAsError>true</TreatWarningAsError>
187+
<SDLCheck>true</SDLCheck>
188+
<Optimization>MaxSpeed</Optimization>
189+
<FunctionLevelLinking>true</FunctionLevelLinking>
190+
<IntrinsicFunctions>true</IntrinsicFunctions>
191+
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
192+
</ClCompile>
193+
<Link>
194+
<SubSystem>Console</SubSystem>
195+
<GenerateDebugInformation>true</GenerateDebugInformation>
196+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
197+
<OptimizeReferences>true</OptimizeReferences>
198+
<AdditionalDependencies>onecore.lib;$(AdditionalDependencies)</AdditionalDependencies>
199+
</Link>
200+
</ItemDefinitionGroup>
201+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
202+
<ClCompile>
203+
<WarningLevel>Level4</WarningLevel>
204+
<TreatWarningAsError>true</TreatWarningAsError>
205+
<SDLCheck>true</SDLCheck>
206+
<Optimization>MaxSpeed</Optimization>
207+
<FunctionLevelLinking>true</FunctionLevelLinking>
208+
<IntrinsicFunctions>true</IntrinsicFunctions>
209+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
210+
</ClCompile>
211+
<Link>
212+
<SubSystem>Console</SubSystem>
213+
<GenerateDebugInformation>true</GenerateDebugInformation>
214+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
215+
<OptimizeReferences>true</OptimizeReferences>
216+
<AdditionalDependencies>onecore.lib;$(AdditionalDependencies)</AdditionalDependencies>
217+
</Link>
218+
</ItemDefinitionGroup>
219+
<ItemGroup>
220+
<ClCompile Include="main.cpp" />
221+
</ItemGroup>
222+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
223+
<ImportGroup Label="ExtensionTargets">
224+
</ImportGroup>
225+
</Project>

0 commit comments

Comments
 (0)