libftdi: Fixed delay function.

This commit is contained in:
Gareth McMullin 2012-07-05 19:10:08 +12:00
parent 5dff263078
commit af1ef670ba
1 changed files with 1 additions and 1 deletions

View File

@ -129,6 +129,6 @@ const char *platform_target_voltage(void)
void platform_delay(uint32_t delay)
{
usleep(delay * 10000000);
usleep(delay * 100000);
}