19 lines
276 B
C
19 lines
276 B
C
|
#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
|