This repository has been archived by the owner on Jul 11, 2020. It is now read-only.
forked from ktossell/m4api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m4api.h.in
175 lines (150 loc) · 4.16 KB
/
m4api.h.in
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
* m4api, a tool for M4-ATX DC-DC power supplies
* (c) 2009-2010 Ken Tossell <[email protected]>
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License, version 2.1,
* as published by the Free Software Foundation.
*
* This software 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 Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef M4API_H
#define M4API_H
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
const int M4API_VERSION_MAJOR = @m4api_VERSION_MAJOR@;
const int M4API_VERSION_MINOR = @m4api_VERSION_MINOR@;
const float M4API_VERSION = @m4api_VERSION@;
enum m4Type {
M4_VLT_12_11,
M4_VLT_12_07,
M4_VLT_5_03,
M4_VLT_33_01,
M4_DEG,
M4_SEC,
M4_MSC_1_1, // 1 byte
M4_MSC_1_2, // 2 bytes
M4_MSC_10_1, // 1 byte
M4_MSC_10_2, // 2 bytes
M4_TIM, // 2 bytes
M4_TRY,
M4_BYT
};
enum m4FieldID {
M4_IGN_HIGH,
M4_IGN_LOW,
M4_IGN_DBC,
M4_PSU_DELAY,
M4_VIN_MIN_START,
M4_VIN_MIN_ON,
M4_VIN_MIN_5V,
M4_VIN_MAX,
M4_12V_MAX,
M4_12V_MIN,
M4_5V_MAX,
M4_5V_MIN,
M4_33V_MAX,
M4_33V_MIN,
M4_12V_TIME,
M4_33V_TIME,
M4_PWRSW,
M4_PSU_ON_TIME,
M4_ON_DELAY,
M4_PSU_OFF_TIME,
M4_OFF_DELAY,
M4_EMG_TIME_5VSB,
M4_EMG_TIMER,
M4_PS_ON_0,
M4_PS_ON_1,
M4_THUMP,
M4_TEMP_MAX,
M4_TEMP_MIN,
M4_EMG_OFF_MODE,
M4_5V_SBY_DLY,
M4_OFF_DELAY_0,
M4_OFF_HARD_0,
M4_OFF_DELAY_1,
M4_OFF_HARD_1,
M4_OFF_DELAY_2,
M4_OFF_HARD_2,
M4_OFF_DELAY_3,
M4_OFF_HARD_3,
M4_OFF_DELAY_4,
M4_OFF_HARD_4,
M4_OFF_DELAY_5,
M4_OFF_HARD_5,
M4_OFF_DELAY_6,
M4_OFF_HARD_6,
M4_OFF_DELAY_7,
M4_OFF_HARD_7,
M4_RESET,
M4_NUM_CONFIG_FIELDS
};
enum m4Repr {
M4_INTEG,
M4_FLOAT,
M4_TIMER
};
struct m4DiagField {
enum m4Type type;
unsigned int index;
char *name;
char *desc;
};
struct m4ConfigField {
enum m4Type type;
unsigned int index;
char *name;
char *desc;
};
struct m4Diagnostics {
float vin;
float vign;
float v33;
float v5;
float v12;
float temp;
};
struct m4Handle;
extern struct m4DiagField m4DiagFields[];
extern struct m4ConfigField m4ConfigFields[];
extern char* m4TypeDescs[];
/* Find and open the PSU */
struct m4Handle *m4Init();
/* Close the device handle */
void m4Close(struct m4Handle *dev);
/* User-friendly-ish routines for setting/getting config values */
int m4GetFloat(struct m4Handle *dev, enum m4FieldID fid, float *out);
int m4SetFloat(struct m4Handle *dev, enum m4FieldID fid, float val);
int m4GetInteger(struct m4Handle *dev, enum m4FieldID fid, int *out);
int m4SetInteger(struct m4Handle *dev, enum m4FieldID fid, int val);
/* Get the diagnostic string in its raw form (<0 = error) */
int m4FetchDiag(struct m4Handle *dev, char *buf);
/* Get the diagnostic values in processed form (<0 = error) */
int m4GetDiag(struct m4Handle *dev, struct m4Diagnostics *diag);
/* Get a floating-point representation of the value stored at specified memory location */
float m4GetVal(struct m4Handle *dev, enum m4Type type, char *posn);
/* Print the formatted value of the element of type `type' and value `val' */
void m4PrintVal(struct m4Handle *dev, enum m4Type type, float val);
/* Load the field's value from the PSU into buf */
int m4GetConfig(struct m4Handle *dev, struct m4ConfigField *field, char *buf);
/* Parse a value (123, 1.23 or 00:00:10) into buffer, encoding it */
int m4ParseValue(struct m4Handle *dev, enum m4Type type, char const *strval, char *buf);
/* Write the human-readable value to the field on the PSU */
int m4SetConfig(struct m4Handle *dev, struct m4ConfigField *field, char const *strval);
/* Print the status variables in the (raw) buffer */
void m4PrintDiag(struct m4Handle *dev, char *buf);
/* Find the m4ConfigField of the given name */
int m4ConfigField(struct m4Handle *dev, char const *name);
#ifdef __cplusplus
}
#endif // __cplusplus
#endif