Add util.[ch]
This commit is contained in:
0
right/util.c
Normal file
0
right/util.c
Normal file
9
right/util.h
Normal file
9
right/util.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef __UTIL_H__
|
||||
#define __UTIL_H__
|
||||
|
||||
// Macros:
|
||||
|
||||
#define GET_MSB_OF_WORD(word) ((uint8_t)(word >> 8))
|
||||
#define GET_LSB_OF_WORD(word) ((uint8_t)(word & 0xff))
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user