Skip to content

Commit

Permalink
Change implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasssvaz committed Mar 22, 2024
1 parent d2e4791 commit f772c12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions cores/esp32/MacAddress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ MacAddress::MacAddress(const char *macstr){
fromString(macstr);
}

MacAddress::MacAddress(const String &macstr){
fromString(macstr.c_str());
}

MacAddress::MacAddress(uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, uint8_t b5, uint8_t b6) {
_type = MAC6;
memset(_mac.bytes, 0, sizeof(_mac.bytes));
Expand Down
2 changes: 1 addition & 1 deletion cores/esp32/MacAddress.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class MacAddress : public Printable {
MacAddress(const uint8_t *macbytearray) : MacAddress(MAC6, macbytearray) {}

MacAddress(const char *macstr);
MacAddress(const String &macstr) : MacAddress(macstr.c_str()) {}
MacAddress(const String &macstr);

virtual ~MacAddress() {}

Expand Down

0 comments on commit f772c12

Please sign in to comment.