Remove unneeded volatile

This commit is contained in:
Petr Ledvina 2015-01-29 15:05:56 +01:00
parent 7875b97aae
commit 9dd7faeefa
1 changed files with 1 additions and 1 deletions

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;