RTC_FLG_READ
#define RTC_CMD_READ(r) (RTC_FLG_READ | (r << 2))
is_read = command & (RTC_FLG_READ << 8);
is_read = command & RTC_FLG_READ;