From 063f991f5ece646dbb40e7f2d29c16319849f35f Mon Sep 17 00:00:00 2001 From: Andrew Cornford Date: Sat, 8 Jul 2017 11:40:44 +0100 Subject: [PATCH 1/3] Added support for Raspberry Pi model B. --- Raspberry.System/Processor.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Raspberry.System/Processor.cs b/Raspberry.System/Processor.cs index 01e2b69..7d3e16e 100644 --- a/Raspberry.System/Processor.cs +++ b/Raspberry.System/Processor.cs @@ -18,6 +18,11 @@ public enum Processor /// /// Processor is a BCM2709. /// - Bcm2709 + Bcm2709, + + /// + /// Processor is a BCM2835. + /// + Bcm2835 } } \ No newline at end of file From 70cd2d8d54980310d418996d3d05932edae0f843 Mon Sep 17 00:00:00 2001 From: JosiCoder Date: Sat, 29 Jul 2017 18:31:27 +0200 Subject: [PATCH 2/3] changed nuget spec for creating workaround package containing Bcm2835 support --- Raspberry.System.nuspec | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Raspberry.System.nuspec b/Raspberry.System.nuspec index 23ffa1d..a13c61d 100644 --- a/Raspberry.System.nuspec +++ b/Raspberry.System.nuspec @@ -1,10 +1,10 @@ - Raspberry.System - 0.0.0 - Raspberry.System - Eric Bézine + Raspberry.System.3B + 2.1.1 + Raspberry.System with RPi 3B support + Eric Bézine and Josi Coder Raspberry-Sharp http://opensource.org/licenses/GPL-2.0 https://github.com/raspberry-sharp/raspberry-sharp-system/wiki @@ -15,6 +15,8 @@ It is an initiative of the Raspberry# Community, aimed at providing tools and information concerning use of Raspberry Pi boards with Mono/.NET framework. Visit project [Github site](https://github.com/raspberry-sharp/raspberry-sharp-system/) for documentation and samples. + + With respect to the original Raspberry.System package, this one containes support for the Bcm2835 CPU of Raspberry 3B. See pull request #90 for more details. Raspberry.System is a Mono/.NET assembly providing access to Raspberry Pi system features. en-US @@ -25,9 +27,9 @@ - - - - + + + + From 86067eb5c68d52ecd1cdb7b9338fe2dae1b0325f Mon Sep 17 00:00:00 2001 From: JosiCoder Date: Sat, 29 Jul 2017 19:29:37 +0200 Subject: [PATCH 3/3] .gitignore changed --- .gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fcb74bf..6c711f3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ # Build Folders (you can keep bin if you'd like, to store dlls and pdbs) -bin -obj +bin/ +obj/ # mstest test results TestResults @@ -19,4 +19,5 @@ TestResults [Tt]humbs.db [Dd]esktop.ini -RaspberrySharp.System.userprefs \ No newline at end of file +RaspberrySharp.System.userprefs +*.nupkg \ No newline at end of file