I thought from now it will be easier but i was wrong. Noob question, how to convert right now array of `[u8; 9]` data which i received to Struct which i created to store this data? And/or how to use 2 first array cells and connect to one value? Destination struct is simple: ``` struct Response { data: u16, crc: u8, } ```