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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/** This file, 'halsc_shm.h', contains declarations used by both
'halscope.c' and 'halscope_rt.c' to implement an oscilloscope.
The declarations in this file are used by both the realtime
and user space components of the scope. Those used only in
realtime are in 'halsc_rt.h', and those used only in user
space are in 'halsc_usr.h'.
*/
/** Copyright (C) 2003 John Kasunich
<jmkasunich AT users DOT sourceforge DOT net>
*/
/** This program is free software; you can redistribute it and/or
modify it under the terms of version 2 of the GNU General
Public License as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
THE AUTHORS OF THIS LIBRARY ACCEPT ABSOLUTELY NO LIABILITY FOR
ANY HARM OR LOSS RESULTING FROM ITS USE. IT IS _EXTREMELY_ UNWISE
TO RELY ON SOFTWARE ALONE FOR SAFETY. Any machinery capable of
harming persons must have provisions for completely removing power
from all motors, etc, before persons enter any danger area. All
machinery must be designed to comply with local and national safety
codes, and the authors of this software can not, and do not, take
any responsibility for such compliance.
This code was written as part of the EMC HAL project. For more
information, go to www.linuxcnc.org.
*/
/***********************************************************************
* TYPEDEFS AND DEFINES *
************************************************************************/
typedef enum scope_state_t;
/* this struct holds a single value - one sample of one channel */
typedef union scope_data_t;
/** This struct holds control data needed by both realtime and GUI code.
It lives in shared memory. The codes for each field identify which
module(s) set the field. "I" set at init only, "R" set by realtime
code, "U" set by user code, "RU" set/modified by both.
*/
typedef struct scope_shm_control_t;
/* HALSC_SHM_H */