1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

Remove unneeded volatile

This commit is contained in:
Petr Ledvina 2015-01-29 15:05:56 +01:00
parent 7875b97aae
commit 9dd7faeefa

View file

@ -31,7 +31,7 @@
#include "system.h"
// cycles per microsecond
static volatile uint32_t usTicks = 0;
static uint32_t usTicks = 0;
// current uptime for 1kHz systick timer. will rollover after 49 days. hopefully we won't care.
static volatile uint32_t sysTickUptime = 0;