M2_SETI/T2/tp/T2-TP_suite/iAcquisitionManager.h

18 lines
314 B
C
Raw Normal View History

2022-11-22 15:17:48 +01:00
#ifndef I_ACQUISITION_MANAGER_H
#define I_ACQUISITION_MANAGER_H
#include "msg.h"
/**
* Get the number of produced messages.
*/
unsigned int getProducedCount(void);
/**
* Gets a message if any, otherwise waits for a message.
*/
MSG_BLOCK getMessage(void);
//TODO create message accessors prototype here.
#endif