Skip to content

Commit

Permalink
Merge branch 'bugfix/lwip_send_timeout_v2.1' into 'release/v2.1'
Browse files Browse the repository at this point in the history
match sys tick with lwip_send_timeout

See merge request !1546
  • Loading branch information
jack0c committed Nov 16, 2017
2 parents c092079 + 0f9925c commit 8bca703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lwip/port/freertos/sys_arch.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ sys_jiffies(void)
u32_t
sys_now(void)
{
return xTaskGetTickCount();
return (xTaskGetTickCount() * portTICK_PERIOD_MS);
}

/*
Expand Down

0 comments on commit 8bca703

Please sign in to comment.