20 lines
No EOL
286 B
C
Executable file
20 lines
No EOL
286 B
C
Executable file
#ifndef ACQUISITION_MANAGER_H
|
|
#define ACQUISITION_MANAGER_H
|
|
|
|
/**
|
|
* Initializes constants
|
|
*/
|
|
|
|
#define BUFFER_SIZE 13
|
|
|
|
/**
|
|
* Initializes the acquisitions
|
|
*/
|
|
unsigned int acquisitionManagerInit(void);
|
|
|
|
/**
|
|
* Waits that acquisitions terminate
|
|
*/
|
|
void acquisitionManagerJoin(void);
|
|
|
|
#endif |