You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
510 B
28 lines
510 B
//
|
|
// Created by MightyPork on 2017/11/26.
|
|
//
|
|
|
|
#ifndef GEX_CORTEX_UTILS_H
|
|
#define GEX_CORTEX_UTILS_H
|
|
|
|
#include "platform.h"
|
|
|
|
static inline bool inIRQ(void)
|
|
{
|
|
return __get_IPSR() != 0;
|
|
}
|
|
|
|
/** Tight asm loop */
|
|
#define __asm_loop(cycles) \
|
|
do { \
|
|
register uint32_t _count asm ("r4") = cycles; \
|
|
asm volatile( \
|
|
".syntax unified\n" \
|
|
".thumb\n" \
|
|
"0:" \
|
|
"subs %0, #1\n" \
|
|
"bne 0b\n" \
|
|
: "+r" (_count)); \
|
|
} while(0)
|
|
|
|
#endif //GEX_CORTEX_UTILS_H
|
|
|