eive-obsw/linux/devices/startracker/helpers.h
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

18 lines
434 B
C++

#ifndef LINUX_DEVICES_STARTRACKER_HELPERS_H_
#define LINUX_DEVICES_STARTRACKER_HELPERS_H_
#include "arcsec/common/genericstructs.h"
namespace str {
/**
* @brief Returns the frame type field of a decoded frame.
*/
uint8_t getReplyFrameType(const uint8_t* rawFrame);
uint8_t getId(const uint8_t* rawFrame);
uint8_t getStatusField(const uint8_t* rawFrame);
} // namespace str
#endif /* LINUX_DEVICES_STARTRACKER_HELPERS_H_ */