From e06b70b179f79ddb05b0fe786a5b11700b97cb01 Mon Sep 17 00:00:00 2001 From: "Mr. Bart Simpson" <44016766+Mr-Bart-Simpson@users.noreply.github.com> Date: Fri, 25 Feb 2022 14:37:13 +0100 Subject: [PATCH] Added support for new Raspberry Pi 4 board revision b03115 (#1808) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Christian Mönius --- src/System.Device.Gpio/System/Device/Gpio/RaspberryBoardInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Device.Gpio/System/Device/Gpio/RaspberryBoardInfo.cs b/src/System.Device.Gpio/System/Device/Gpio/RaspberryBoardInfo.cs index 58c0a7b958..fb6938fdaa 100644 --- a/src/System.Device.Gpio/System/Device/Gpio/RaspberryBoardInfo.cs +++ b/src/System.Device.Gpio/System/Device/Gpio/RaspberryBoardInfo.cs @@ -163,7 +163,7 @@ public Model BoardModel 0x20D3 => Model.RaspberryPi3BPlus, 0x20E0 => Model.RaspberryPi3APlus, 0x20A0 or 0x2100 => Model.RaspberryPiComputeModule3, - 0x3111 or 0x3112 or 0x3114 => Model.RaspberryPi4, + 0x3111 or 0x3112 or 0x3114 or 0x3115 => Model.RaspberryPi4, 0x3140 => Model.RaspberryPiComputeModule4, 0x3130 => Model.RaspberryPi400, _ => Model.Unknown,