mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-01-27 16:32:36 +00:00
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
|