Robin Mueller
0256824e37
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
8 lines
249 B
C++
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]; }
|