Arduino_STM32/STM32F4/cores/maple/wirish_constants.h

18 lines
183 B
C

#ifndef _WIRISH_CONSTANTS_H_
#define _WIRISH_CONSTANTS_H_
#ifdef __cplusplus
extern "C"{
#endif
enum BitOrder {
LSBFIRST = 0,
MSBFIRST = 1
};
#ifdef __cplusplus
}
#endif
#endif