Remove HAL_GetTick from ST USBPhy

Remove the function HAL_GetTick from the ST USBPhy driver. This is no
longer needed as that change has been made on master.
pull/9768/head
Russ Butler 2018-07-31 16:32:46 -05:00
parent 1f8bf46f2e
commit 130927068c
1 changed files with 0 additions and 6 deletions

View File

@ -525,10 +525,4 @@ void USBPhyHw::_usbisr(void) {
instance->events->start_process(); instance->events->start_process();
} }
//TODO - remove this hack which allows HAL_Delay to work when interrupts are disabled
extern "C" uint32_t HAL_GetTick()
{
return ticker_read_us(get_us_ticker_data()) / 1000;
}
#endif #endif