Skip to content

Instantly share code, notes, and snippets.

@summivox
Created June 4, 2016 21:48
Show Gist options
  • Save summivox/0ada36f886573e38f7062e98889196d4 to your computer and use it in GitHub Desktop.
Save summivox/0ada36f886573e38f7062e98889196d4 to your computer and use it in GitHub Desktop.
resolve SysTick conflict between STM32CubeMX-generated HAL and Keil RTX
int os_tick_init (void) { return (-1); }
unsigned HAL_GetTick(void) {
extern unsigned os_time;
return os_time;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment