Skip to content
This repository was archived by the owner on Mar 10, 2021. It is now read-only.

Commit 2778d7f

Browse files
committed
Merge pull request #11 from ms-iot/MoveForward
Move forward to Arduino 1.6.6
2 parents d4cef52 + ce7d5e3 commit 2778d7f

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

Arduino

source/Microsoft.IoT.SDKFromArduino.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>Microsoft.IoT.SDKFromArduino</id>
5-
<version>1.0.1</version>
5+
<version>1.1.1</version>
66
<title>Arduino SDK</title>
77
<authors>Microsoft Open Technologies, Inc.</authors>
88
<owners>Microsoft Open Technologies, Inc. </owners>
@@ -12,7 +12,7 @@
1212
<description>SDKFromArduino contains sources implemented by the Arduino community.</description>
1313
<summary>Arduino SDK</summary>
1414
<releaseNotes />
15-
<copyright>Copyright 2014</copyright>
15+
<copyright>Copyright 2015</copyright>
1616
<tags>arduino microsoft native nativepackage</tags>
1717
</metadata>
1818
</package>

source/build-nupkg.cmd

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@echo off
1+
@if "%echo_on%" == "" @echo off
22
setlocal enableextensions disabledelayedexpansion
33

44
:: Parse options
@@ -26,9 +26,8 @@ md nupkg\build\native\include
2626
md nupkg\build\native\source
2727
md nupkg\build\native\lib
2828

29-
set arduinoSDKSources=..\Arduino\hardware\arduino\cores\arduino
29+
set arduinoSDKSources=..\Arduino\hardware\arduino\avr\cores\arduino
3030
set arduinoLibrarySources=..\Arduino\libraries
31-
set arduinoVariantsSources=..\Arduino\hardware\arduino\variants
3231

3332
if not exist %arduinoSDKSources%\Print.h (
3433
echo The Arduino sources are not checked out. checking them out
@@ -58,17 +57,16 @@ copy %arduinoSDKSources%\Stream.h nupkg\build\native\include /y || goto err
5857
copy %arduinoSDKSources%\WCharacter.h nupkg\build\native\include /y || goto err
5958
copy %arduinoSDKSources%\WString.h nupkg\build\native\include /y || goto err
6059
copy %arduinoSDKSources%\Udp.h nupkg\build\native\include /y || goto err
61-
copy %arduinoLibrarySources%\LiquidCrystal\LiquidCrystal.h nupkg\build\native\include /y || goto err
62-
copy %arduinoLibrarySources%\Stepper\Stepper.h nupkg\build\native\include /y || goto err
63-
copy %arduinoVariantsSources%\standard\pins_arduino.h nupkg\build\native\include /y || goto err
60+
copy %arduinoLibrarySources%\LiquidCrystal\src\LiquidCrystal.h nupkg\build\native\include /y || goto err
61+
copy %arduinoLibrarySources%\Stepper\src\Stepper.h nupkg\build\native\include /y || goto err
6462

6563
if exist *.cpp (copy *.cpp nupkg\build\native\source /y) || goto err
6664
copy %arduinoSDKSources%\IPAddress.cpp nupkg\build\native\source /y || goto err
6765
copy %arduinoSDKSources%\Print.cpp nupkg\build\native\source /y || goto err
6866
copy %arduinoSDKSources%\Stream.cpp nupkg\build\native\source /y || goto err
6967
copy %arduinoSDKSources%\WString.cpp nupkg\build\native\source /y || goto err
70-
copy %arduinoLibrarySources%\LiquidCrystal\LiquidCrystal.cpp nupkg\build\native\source /y || goto err
71-
copy %arduinoLibrarySources%\Stepper\Stepper.cpp nupkg\build\native\source /y || goto err
68+
copy %arduinoLibrarySources%\LiquidCrystal\src\LiquidCrystal.cpp nupkg\build\native\source /y || goto err
69+
copy %arduinoLibrarySources%\Stepper\src\Stepper.cpp nupkg\build\native\source /y || goto err
7270

7371
copy ..\license.txt nupkg /y || goto err
7472
copy ..\notices.txt nupkg /y || goto err

0 commit comments

Comments
 (0)