/**************************************/ /* */ /* 共通関数ヘッダファイル */ /* */ /**************************************/ #ifndef COM_BCD_HEADER #define COM_BCD_HEADER #include struct struc { uint32_t bit_high : 4 ; uint32_t bit_low : 4 ; } ; union uni { uint8_t bit ; struct struc st ; } ; #endif /*COM_BCD_HEADER*/