Skip to content

Commit 3c9072f

Browse files
aethanielcmaglie
authored andcommitted
Adding some forgotten validation projects
Signed-off-by: Thibaut VIARD <[email protected]>
1 parent 13d4fab commit 3c9072f

File tree

11 files changed

+1954
-219
lines changed

11 files changed

+1954
-219
lines changed

cores/validation/validation_PWM/build_as6/test.cppproj

Lines changed: 164 additions & 122 deletions
Large diffs are not rendered by default.

cores/validation/validation_PWM/test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static int fadeAmount = 5; // how many points to fade the LED by
2323

2424
void setup( void )
2525
{
26-
for ( int i=4 ; i < 14 ; i++ )
26+
for ( int i=3 ; i < 14 ; i++ )
2727
{
2828
pinMode( i, OUTPUT ) ;
2929
}
@@ -34,7 +34,7 @@ void setup( void )
3434
SERIAL_PORT_MONITOR.println( brightness ) ;
3535
*/
3636
}
37-
37+
/*
3838
void loop( void )
3939
{
4040
int i ;
@@ -57,4 +57,4 @@ void loop( void )
5757
// wait for 30 milliseconds to see the dimming effect
5858
delay( 30 ) ;
5959
}
60-
60+
*/
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+

2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Atmel Studio Solution File, Format Version 11.00
4+
Project("{E66E83B9-2572-4076-B26E-6BE79FF3018A}") = "test", "test.cppproj", "{B3F859AD-E162-4C2F-9684-EAC6932FEC80}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|ARM = Debug|ARM
9+
Release|ARM = Release|ARM
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Debug|ARM.ActiveCfg = Debug|ARM
13+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Debug|ARM.Build.0 = Debug|ARM
14+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Release|ARM.ActiveCfg = Release|ARM
15+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Release|ARM.Build.0 = Release|ARM
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

cores/validation/validation_adc/build_as6/test.cppproj

Lines changed: 493 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
Copyright (c) 2014 Arduino. All right reserved.
3+
4+
This library is free software; you can redistribute it and/or
5+
modify it under the terms of the GNU Lesser General Public
6+
License as published by the Free Software Foundation; either
7+
version 2.1 of the License, or (at your option) any later version.
8+
9+
This library is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12+
See the GNU Lesser General Public License for more details.
13+
14+
You should have received a copy of the GNU Lesser General Public
15+
License along with this library; if not, write to the Free Software
16+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17+
*/
18+
19+
#include "Arduino.h"
20+
21+
volatile uint32_t t_start=0 ;
22+
volatile uint32_t t_end=0 ;
23+
volatile uint32_t t_delta=0 ;
24+
25+
#define NUM_SAMPLES (256ul)
26+
27+
void setup( void )
28+
{
29+
int adc_value[NUM_SAMPLES] ;
30+
31+
SERIAL_PORT_MONITOR.begin( 115200 ) ; // Output to EDBG Virtual COM Port
32+
33+
SERIAL_PORT_MONITOR.print( "Analog pins: \r\n" ) ;
34+
35+
t_start=millis() ;
36+
for ( uint32_t i = 0 ; i < NUM_SAMPLES ; i++ )
37+
{
38+
adc_value[i] = analogRead( A1 ) ;
39+
}
40+
t_end=millis() ;
41+
t_delta=t_end-t_start ;
42+
43+
SERIAL_PORT_MONITOR.print( t_delta, DEC ) ;
44+
SERIAL_PORT_MONITOR.println() ;
45+
}
46+
47+
void loop( void )
48+
{
49+
}

cores/validation/validation_core/build_as6/test.cppproj

