Go to the documentation of this file.
12 #ifndef __CH_Support_h__
13 #define __CH_Support_h__
30 #define CH_EXPRTIME 0x00008000 // Expression uses time
31 #define CH_EXPRCHAN 0x00010000 // Expression uses channel
32 #define CH_EXPRIVALUE 0x00020000 // Expression uses in value
33 #define CH_EXPROVALUE 0x00040000 // Expression uses out value
34 #define CH_EXPRSLOPE 0x00080000 // Expression uses in slope/out slope
36 #define CH_EXPRACCEL 0x00200000 // Expression uses in accel/out accel
37 #define CH_EXPRKNOTS 0x00400000 // Expression uses spline knots
38 #define CH_EXPRMATCH 0x00800000 // Expression has a match() function
40 #define CH_EXPRDATA 0x02000000 // Expression sets a data interest
41 #define CH_EXPRVALUE (CH_EXPRIVALUE | CH_EXPROVALUE)