From 060ee49f6692f74cd86b937accea04f668a0aa81 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Tue, 26 Mar 2024 10:12:28 +0100 Subject: [PATCH] Rename IArduino_10BASE_T1S to Arduino_10BASE_T1S_PHY_Interface for better clarity. --- src/Arduino_10BASE_T1S.h | 2 +- ...rduino_10BASE_T1S.h => Arduino_10BASE_T1S_PHY_Interface.h} | 4 ++-- src/microchip/TC6_Arduino_10BASE_T1S.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) rename src/{IArduino_10BASE_T1S.h => Arduino_10BASE_T1S_PHY_Interface.h} (93%) diff --git a/src/Arduino_10BASE_T1S.h b/src/Arduino_10BASE_T1S.h index a9fda24..ee1fde9 100644 --- a/src/Arduino_10BASE_T1S.h +++ b/src/Arduino_10BASE_T1S.h @@ -14,7 +14,7 @@ * INCLUDE **************************************************************************************/ -#include "IArduino_10BASE_T1S.h" +#include "Arduino_10BASE_T1S_PHY_Interface.h" #include "Arduino_10BASE_T1S_UDP.h" #include "microchip/TC6_Arduino_10BASE_T1S.h" diff --git a/src/IArduino_10BASE_T1S.h b/src/Arduino_10BASE_T1S_PHY_Interface.h similarity index 93% rename from src/IArduino_10BASE_T1S.h rename to src/Arduino_10BASE_T1S_PHY_Interface.h index 9e3bd5f..17dcc1b 100644 --- a/src/IArduino_10BASE_T1S.h +++ b/src/Arduino_10BASE_T1S_PHY_Interface.h @@ -24,10 +24,10 @@ * CLASS DECLARATION **************************************************************************************/ -class IArduino_10BASE_T1S +class Arduino_10BASE_T1S_PHY_Interface { public: - virtual ~IArduino_10BASE_T1S() { } + virtual ~Arduino_10BASE_T1S_PHY_Interface() { } virtual bool begin(IPAddress const ip_addr, IPAddress const network_mask, diff --git a/src/microchip/TC6_Arduino_10BASE_T1S.h b/src/microchip/TC6_Arduino_10BASE_T1S.h index 787f031..28abf0c 100644 --- a/src/microchip/TC6_Arduino_10BASE_T1S.h +++ b/src/microchip/TC6_Arduino_10BASE_T1S.h @@ -14,7 +14,7 @@ * INCLUDE **************************************************************************************/ -#include "../IArduino_10BASE_T1S.h" +#include "../Arduino_10BASE_T1S_PHY_Interface.h" #include @@ -65,7 +65,7 @@ namespace TC6 * CLASS DECLARATION **************************************************************************************/ -class TC6_Arduino_10BASE_T1S : public IArduino_10BASE_T1S +class TC6_Arduino_10BASE_T1S : public Arduino_10BASE_T1S_PHY_Interface { public: TC6_Arduino_10BASE_T1S(TC6_Io * tc6_io);