Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2020-09-10 10:29:47 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-09-10 10:29:47 +0300
commit931314cf1ac80fbe9edec8df0fac6e19923afbd4 (patch)
tree77ca7ec44a1f6142e75506b641aa468d8f74193d /src/Networking/LwipEthernet
parent00279730dfc2135744a50bca15ef896400e89ce0 (diff)
Corrected DHCP timer
Diffstat (limited to 'src/Networking/LwipEthernet')
-rw-r--r--src/Networking/LwipEthernet/GMAC/ethernet_sam.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Networking/LwipEthernet/GMAC/ethernet_sam.cpp b/src/Networking/LwipEthernet/GMAC/ethernet_sam.cpp
index 5e52b8ec..d6edf118 100644
--- a/src/Networking/LwipEthernet/GMAC/ethernet_sam.cpp
+++ b/src/Networking/LwipEthernet/GMAC/ethernet_sam.cpp
@@ -93,7 +93,7 @@ static timers_info_t gs_timers_table[] = {
{0, ARP_TMR_INTERVAL, etharp_tmr},
/* LWIP_DHCP */
#if LWIP_DHCP
- {0, DHCP_COARSE_TIMER_SECS, dhcp_coarse_tmr},
+ {0, DHCP_COARSE_TIMER_SECS * 1000, dhcp_coarse_tmr},
{0, DHCP_FINE_TIMER_MSECS, dhcp_fine_tmr},
#endif
};