blob: c96078771efe9e7379bf5a5d5c4d0b24e9d1ccde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* ids_ex.h
*
* Created on: 30 APR 2018
* Author: shlomo
*/
#ifndef MODULES_IDS_IDS_EX_H_
#define MODULES_IDS_IDS_EX_H_
#include "PMR/Hardware/HardwarePIDControl.pb-c.h"
#define MAX_SYSTEM_DISPENSERS 8
uint32_t IDSPrepareState(void *JobDetails);
uint32_t IDSPreSegmentState(void *JobDetails, int SegmentId);
uint32_t IDSSegmentState(void *JobDetails, int SegmentId);
uint32_t IDSEndState(void *JobDetails);
uint32_t IDS_DispenserPidRequestMessage(HardwarePidControl* request);
float CalculateDispenserPressure (int DispenserId);
#endif /* MODULES_IDS_IDS_EX_H_ */
|