-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfixatie.h
More file actions
29 lines (26 loc) · 1.2 KB
/
fixatie.h
File metadata and controls
29 lines (26 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* fixatie.h - gegenereerd met TLCGen 12.4.0.19 */
#ifndef __FIXATIE_H__
#define __FIXATIE_H__
/*************************************************************************
* Fixatie
*************************************************************************
* Zorgt voor fixatie van het groenbeeld afhankelijk van ingang isFix
*
* Parameters:
* isFix = index ingangssignaal fixatie keuze
* first, last = (opeenvolgende) indici van richtingen die gefixeerd
* dienen te worden
* bijkomen = aanduiding of richtingen nog groen mogen worden
* tegenhouden = aanduiding of fixatie (kort) tegengehouden moet worden
* prml = primair of alternatieve toedeling van betreffende modulereeks
* ml = huidige module in betreffende modulereeks
*
* Voorbeeld:
* Fixatie(isFix, 0, FCMAX-1, SCH[schbmfix], IH[hfixatietegenh], PRML, ML);
*************************************************************************/
#if defined MLMAX || defined MLAMAX
void Fixatie(count isFix, count first, count last, boolv bijkomen, boolv tegenhouden, boolv *prml[], count ml);
#else
void Fixatie(count isFix, count first, count last, boolv bijkomen, boolv tegenhouden);
#endif
#endif