Lines changed: 93 additions & 94 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,15 @@
5353
<com_atmel_avrdbg_tool_edbg>
5454
<ToolOptions>
5555
<InterfaceProperties>
56-
<SwdClock>4000000</SwdClock>
56+
<SwdClock>2000000</SwdClock>
5757
</InterfaceProperties>
5858
<InterfaceName>SWD</InterfaceName>
5959
</ToolOptions>
6060
<ToolType>com.atmel.avrdbg.tool.edbg</ToolType>
61-
<ToolNumber>ATML2320021800000003</ToolNumber>
61+
<ToolNumber>ATML2320021800000007</ToolNumber>
6262
<ToolName>EDBG</ToolName>
6363
</com_atmel_avrdbg_tool_edbg>
64+
<preserveEEPROM>true</preserveEEPROM>
6465
</PropertyGroup>
6566
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
6667
<ToolchainSettings>
@@ -89,12 +90,12 @@
8990
<Value>../../../../../libraries/Wire</Value>
9091
</ListValues>
9192
</armgcc.compiler.directories.IncludePaths>
93+
<armgcc.compiler.optimization.level>Optimize for size (-Os)</armgcc.compiler.optimization.level>
9294
<armgcc.compiler.optimization.PrepareFunctionsForGarbageCollection>True</armgcc.compiler.optimization.PrepareFunctionsForGarbageCollection>
9395
<armgcc.compiler.optimization.PrepareDataForGarbageCollection>True</armgcc.compiler.optimization.PrepareDataForGarbageCollection>
9496
<armgcc.compiler.optimization.EnableLongCalls>False</armgcc.compiler.optimization.EnableLongCalls>
9597
<armgcc.compiler.warnings.AllWarnings>True</armgcc.compiler.warnings.AllWarnings>
9698
<armgcc.compiler.miscellaneous.OtherFlags>-march=armv6-m</armgcc.compiler.miscellaneous.OtherFlags>
97-
<armgcccpp.compiler.general.ChangeDefaultCharTypeUnsigned>False</armgcccpp.compiler.general.ChangeDefaultCharTypeUnsigned>
9899
<armgcccpp.compiler.symbols.DefSymbols>
99100
<ListValues>
100101
<Value>F_CPU=48000000L</Value>
@@ -113,12 +114,12 @@
113114
<Value>../../../../../libraries/Wire</Value>
114115
</ListValues>
115116
</armgcccpp.compiler.directories.IncludePaths>
117+
<armgcccpp.compiler.optimization.level>Optimize for size (-Os)</armgcccpp.compiler.optimization.level>
116118
<armgcccpp.compiler.optimization.PrepareFunctionsForGarbageCollection>True</armgcccpp.compiler.optimization.PrepareFunctionsForGarbageCollection>
117119
<armgcccpp.compiler.optimization.PrepareDataForGarbageCollection>True</armgcccpp.compiler.optimization.PrepareDataForGarbageCollection>
118120
<armgcccpp.compiler.optimization.EnableLongCalls>False</armgcccpp.compiler.optimization.EnableLongCalls>
119121
<armgcccpp.compiler.warnings.AllWarnings>True</armgcccpp.compiler.warnings.AllWarnings>
120122
<armgcccpp.compiler.miscellaneous.OtherFlags>-std=c++98 -march=armv6-m</armgcccpp.compiler.miscellaneous.OtherFlags>
121-
<armgcccpp.linker.general.UseNewlibNano>False</armgcccpp.linker.general.UseNewlibNano>
122123
<armgcccpp.linker.libraries.Libraries>
123124
<ListValues>
124125
<Value>libm</Value>
@@ -131,10 +132,8 @@
131132
</armgcccpp.linker.libraries.LibrarySearchPaths>
132133
<armgcccpp.linker.optimization.GarbageCollectUnusedSections>True</armgcccpp.linker.optimization.GarbageCollectUnusedSections>
133134
<armgcccpp.linker.memorysettings.ExternalRAM>False</armgcccpp.linker.memorysettings.ExternalRAM>
134-
<armgcccpp.linker.miscellaneous.LinkerFlags>--specs=nosys.specs -Tflash_with_bootloader.ld -march=armv6-m</armgcccpp.linker.miscellaneous.LinkerFlags>
135+
<armgcccpp.linker.miscellaneous.LinkerFlags>--specs=nosys.specs -Tflash_without_bootloader.ld -march=armv6-m</armgcccpp.linker.miscellaneous.LinkerFlags>
135136
<armgcccpp.preprocessingassembler.general.DefaultIncludePath>False</armgcccpp.preprocessingassembler.general.DefaultIncludePath>
136-
<armgcc.compiler.optimization.level>Optimize for size (-Os)</armgcc.compiler.optimization.level>
137-
<armgcccpp.compiler.optimization.level>Optimize for size (-Os)</armgcccpp.compiler.optimization.level>
138137
<armgcccpp.preprocessingassembler.general.IncludePaths>
139138
<ListValues>
140139
<Value>../../../../../../../tools/CMSIS/Device/ATMEL</Value>
@@ -152,93 +151,93 @@
152151
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
153152
<ToolchainSettings>
154153
<ArmGccCpp>
155-
<armgcc.common.outputfiles.hex>False</armgcc.common.outputfiles.hex>
156-
<armgcc.common.outputfiles.lss>True</armgcc.common.outputfiles.lss>
157-
<armgcc.common.outputfiles.eep>False</armgcc.common.outputfiles.eep>
158-
<armgcc.common.outputfiles.bin>True</armgcc.common.outputfiles.bin>
159-
<armgcc.common.outputfiles.srec>False</armgcc.common.outputfiles.srec>
160-
<armgcc.compiler.general.ChangeDefaultCharTypeUnsigned>True</armgcc.compiler.general.ChangeDefaultCharTypeUnsigned>
161-
<armgcc.compiler.symbols.DefSymbols>
162-
<ListValues>
163-
<Value>F_CPU=48000000L</Value>
164-
<Value>DEBUG</Value>
165-
</ListValues>
166-
</armgcc.compiler.symbols.DefSymbols>
167-
<armgcc.compiler.directories.DefaultIncludePath>False</armgcc.compiler.directories.DefaultIncludePath>
168-
<armgcc.compiler.directories.IncludePaths>
169-
<ListValues>
170-
<Value>../../../../../../../tools/CMSIS/Device/ATMEL</Value>
171-
<Value>../../../../../../../tools/CMSIS/CMSIS/Include</Value>
172-
<Value>../../../../arduino</Value>
173-
<Value>../../../../arduino/USB</Value>
174-
<Value>../../../../../variants/arduino_zero</Value>
175-
<Value>../../../../../libraries/SPI</Value>
176-
<Value>../../../../../libraries/Wire</Value>
177-
</ListValues>
178-
</armgcc.compiler.directories.IncludePaths>
179-
<armgcc.compiler.optimization.level>Optimize (-O1)</armgcc.compiler.optimization.level>
180-
<armgcc.compiler.optimization.PrepareFunctionsForGarbageCollection>True</armgcc.compiler.optimization.PrepareFunctionsForGarbageCollection>
181-
<armgcc.compiler.optimization.PrepareDataForGarbageCollection>True</armgcc.compiler.optimization.PrepareDataForGarbageCollection>
182-
<armgcc.compiler.optimization.EnableLongCalls>False</armgcc.compiler.optimization.EnableLongCalls>
183-
<armgcc.compiler.optimization.DebugLevel>Maximum (-g3)</armgcc.compiler.optimization.DebugLevel>
184-
<armgcc.compiler.warnings.AllWarnings>True</armgcc.compiler.warnings.AllWarnings>
185-
<armgcc.compiler.miscellaneous.OtherFlags>-march=armv6-m</armgcc.compiler.miscellaneous.OtherFlags>
186-
<armgcccpp.compiler.general.ChangeDefaultCharTypeUnsigned>True</armgcccpp.compiler.general.ChangeDefaultCharTypeUnsigned>
187-
<armgcccpp.compiler.symbols.DefSymbols>
188-
<ListValues>
189-
<Value>F_CPU=48000000L</Value>
190-
<Value>DEBUG</Value>
191-
<Value>USB_VID=0x2341</Value>
192-
<Value>USB_PID=0x004d</Value>
193-
</ListValues>
194-
</armgcccpp.compiler.symbols.DefSymbols>
195-
<armgcccpp.compiler.directories.DefaultIncludePath>False</armgcccpp.compiler.directories.DefaultIncludePath>
196-
<armgcccpp.compiler.directories.IncludePaths>
197-
<ListValues>
198-
<Value>../../../../../../../tools/CMSIS/Device/ATMEL</Value>
199-
<Value>../../../../../../../tools/CMSIS/CMSIS/Include</Value>
200-
<Value>../../../../arduino</Value>
201-
<Value>../../../../arduino/USB</Value>
202-
<Value>../../../../../variants/arduino_zero</Value>
203-
<Value>../../../../../libraries/SPI</Value>
204-
<Value>../../../../../libraries/Wire</Value>
205-
</ListValues>
206-
</armgcccpp.compiler.directories.IncludePaths>
207-
<armgcccpp.compiler.optimization.level>Optimize (-O1)</armgcccpp.compiler.optimization.level>
208-
<armgcccpp.compiler.optimization.PrepareFunctionsForGarbageCollection>True</armgcccpp.compiler.optimization.PrepareFunctionsForGarbageCollection>
209-
<armgcccpp.compiler.optimization.PrepareDataForGarbageCollection>True</armgcccpp.compiler.optimization.PrepareDataForGarbageCollection>
210-
<armgcccpp.compiler.optimization.EnableLongCalls>False</armgcccpp.compiler.optimization.EnableLongCalls>
211-
<armgcccpp.compiler.optimization.DebugLevel>Maximum (-g3)</armgcccpp.compiler.optimization.DebugLevel>
212-
<armgcccpp.compiler.warnings.AllWarnings>True</armgcccpp.compiler.warnings.AllWarnings>
213-
<armgcccpp.compiler.miscellaneous.OtherFlags>-std=c++98 -march=armv6-m</armgcccpp.compiler.miscellaneous.OtherFlags>
214-
<armgcccpp.linker.general.UseNewlibNano>True</armgcccpp.linker.general.UseNewlibNano>
215-
<armgcccpp.linker.libraries.Libraries>
216-
<ListValues>
217-
<Value>libm</Value>
218-
</ListValues>
219-
</armgcccpp.linker.libraries.Libraries>
220-
<armgcccpp.linker.libraries.LibrarySearchPaths>
221-
<ListValues>
222-
<Value>../../../../../variants/arduino_zero/linker_scripts/gcc</Value>
223-
</ListValues>
224-
</armgcccpp.linker.libraries.LibrarySearchPaths>
225-
<armgcccpp.linker.optimization.GarbageCollectUnusedSections>True</armgcccpp.linker.optimization.GarbageCollectUnusedSections>
226-
<armgcccpp.linker.memorysettings.ExternalRAM />
227-
<armgcccpp.linker.miscellaneous.LinkerFlags>--specs=nosys.specs -Tflash_with_bootloader.ld -march=armv6-m -save-temps</armgcccpp.linker.miscellaneous.LinkerFlags>
228-
<armgcccpp.assembler.general.IncludePaths>
229-
<ListValues>
230-
<Value>../../../arduino</Value>
231-
</ListValues>
232-
</armgcccpp.assembler.general.IncludePaths>
233-
<armgcccpp.assembler.debugging.DebugLevel>Default (-g)</armgcccpp.assembler.debugging.DebugLevel>
234-
<armgcccpp.preprocessingassembler.general.DefaultIncludePath>False</armgcccpp.preprocessingassembler.general.DefaultIncludePath>
235-
<armgcccpp.preprocessingassembler.general.IncludePaths>
236-
<ListValues>
237-
<Value>../../../arduino</Value>
238-
</ListValues>
239-
</armgcccpp.preprocessingassembler.general.IncludePaths>
240-
<armgcccpp.preprocessingassembler.debugging.DebugLevel>Default (-Wa,-g)</armgcccpp.preprocessingassembler.debugging.DebugLevel>
241-
</ArmGccCpp>
154+
<armgcc.common.outputfiles.hex>False</armgcc.common.outputfiles.hex>
155+
<armgcc.common.outputfiles.lss>True</armgcc.common.outputfiles.lss>
156+
<armgcc.common.outputfiles.eep>False</armgcc.common.outputfiles.eep>
157+
<armgcc.common.outputfiles.bin>True</armgcc.common.outputfiles.bin>
158+
<armgcc.common.outputfiles.srec>False</armgcc.common.outputfiles.srec>
159+
<armgcc.compiler.general.ChangeDefaultCharTypeUnsigned>True</armgcc.compiler.general.ChangeDefaultCharTypeUnsigned>
160+
<armgcc.compiler.symbols.DefSymbols>
161+
<ListValues>
162+
<Value>F_CPU=48000000L</Value>
163+
<Value>DEBUG</Value>
164+
</ListValues>
165+
</armgcc.compiler.symbols.DefSymbols>
166+
<armgcc.compiler.directories.DefaultIncludePath>False</armgcc.compiler.directories.DefaultIncludePath>
167+
<armgcc.compiler.directories.IncludePaths>
168+
<ListValues>
169+
<Value>../../../../../../../tools/CMSIS/Device/ATMEL</Value>
170+
<Value>../../../../../../../tools/CMSIS/CMSIS/Include</Value>
171+
<Value>../../../../arduino</Value>
172+
<Value>../../../../arduino/USB</Value>
173+
<Value>../../../../../variants/arduino_zero</Value>
174+
<Value>../../../../../libraries/SPI</Value>
175+
<Value>../../../../../libraries/Wire</Value>
176+
</ListValues>
177+
</armgcc.compiler.directories.IncludePaths>
178+
<armgcc.compiler.optimization.level>Optimize (-O1)</armgcc.compiler.optimization.level>
179+
<armgcc.compiler.optimization.PrepareFunctionsForGarbageCollection>True</armgcc.compiler.optimization.PrepareFunctionsForGarbageCollection>
180+
<armgcc.compiler.optimization.PrepareDataForGarbageCollection>True</armgcc.compiler.optimization.PrepareDataForGarbageCollection>
181+
<armgcc.compiler.optimization.EnableLongCalls>False</armgcc.compiler.optimization.EnableLongCalls>
182+
<armgcc.compiler.optimization.DebugLevel>Maximum (-g3)</armgcc.compiler.optimization.DebugLevel>
183+
<armgcc.compiler.warnings.AllWarnings>True</armgcc.compiler.warnings.AllWarnings>
184+
<armgcc.compiler.miscellaneous.OtherFlags>-march=armv6-m</armgcc.compiler.miscellaneous.OtherFlags>
185+
<armgcccpp.compiler.general.ChangeDefaultCharTypeUnsigned>True</armgcccpp.compiler.general.ChangeDefaultCharTypeUnsigned>
186+
<armgcccpp.compiler.symbols.DefSymbols>
187+
<ListValues>
188+
<Value>F_CPU=48000000L</Value>
189+
<Value>DEBUG</Value>
190+
<Value>USB_VID=0x2341</Value>
191+
<Value>USB_PID=0x004d</Value>
192+
</ListValues>
193+
</armgcccpp.compiler.symbols.DefSymbols>
194+
<armgcccpp.compiler.directories.DefaultIncludePath>False</armgcccpp.compiler.directories.DefaultIncludePath>
195+
<armgcccpp.compiler.directories.IncludePaths>
196+
<ListValues>
197+
<Value>../../../../../../../tools/CMSIS/Device/ATMEL</Value>
198+
<Value>../../../../../../../tools/CMSIS/CMSIS/Include</Value>
199+
<Value>../../../../arduino</Value>
200+
<Value>../../../../arduino/USB</Value>
201+
<Value>../../../../../variants/arduino_zero</Value>
202+
<Value>../../../../../libraries/SPI</Value>
203+
<Value>../../../../../libraries/Wire</Value>
204+
</ListValues>
205+
</armgcccpp.compiler.directories.IncludePaths>
206+
<armgcccpp.compiler.optimization.level>Optimize (-O1)</armgcccpp.compiler.optimization.level>
207+
<armgcccpp.compiler.optimization.PrepareFunctionsForGarbageCollection>True</armgcccpp.compiler.optimization.PrepareFunctionsForGarbageCollection>
208+
<armgcccpp.compiler.optimization.PrepareDataForGarbageCollection>True</armgcccpp.compiler.optimization.PrepareDataForGarbageCollection>
209+
<armgcccpp.compiler.optimization.EnableLongCalls>False</armgcccpp.compiler.optimization.EnableLongCalls>
210+
<armgcccpp.compiler.optimization.DebugLevel>Maximum (-g3)</armgcccpp.compiler.optimization.DebugLevel>
211+
<armgcccpp.compiler.warnings.AllWarnings>True</armgcccpp.compiler.warnings.AllWarnings>
212+
<armgcccpp.compiler.miscellaneous.OtherFlags>-std=c++98 -march=armv6-m</armgcccpp.compiler.miscellaneous.OtherFlags>
213+
<armgcccpp.linker.general.UseNewlibNano>True</armgcccpp.linker.general.UseNewlibNano>
214+
<armgcccpp.linker.libraries.Libraries>
215+
<ListValues>
216+
<Value>libm</Value>
217+
</ListValues>
218+
</armgcccpp.linker.libraries.Libraries>
219+
<armgcccpp.linker.libraries.LibrarySearchPaths>
220+
<ListValues>
221+
<Value>../../../../../variants/arduino_zero/linker_scripts/gcc</Value>
222+
</ListValues>
223+
</armgcccpp.linker.libraries.LibrarySearchPaths>
224+
<armgcccpp.linker.optimization.GarbageCollectUnusedSections>True</armgcccpp.linker.optimization.GarbageCollectUnusedSections>
225+
<armgcccpp.linker.memorysettings.ExternalRAM />
226+
<armgcccpp.linker.miscellaneous.LinkerFlags>--specs=nosys.specs -Tflash_without_bootloader.ld -march=armv6-m -save-temps</armgcccpp.linker.miscellaneous.LinkerFlags>
227+
<armgcccpp.assembler.general.IncludePaths>
228+
<ListValues>
229+
<Value>../../../arduino</Value>
230+
</ListValues>
231+
</armgcccpp.assembler.general.IncludePaths>
232+
<armgcccpp.assembler.debugging.DebugLevel>Default (-g)</armgcccpp.assembler.debugging.DebugLevel>
233+
<armgcccpp.preprocessingassembler.general.DefaultIncludePath>False</armgcccpp.preprocessingassembler.general.DefaultIncludePath>
234+
<armgcccpp.preprocessingassembler.general.IncludePaths>
235+
<ListValues>
236+
<Value>../../../arduino</Value>
237+
</ListValues>
238+
</armgcccpp.preprocessingassembler.general.IncludePaths>
239+
<armgcccpp.preprocessingassembler.debugging.DebugLevel>Default (-Wa,-g)</armgcccpp.preprocessingassembler.debugging.DebugLevel>
240+
</ArmGccCpp>
242241
</ToolchainSettings>
243242
</PropertyGroup>
244243
<ItemGroup>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+

2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Atmel Studio Solution File, Format Version 11.00
4+
Project("{E66E83B9-2572-4076-B26E-6BE79FF3018A}") = "test", "test.cppproj", "{B3F859AD-E162-4C2F-9684-EAC6932FEC80}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|ARM = Debug|ARM
9+
Release|ARM = Release|ARM
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Debug|ARM.ActiveCfg = Debug|ARM
13+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Debug|ARM.Build.0 = Debug|ARM
14+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Release|ARM.ActiveCfg = Release|ARM
15+
{B3F859AD-E162-4C2F-9684-EAC6932FEC80}.Release|ARM.Build.0 = Release|ARM
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

0 commit comments

Comments
 (0)