8 lines
131 B
C
8 lines
131 B
C
|
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
|
||
|
#define reg32(x) (*(volatile uint32_t *)(x))
|
||
|
#define reg16(x) (*(volatile uint16_t *)(x))
|
||
|
|
||
|
#endif
|