Skip to content

Commit

Permalink
Merge branch 'bugfix/lwip_send_timeout' into 'master'
Browse files Browse the repository at this point in the history
match sys tick with lwip_send_timeout

See merge request !1203
  • Loading branch information
igrr committed Sep 4, 2017
2 parents f487bb1 + 547b7b0 commit 9da1bf1
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 9da1bf1

Please sign in to comment.