18 lines
276 B
C
Executable file
18 lines
276 B
C
Executable file
#ifndef ACQUISITION_MANAGER_H
|
|
#define ACQUISITION_MANAGER_H
|
|
|
|
/**
|
|
* Initializes the acquisitions
|
|
*/
|
|
unsigned int acquisitionManagerInit(void);
|
|
|
|
/**
|
|
* Waits that acquisitions terminate
|
|
*/
|
|
void acquisitionManagerJoin(void);
|
|
|
|
|
|
//La taille du tampon
|
|
#define BUFFER_SIZE 13
|
|
|
|
#endif
|