warmboot: start cluster_init, skeleton all remaining code

This commit is contained in:
Michael Scire
2018-12-17 16:04:50 -08:00
parent 83941f8647
commit 802830d8d4
7 changed files with 164 additions and 10 deletions

View File

@@ -23,7 +23,7 @@
#define TIMERUS_USEC_CFG_0 MAKE_REG32(0x60005014)
static inline void timer_wait(uint32_t microseconds) {
uint32_t old_time = TIMERUS_CNTR_1US_0;
const uint32_t old_time = TIMERUS_CNTR_1US_0;
while (TIMERUS_CNTR_1US_0 - old_time <= microseconds) {
/* Spin-lock. */
}