From ececc5a1bcb90517aa6886838da58b901fbc6a2a Mon Sep 17 00:00:00 2001 From: Adrian Stevens Date: Sun, 24 Dec 2023 10:17:19 -0800 Subject: [PATCH] Update bus com classes namesspaces --- .../Communications/I2cCommunications.cs | 5 +++-- .../Communications/SpiCommunications.cs | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Source/Meadow.Foundation.Core/Communications/I2cCommunications.cs b/Source/Meadow.Foundation.Core/Communications/I2cCommunications.cs index 9526ca5f65..6d94526415 100644 --- a/Source/Meadow.Foundation.Core/Communications/I2cCommunications.cs +++ b/Source/Meadow.Foundation.Core/Communications/I2cCommunications.cs @@ -1,6 +1,7 @@ -using System; +using Meadow.Hardware; +using System; -namespace Meadow.Hardware +namespace Meadow.Foundation { /// /// Helper class for I2C communications, handles registers, endian, etc. diff --git a/Source/Meadow.Foundation.Core/Communications/SpiCommunications.cs b/Source/Meadow.Foundation.Core/Communications/SpiCommunications.cs index 100948a335..6a76713629 100644 --- a/Source/Meadow.Foundation.Core/Communications/SpiCommunications.cs +++ b/Source/Meadow.Foundation.Core/Communications/SpiCommunications.cs @@ -1,7 +1,8 @@ -using Meadow.Units; +using Meadow.Hardware; +using Meadow.Units; using System; -namespace Meadow.Hardware +namespace Meadow.Foundation { /// /// Helper class for SPI communications, handles registers, endian, etc.