eive-obsw/linux/devices/startracker/helpers.cpp
Robin Mueller 0256824e37
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
add uart reception handler
2023-03-21 20:35:28 +01:00

8 lines
249 B
C++

#include "helpers.h"
uint8_t str::getReplyFrameType(const uint8_t* rawFrame) { return rawFrame[0]; }
uint8_t str::getId(const uint8_t* rawFrame) { return rawFrame[1]; }
uint8_t str::getStatusField(const uint8_t* rawFrame) { return rawFrame[2]; }