Skip to content

Commit 1b73710

Browse files
jorgesg82FoniksFox
andauthored
fix: Remove default SNTP server from Ethernet configuration (#674)
* fix: Remove default SNTP server from Ethernet configuration * chore: Add changeset for SNTP default removal --------- Co-authored-by: FoniksFox <borisbeslimov@gmail.com>
1 parent e1b4570 commit 1b73710

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
release: patch
2+
summary: Removes the default SNTP server from Ethernet configuration, defaulting to nullptr instead

Inc/HALAL/Services/Communication/Ethernet/NewEthernet.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ struct EthernetDomain {
118118
const char* local_ip,
119119
const char* subnet_mask = "255.255.0.0",
120120
const char* gateway = "192.168.1.1",
121-
const char* sntp_server = SNTP::DEFAULT_SERVER_IP
121+
const char* sntp_server = nullptr
122122
)
123123
: pins{pins}, e{local_mac, local_ip, subnet_mask, gateway, sntp_server},
124124
rmii_gpios{

0 commit comments

Comments
 (0)