Skip to content

Commit

Permalink
Rename IArduino_10BASE_T1S to Arduino_10BASE_T1S_PHY_Interface for be…
Browse files Browse the repository at this point in the history
…tter clarity.
  • Loading branch information
aentinger committed Mar 26, 2024
1 parent 60d802c commit 060ee49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Arduino_10BASE_T1S.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/microchip/TC6_Arduino_10BASE_T1S.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* INCLUDE
**************************************************************************************/

#include "../IArduino_10BASE_T1S.h"
#include "../Arduino_10BASE_T1S_PHY_Interface.h"

#include <stdint.h>

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 060ee49

Please sign in to comment.