diff --git a/MegaCAN.h b/MegaCAN.h index 6c374d4..c8b6e1b 100644 --- a/MegaCAN.h +++ b/MegaCAN.h @@ -3,7 +3,6 @@ #include "Arduino.h" const extern uint32_t baseID; -// #define BASEID 1512 typedef struct MegaCAN_message_t { struct { diff --git a/README.md b/README.md index 4e9e863..f301b8a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ # MegaCAN -Megasquirt CAN Protocol with Arduino, receives and stores broadcast data from Megasquirt, responds to requests for data from Megasquirt. +Library for interacting with Megasquirt CAN Protocol on Arduino-compatible hardware (Arduino, Teensy, Feather, etc.). Hopefully this makes it relatively easy to: +* Receive and store 11-bit broadcast data from Megasquirt. +* Receive and interpret 29-bit (extended) requests for data from a Megasquirt. +* Prepare a response to the Megasquirt's request for data. + +## Installation and Adding to a Sketch +Simply download a zip of this respository, and extract it your Arduino/Libraries directory. To use, add the following to your Arduino sketch: +<#include > diff --git a/html/_mega_c_a_n_8h_source.html b/html/_mega_c_a_n_8h_source.html new file mode 100644 index 0000000..c650219 --- /dev/null +++ b/html/_mega_c_a_n_8h_source.html @@ -0,0 +1,569 @@ + + + + + + + +MegaCAN: MegaCAN.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
MegaCAN.h
+
+
+
1 #ifndef MegaCAN_h
+
2 #define MegaCAN_h
+
3 
+
4 #include "Arduino.h"
+
5 const extern uint32_t baseID;
+
6 // #define BASEID 1512
+
7 
+
8 typedef struct MegaCAN_message_t {
+
9  struct {
+
10  uint32_t toTable = 0; // table on "To" device
+
11  uint32_t toID = 0; // "To" device ID
+
12  uint32_t fromID = 0; // "From" device ID
+
13  uint32_t msgType = 0; // Type of message, "1" is a request, "2" is a response
+
14  uint32_t toOffset = 0; // offset on "To" device
+
15  } core; //unpacked
+
16  uint32_t responseCore = 0; // response core back to requester
+
17  struct {
+
18  struct {
+
19  uint8_t varByt = 0; // number of bytes requested
+
20  uint16_t varOffset = 0; // MS offset for storing repsonse data
+
21  uint8_t varBlk = 0; // MS table for storing response data
+
22  } request; //unpacked
+
23  uint8_t response[8] = { 0 }; // response data bytes back to requester, up to 8 bytes
+
24  } data; //packed
+ +
26 
+ +
28  //offset 0
+
29  uint16_t seconds = 0; //Time that ECU has been on, s
+
30  float pw1 = 0; //Inj Bank 1 PW, ms
+
31  float pw2 = 0; //Inj Bnad 2 PW, ms
+
32  uint16_t rpm = 0; //Engine RPM
+
33 
+
34  //offset 1
+
35  float adv_deg = 0; //Final ignition spark advance, deg BTDC
+
36  uint8_t squirt = 0; //Bitfield of batch fire injector events
+
37  uint8_t engine = 0; //Bitfield of engine status
+
38  float afrtgt1 = 0; //Bank 1 AFR target, AFR
+
39  float afrtgt2 = 0; //Bank 2 AFR target, AFR
+
40  uint8_t wbo2_en1 = 0; //Not used
+
41  uint8_t wbo2_en2 = 0; //Not used
+
42 
+
43  //offset 2
+
44  float baro = 0; //Barometric pressure, kPa
+
45  float map = 0; //Manifold air pressure, kPa
+
46  float mat = 0; //Manifold air temp, deg F
+
47  float clt = 0; //Coolant temp, deg F
+
48 
+
49  //offset 3
+
50  float tps = 0; //Throttle position, %
+
51  float batt = 0; //Battery voltage, V
+
52  float afr1_old = 0; //AFR1, AFR
+
53  float afr2_old = 0; //AFR2, AFR
+
54 
+
55  //offset 4
+
56  float knock = 0; //Indication of knock input, %
+
57  float egocor1 = 0; //EGO bank 1 correction, %
+
58  float egocor2 = 0; //EGO bank 2 correction, %
+
59  float aircor = 0; //Air density correction, %
+
60 
+
61  //offset 5
+
62  float warmcor = 0; //Warmup correction, %
+
63  float tpsaccel = 0; //TPS-based acceleration, %
+
64  float tpsfuelcut = 0; //TPS-based fuel cut, %
+
65  float barocor = 0; //Barometric fuel correction, %
+
66 
+
67  //offset 6
+
68  float totalcor = 0; //Total fuel correction, %
+
69  float ve1 = 0; //VE value table/bank 1, %
+
70  float ve2 = 0; //VE value table/bank 2, %
+
71  int16_t iacstep = 0; //Stepper idle step number, step
+
72  float iacduty = 0; //PWM idle value duty, %
+
73 
+
74  //offset 7
+
75  float cold_adv_deg = 0; //Cold advance, deg
+
76  float TPSdot = 0; //Rate of change of TPS, %/sec
+
77  int16_t MAPdot = 0; //Rate of change of MAP, kPa/s
+
78  int16_t RPMdot = 0; //Rate of change of RPM, RPM/s
+
79 
+
80  //offset 8
+
81  float MAFload = 0; //Sythetic 'load' from MAF, %
+
82  float fuelload = 0; //'Load' used for fuel table lookup e.g. equals MAP in Speed-Density, %
+
83  float fuelcor = 0; //Adjustment to fuel from Flex, %
+
84  float MAF = 0; //Mass Air Flow (Scaling depend on range, 650g/s shown), g/s
+
85 
+
86  //offset 9
+
87  float egoV1 = 0; //Voltage from O2#1 (Deprecated on MS3), V
+
88  float egoV2 = 0; //Voltage from O2#2 (Deprecated on MS3), V
+
89  float dwell = 0; //Main ignition dwell, ms
+
90  float dwell_trl = 0; //Trailing ignition dwell, ms
+
91 
+
92  //offset 10
+
93  uint8_t status1 = 0; //ECU status bitfield
+
94  uint8_t status2 = 0; //ECU status bitfield
+
95  uint8_t status3 = 0; //ECU status bitfield
+
96  uint8_t status4 = 0; //Not typically used
+
97  int16_t status5 = 0; //Not typically used
+
98  uint8_t status6 = 0; //ECU status bitfield
+
99  uint8_t status7 = 0; //ECU status bitfield
+
100 
+
101  //offset 11
+
102  float fuelload2 = 0; //'Load' used for fuelling on modified table, %
+
103  float ignload = 0; //'Load' used for ignition table lookup, %
+
104  float ignload2 = 0; //'Load' used for modifier ignition table lookup, %
+
105  float airtemp = 0; //Estimated intake air temperature, deg F
+
106 
+
107  //offset 12
+
108  float wallfuel1 = 0; //Calculated volume of fuel on intake walls from EAE (in injector pulsewidth units), us
+
109  float wallfuel2 = 0; //Second channel of same, us
+
110 
+
111  //offset 13
+
112  float sensors1 = 0; //Generic sensor input 1 (gpioadc0 on MS2)
+
113  float sensors2 = 0; //Generic sensor input 2 (gpioadc1 on MS2)
+
114  float sensors3 = 0; //Generic sensor input 3 (gpioadc2 on MS2)
+
115  float sensors4 = 0; //Generic sensor input 4 (gpioadc3 on MS2)
+
116 
+
117  //offset 14
+
118  float sensors5 = 0; //Generic sensor input 5 (gpioadc4 on MS2)
+
119  float sensors6 = 0; //Generic sensor input 6 (gpioadc5 on MS2)
+
120  float sensors7 = 0; //Generic sensor input 7 (gpioadc6 on MS2)
+
121  float sensors8 = 0; //Generic sensor input 8 (gpioadc7 on MS2)
+
122 
+
123  //offset 15
+
124  float sensors9 = 0; //Generic sensor input 9 (adc6 on MS2)
+
125  float sensors10 = 0; //Generic sensor input 10 (adc7 on MS2)
+
126  float sensors11 = 0; //Generic sensor input 11
+
127  float sensors12 = 0; //Generic sensor input 12
+
128 
+
129  //offset 16
+
130  float sensors13 = 0; //Generic sensor input 13
+
131  float sensors14 = 0; //Generic sensor input 14
+
132  float sensors15 = 0; //Generic sensor input 15
+
133  float sensors16 = 0; //Generic sensor input 16
+
134 
+
135  //offset 17
+
136  float boost_targ_1 = 0; //Target boost - channel 1, kPa
+
137  float boost_targ_2 = 0; //Target boost - channel 2, kPa
+
138  uint8_t boostduty = 0; //Duty cycle on boost solenoid 1, %
+
139  uint8_t boostduty2 = 0; //Duty cycle on boost solenoid 2, %
+
140  float maf_volts = 0; //MAF voltage (synthesised for frequency MAFs), VE
+
141 
+
142  //offset 18
+
143  float pwseq1 = 0; //Sequential Pulsewidth for cyl#1, ms
+
144  float pwseq2 = 0; //Sequential Pulsewidth for cyl#2, ms
+
145  float pwseq3 = 0; //Sequential Pulsewidth for cyl#3, ms
+
146  float pwseq4 = 0; //Sequential Pulsewidth for cyl#4, ms
+
147 
+
148  //offset 19
+
149  float pwseq5 = 0; //Sequential Pulsewidth for cyl#5, ms
+
150  float pwseq6 = 0; //Sequential Pulsewidth for cyl#6, ms
+
151  float pwseq7 = 0; //Sequential Pulsewidth for cyl#7, ms
+
152  float pwseq8 = 0; //Sequential Pulsewidth for cyl#8, ms
+
153 
+
154  //offset 20
+
155  float pwseq9 = 0; //Sequential Pulsewidth for cyl#9, ms
+
156  float pwseq10 = 0; //Sequential Pulsewidth for cyl#10, ms
+
157  float pwseq11 = 0; //Sequential Pulsewidth for cyl#11, ms
+
158  float pwseq12 = 0; //Sequential Pulsewidth for cyl#12, ms
+
159 
+
160  //offset 21
+
161  float pwseq13 = 0; //Sequential Pulsewidth for cyl#13, ms
+
162  float pwseq14 = 0; //Sequential Pulsewidth for cyl#14, ms
+
163  float pwseq15 = 0; //Sequential Pulsewidth for cyl#15, ms
+
164  float pwseq16 = 0; //Sequential Pulsewidth for cyl#16, ms
+
165 
+
166  //offset 22
+
167  float egt1 = 0; //EGT 1, deg F
+
168  float egt2 = 0; //EGT 2, deg F
+
169  float egt3 = 0; //EGT 3, deg F
+
170  float egt4 = 0; //EGT 4, deg F
+
171 
+
172  //offset 23
+
173  float egt5 = 0; //EGT 5, deg F
+
174  float egt6 = 0; //EGT 6, deg F
+
175  float egt7 = 0; //EGT 7, deg F
+
176  float egt8 = 0; //EGT 8, deg F
+
177 
+
178  //offset 24
+
179  float egt9 = 0; //EGT 9, deg F
+
180  float egt10 = 0; //EGT 10, deg F
+
181  float egt11 = 0; //EGT 11, deg F
+
182  float egt12 = 0; //EGT 12, deg F
+
183 
+
184  //offset 25
+
185  float egt13 = 0; //EGT 13, deg F
+
186  float egt14 = 0; //EGT 14, deg F
+
187  float egt15 = 0; //EGT 15, deg F
+
188  float egt16 = 0; //EGT 16, deg F
+
189 
+
190  //offset 26
+
191  uint8_t nitrous1_duty = 0; //Duty cycle to nitrous solenoid 1, %
+
192  uint8_t nitrous2_duty = 0; //Duty cycle to nitrous solenoid 2, %
+
193  float nitrous_timer_out = 0; //Timer used internally for nitrous system, s
+
194  float n2o_addfuel = 0; //Fuel pulsewidth added due to nitrous system, ms
+
195  float n2o_retard = 0; //Timing retard due to nitrous system, deg
+
196 
+
197  //offset 27
+
198  int16_t canpwmin1 = 0; //PWM period 1 from remote board
+
199  int16_t canpwmin2 = 0; //PWM period 2 from remote board
+
200  int16_t canpwmin3 = 0; //PWM period 3 from remote board
+
201  int16_t canpwmin4 = 0; //PWM period 4 from remote board
+
202 
+
203  //offset 28
+
204  uint16_t cl_idle_targ_rpm = 0; //Closed-loop idle target RPM, RPM
+
205  int16_t tpsadc = 0; //ADC count from TPS
+
206  float eaeload = 0; //'Load' used for EAE calc, %
+
207  float afrload = 0; //'Load' used for AFR table lookups, %
+
208 
+
209  //offset 29
+
210  float EAEfcor1 = 0; //Fuel correction from EAE - channel 1, %
+
211  float EAEfcor2 = 0; //Fuel correction from EAE - channel 2, %
+
212  float VSS1dot = 0; //Rate of change of VSS1, m/s^2
+
213  float VSS2dot = 0; //Rate of change of VSS2, m/s^2
+
214 
+
215  //offset 30
+
216  float accelx = 0; //External accelerometer X, m/s^2
+
217  float accely = 0; //External accelerometer Y, m/s^2
+
218  float accelz = 0; //External accelerometer Z, m/s^2
+
219  uint8_t stream_level = 0; //Volume level on audio input
+
220  uint8_t water_duty = 0; //Duty cycle to water injection solenoid, %
+
221 
+
222  //offset 31
+
223  float AFR1 = 0; //AFR cyl#1, AFR
+
224  float AFR2 = 0; //AFR cyl#2, AFR
+
225  float AFR3 = 0; //AFR cyl#3, AFR
+
226  float AFR4 = 0; //AFR cyl#4, AFR
+
227  float AFR5 = 0; //AFR cyl#5, AFR
+
228  float AFR6 = 0; //AFR cyl#6, AFR
+
229  float AFR7 = 0; //AFR cyl#7, AFR
+
230  float AFR8 = 0; //AFR cyl#8, AFR
+
231 
+
232  //offset 32
+
233  float AFR9 = 0; //AFR cyl#9, AFR
+
234  float AFR10 = 0; //AFR cyl#10, AFR
+
235  float AFR11 = 0; //AFR cyl#11, AFR
+
236  float AFR12 = 0; //AFR cyl#12, AFR
+
237  float AFR13 = 0; //AFR cyl#13, AFR
+
238  float AFR14 = 0; //AFR cyl#14, AFR
+
239  float AFR15 = 0; //AFR cyl#15, AFR
+
240  float AFR16 = 0; //AFR cyl#16, AFR
+
241 
+
242  //offset 33
+
243  uint8_t duty_pwm_1 = 0; //Generic PWM duty 1, %
+
244  uint8_t duty_pwm_2 = 0; //Generic PWM duty 2, %
+
245  uint8_t duty_pwm_3 = 0; //Generic PWM duty 3, %
+
246  uint8_t duty_pwm_4 = 0; //Generic PWM duty 4, %
+
247  uint8_t duty_pwm_5 = 0; //Generic PWM duty 5, %
+
248  uint8_t duty_pwm_6 = 0; //Generic PWM duty 6, %
+
249  int8_t gear = 0; //Current gear selected
+
250  uint8_t status8 = 0; //Engine status bitfield
+
251 
+
252  //offset 34
+
253  float EGOv1 = 0; //Voltage from O2 cyl#1, V
+
254  float EGOv2 = 0; //Voltage from O2 cyl#2, V
+
255  float EGOv3 = 0; //Voltage from O2 cyl#3, V
+
256  float EGOv4 = 0; //Voltage from O2 cyl#4, V
+
257 
+
258  //offset 35
+
259  float EGOv5 = 0; //Voltage from O2 cyl#5, V
+
260  float EGOv6 = 0; //Voltage from O2 cyl#6, V
+
261  float EGOv7 = 0; //Voltage from O2 cyl#7, V
+
262  float EGOv8 = 0; //Voltage from O2 cyl#8, V
+
263 
+
264  //offset 36
+
265  float EGOv9 = 0; //Voltage from O2 cyl#9, V
+
266  float EGOv10 = 0; //Voltage from O2 cyl#10, V
+
267  float EGOv11 = 0; //Voltage from O2 cyl#11, V
+
268  float EGOv12 = 0; //Voltage from O2 cyl#12, V
+
269 
+
270  //offset 37
+
271  float EGOv13 = 0; //Voltage from O2 cyl#13, V
+
272  float EGOv14 = 0; //Voltage from O2 cyl#14, V
+
273  float EGOv15 = 0; //Voltage from O2 cyl#15, V
+
274  float EGOv16 = 0; //Voltage from O2 cyl#16, V
+
275 
+
276  //offset 38
+
277  float EGOcor1 = 0; //EGO correction cyl#1, %
+
278  float EGOcor2 = 0; //EGO correction cyl#2, %
+
279  float EGOcor3 = 0; //EGO correction cyl#3, %
+
280  float EGOcor4 = 0; //EGO correction cyl#4, %
+
281 
+
282  //offset 39
+
283  float EGOcor5 = 0; //EGO correction cyl#5, %
+
284  float EGOcor6 = 0; //EGO correction cyl#6, %
+
285  float EGOcor7 = 0; //EGO correction cyl#7, %
+
286  float EGOcor8 = 0; //EGO correction cyl#8, %
+
287 
+
288  //offset 40
+
289  float EGOcor9 = 0; //EGO correction cyl#9, %
+
290  float EGOcor10 = 0; //EGO correction cyl#10, %
+
291  float EGOcor11 = 0; //EGO correction cyl#11, %
+
292  float EGOcor12 = 0; //EGO correction cyl#12, %
+
293 
+
294  //offset 41
+
295  float EGOcor13 = 0; //EGO correction cyl#13, %
+
296  float EGOcor14 = 0; //EGO correction cyl#14, %
+
297  float EGOcor15 = 0; //EGO correction cyl#15, %
+
298  float EGOcor16 = 0; //EGO correction cyl#16, %
+
299 
+
300  //offset 42
+
301  float VSS1 = 0; //Vehicle Speed 1, m/s
+
302  float VSS2 = 0; //Vehicle Speed 2, m/s
+
303  float VSS3 = 0; //Vehicle Speed 3, m/s
+
304  float VSS4 = 0; //Vehicle Speed 4, m/s
+
305 
+
306  //offset 43
+
307  uint8_t synccnt = 0; //Sync-loss counter
+
308  uint8_t syncreason = 0; //Sync-loss reason code
+
309  uint16_t sd_filenum = 0; //SDcard file number
+
310  uint8_t sd_error = 0; //SDcard error number
+
311  uint8_t sd_phase = 0; //SDcard internal code
+
312  uint8_t sd_status = 0; //SDcard status bitfield
+
313  int8_t timing_err = 0; //calculated error in ignition timing, %
+
314 
+
315  //offset 44
+
316  float vvt_ang1 = 0; //VVT actual angle 1, deg
+
317  float vvt_ang2 = 0; //VVT actual angle 2, deg
+
318  float vvt_ang3 = 0; //VVT actual angle 3, deg
+
319  float vvt_ang4 = 0; //VVT actual angle 4, deg
+
320 
+
321  //offset 45
+
322  float vvt_target1 = 0; //VVT target angle 1, deg
+
323  float vvt_target2 = 0; //VVT target angle 2 deg
+
324  float vvt_target3 = 0; //VVT target angle 3, deg
+
325  float vvt_target4 = 0; //VVT target angle 4, deg
+
326 
+
327  //offset 46
+
328  uint8_t vvt_duty1 = 0; //VVT solenoid 1 duty cycle, %
+
329  uint8_t vvt_duty2 = 0; //VVT solenoid 2 duty cycle, %
+
330  uint8_t vvt_duty3 = 0; //VVT solenoid 3 duty cycle, %
+
331  uint8_t vvt_duty4 = 0; //VVT solenoid 4 duty cycle, %
+
332  float inj_timing_pri = 0; //Injection Timing Angle (primary), deg BTDC
+
333  float inj_timing_sec = 0; //Injection Timing Angle (secondary), deg BTDC
+
334 
+
335  //offset 47
+
336  float fuel_pct = 0; //Ethanol content of fuel from Flex sensor, %
+
337  float tps_accel = 0; //TPSdot based accel, %
+
338  uint16_t SS1 = 0; //Shaft speed 1, RPM
+
339  uint16_t SS2 = 0; //Shaft speed 2, RPM
+
340 
+
341  //offset 48
+
342  float knock_cyl1 = 0; //Knock % cyl #1, %
+
343  float knock_cyl2 = 0; //Knock % cyl #2, %
+
344  float knock_cyl3 = 0; //Knock % cyl #3, %
+
345  float knock_cyl4 = 0; //Knock % cyl #4, %
+
346  float knock_cyl5 = 0; //Knock % cyl #5, %
+
347  float knock_cyl6 = 0; //Knock % cyl #6, %
+
348  float knock_cyl7 = 0; //Knock % cyl #7, %
+
349  float knock_cyl8 = 0; //Knock % cyl #8, %
+
350 
+
351  //offset 49
+
352  float knock_cyl9 = 0; //Knock % cyl #9, %
+
353  float knock_cyl10 = 0; //Knock % cyl #10, %
+
354  float knock_cyl11 = 0; //Knock % cyl #11, %
+
355  float knock_cyl12 = 0; //Knock % cyl #12, %
+
356  float knock_cyl13 = 0; //Knock % cyl #13, %
+
357  float knock_cyl14 = 0; //Knock % cyl #14, %
+
358  float knock_cyl15 = 0; //Knock % cyl #15, %
+
359  float knock_cyl16 = 0; //Knock % cyl #16, %
+
360 
+
361  //offset 50
+
362  float map_accel = 0; //MAPdot based accel, %
+
363  float total_accel = 0; //Total accel, %
+
364  float launch_timer = 0; //Timer for timed-launch retard, s
+
365  float launch_retard = 0; //Launch retard, deg
+
366 
+
367  //offset 51
+
368  uint8_t porta = 0; //CPU portA bitfield
+
369  uint8_t portb = 0; //CPU portB bitfield
+
370  uint8_t porteh = 0; //CPU portE/portH bitfield
+
371  uint8_t portk = 0; //CPU portK bitfield
+
372  uint8_t portmj = 0; //CPU portM/portJ bitfield
+
373  uint8_t portp = 0; //CPU portP bitfield
+
374  uint8_t portt = 0; //CPU portT bitfield
+
375  uint8_t cel_errorcode = 0; //CEL error code
+
376 
+
377  //offset 52
+
378  uint8_t canin1 = 0; //CAN input 1 bitfield (CAN port 1 on MS2)
+
379  uint8_t canin2 = 0; //CAN input 2 bitfield (CAN port 2 on MS2)
+
380  uint8_t canout = 0; //CAN output 1 bitfield (CAN port 3 on MS2)
+
381  float knk_rtd = 0; //Knock retard, deg
+
382  uint16_t fuelflow = 0; //Average fuel flow, cc/min
+
383  uint16_t fuelcons = 0; //Average fuel consumption, l/km
+
384 
+
385  //offset 53
+
386  float fuel_press1 = 0; //Fuel pressure 1, kPa
+
387  float fuel_press2 = 0; //Fuel pressure 2, kPa
+
388  float fuel_temp1 = 0; //Fuel temperature 1, deg F
+
389  float fuel_temp2 = 0; //Fuel temperature 2, deg F
+
390 
+
391  //offset 54
+
392  float batt_cur = 0; //Battery current (alternator system), A
+
393  uint16_t cel_status = 0; //CEL status bitfield
+
394  float fp_duty = 0; //Fuel pump output duty, %
+
395  uint8_t alt_duty = 0; //Alternator field output duty, %
+
396  uint8_t load_duty = 0; //Alternator measured load-sense duty, %
+
397  float alt_targv = 0; //Alternator target voltage, %
+
398 
+
399  //offset 55
+
400  uint16_t looptime = 0; //Main code loop execution time, us
+
401  float fueltemp_cor = 0; //Fuel temperature correction, %
+
402  float fuelpress_cor = 0; //Fuel pressure correction, %
+
403  float ltt_cor = 0; //Long term trim correction, %
+
404  uint8_t sp1 = 0; //Unused
+
405 
+
406  //offset 56
+
407  float tc_retard = 0; //Traction control retard, deg
+
408  float cel_retard = 0; //CEL retard, deg
+
409  float fc_retard = 0; //Fuel-cut (overrun) retard, deg
+
410  float als_addfuel = 0; //ALS added fuel, ms
+
411 
+
412  //offset 57
+
413  float base_advance = 0; //Base timing from tables, deg
+
414  float idle_cor_advance = 0; //Idle correction advance, deg
+
415  float mat_retard = 0; //MAT retard, deg
+
416  float flex_advance = 0; //Flex advance, deg
+
417 
+
418  //offset 58
+
419  float adv1 = 0; //Timing lookup from table 1, deg
+
420  float adv2 = 0; //Timing lookup from table 2, deg
+
421  float adv3 = 0; //Timing lookup from table 3, deg
+
422  float adv4 = 0; //Timing lookup from table 4, deg
+
423 
+
424  //offset 59
+
425  float revlim_retard = 0; //Revlimiter 'soft' retard, deg
+
426  float als_timing = 0; //ALS timing change, deg
+
427  float ext_advance = 0; //External advance (e.g. trans), deg
+
428  float deadtime1 = 0; //Injector deadtime in use (#1), ms
+
429 
+
430  //offset 60
+
431  float launch_timing = 0; //Launch control timing, deg
+
432  float step3_timing = 0; //3-step timing, deg
+
433  float vsslaunch_retard = 0; //Wheel-speed based launch retard, deg
+
434  uint16_t cel_status2 = 0; //CEL status 2
+
435 
+
436  //offset 61
+
437  int8_t gps_latdeg = 0; //External GPS latitude deg, deg
+
438  uint8_t gps_latmin = 0; //GPS latitude minutes, min
+
439  uint16_t gps_latmmin = 0; //GPS latitude milli-minutes, mmin
+
440  int8_t gps_londeg = 0; //External GPS longitude deg, deg
+
441  uint8_t gps_lonmin = 0; //GPS longitude minutes, min
+
442  uint16_t gps_lonmmin = 0; //GPS longitude milli-minutes, mmin
+
443 
+
444  //offset 62
+
445  uint8_t gps_outstatus = 0; //GPS status byte (bit 0 = E/W)
+
446  int8_t gps_altk = 0; //GPS altitude km, km
+
447  uint16_t gps_altm = 0; //GPS altitude m, m/s
+
448  float gps_speed = 0; //GPS speed, m/s
+
449  float gps_course = 0; //GPS course, deg
+
450 
+
451  //offset 63
+
452  float generic_pid_duty1 = 0; //Generic close-loop duty 1, %
+
453  float generic_pid_duty2 = 0; //Generic close-loop duty 2, %
+ +
455 
+
456 class MegaCAN
+
457 {
+
458  public:
+
459  MegaCAN();
+
460  void processMSreq(uint32_t msgCore, const uint8_t msgData[3], MegaCAN_message_t &msg);
+
461  void setMSresp(MegaCAN_message_t recMsg, MegaCAN_message_t &respMsg, uint16_t var0, uint16_t var1, uint16_t var2, uint16_t var3);
+
462  void getBCastData(uint32_t id, const uint8_t data[8], MegaCAN_broadcast_message_t &msg);
+
463 };
+
464 
+
465 #endif
+
+
+
Definition: MegaCAN.h:8
+
Definition: MegaCAN.h:27
+
Definition: MegaCAN.h:457
+ + + + diff --git a/html/annotated.html b/html/annotated.html new file mode 100644 index 0000000..195b7c0 --- /dev/null +++ b/html/annotated.html @@ -0,0 +1,107 @@ + + + + + + + +MegaCAN: Class List + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+
+
+ + + + diff --git a/html/annotated_dup.js b/html/annotated_dup.js new file mode 100644 index 0000000..8f97b11 --- /dev/null +++ b/html/annotated_dup.js @@ -0,0 +1,6 @@ +var annotated_dup = +[ + [ "MegaCAN", "class_mega_c_a_n.html", "class_mega_c_a_n" ], + [ "MegaCAN_broadcast_message_t", "struct_mega_c_a_n__broadcast__message__t.html", "struct_mega_c_a_n__broadcast__message__t" ], + [ "MegaCAN_message_t", "struct_mega_c_a_n__message__t.html", "struct_mega_c_a_n__message__t" ] +]; \ No newline at end of file diff --git a/html/bc_s.png b/html/bc_s.png new file mode 100644 index 0000000..224b29a Binary files /dev/null and b/html/bc_s.png differ diff --git a/html/bdwn.png b/html/bdwn.png new file mode 100644 index 0000000..940a0b9 Binary files /dev/null and b/html/bdwn.png differ diff --git a/html/class_mega_c_a_n-members.html b/html/class_mega_c_a_n-members.html new file mode 100644 index 0000000..bea3506 --- /dev/null +++ b/html/class_mega_c_a_n-members.html @@ -0,0 +1,107 @@ + + + + + + + +MegaCAN: Member List + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
MegaCAN Member List
+
+
+ +

This is the complete list of members for MegaCAN, including all inherited members.

+ + + + + +
getBCastData(uint32_t id, const uint8_t data[8], MegaCAN_broadcast_message_t &msg) (defined in MegaCAN)MegaCAN
MegaCAN() (defined in MegaCAN)MegaCAN
processMSreq(uint32_t msgCore, const uint8_t msgData[3], MegaCAN_message_t &msg) (defined in MegaCAN)MegaCAN
setMSresp(MegaCAN_message_t recMsg, MegaCAN_message_t &respMsg, uint16_t var0, uint16_t var1, uint16_t var2, uint16_t var3) (defined in MegaCAN)MegaCAN
+
+ + + + diff --git a/html/class_mega_c_a_n.html b/html/class_mega_c_a_n.html new file mode 100644 index 0000000..36a2607 --- /dev/null +++ b/html/class_mega_c_a_n.html @@ -0,0 +1,121 @@ + + + + + + + +MegaCAN: MegaCAN Class Reference + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
MegaCAN Class Reference
+
+
+ + + + + + + + +

+Public Member Functions

+void processMSreq (uint32_t msgCore, const uint8_t msgData[3], MegaCAN_message_t &msg)
 
+void setMSresp (MegaCAN_message_t recMsg, MegaCAN_message_t &respMsg, uint16_t var0, uint16_t var1, uint16_t var2, uint16_t var3)
 
+void getBCastData (uint32_t id, const uint8_t data[8], MegaCAN_broadcast_message_t &msg)
 
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/html/class_mega_c_a_n.js b/html/class_mega_c_a_n.js new file mode 100644 index 0000000..928bbd8 --- /dev/null +++ b/html/class_mega_c_a_n.js @@ -0,0 +1,7 @@ +var class_mega_c_a_n = +[ + [ "MegaCAN", "class_mega_c_a_n.html#a6b3d339d000dfc4b5a4f45778e296ce8", null ], + [ "getBCastData", "class_mega_c_a_n.html#a93a0f4768ce256e4c90a3dfeb5873c34", null ], + [ "processMSreq", "class_mega_c_a_n.html#a4143c5cce1ca2dceb452f45a94e3770e", null ], + [ "setMSresp", "class_mega_c_a_n.html#a7eb033e98b17a142ab37467702d1f627", null ] +]; \ No newline at end of file diff --git a/html/classes.html b/html/classes.html new file mode 100644 index 0000000..de7bc0b --- /dev/null +++ b/html/classes.html @@ -0,0 +1,113 @@ + + + + + + + +MegaCAN: Class Index + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Class Index
+
+
+ + + + + + + + + + +
  m  
+
MegaCAN_broadcast_message_t   MegaCAN_message_t   
MegaCAN   
+ +
+
+ + + + diff --git a/html/closed.png b/html/closed.png new file mode 100644 index 0000000..98cc2c9 Binary files /dev/null and b/html/closed.png differ diff --git a/html/doc.png b/html/doc.png new file mode 100644 index 0000000..17edabf Binary files /dev/null and b/html/doc.png differ diff --git a/html/doxygen.css b/html/doxygen.css new file mode 100644 index 0000000..5e35db3 --- /dev/null +++ b/html/doxygen.css @@ -0,0 +1,1730 @@ +/* The standard CSS for doxygen 1.8.18 */ + +body, table, div, p, dl { + font: 400 14px/22px Roboto,sans-serif; +} + +p.reference, p.definition { + font: 400 14px/22px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1.groupheader { + font-size: 150%; +} + +.title { + font: 400 14px/28px Roboto,sans-serif; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +th p.starttd, p.intertd, p.endtd { + font-size: 100%; + font-weight: 700; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +p.interli { +} + +p.interdd { +} + +p.intertd { +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #9CAFD4; + color: #FFFFFF; + border: 1px double #869DCA; +} + +.contents a.qindexHL:visited { + color: #FFFFFF; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +ul { + overflow: hidden; /*Fixed: list item bullets overlap floating elements*/ +} + +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/ + overflow-y: hidden; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ + margin: 4px 8px 4px 2px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.ah, span.ah { + background-color: black; + font-weight: bold; + color: #FFFFFF; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl, img.inline { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +blockquote.DocNodeRTL { + border-left: 0; + border-right: 2px solid #9CAFD4; + margin: 0 4px 0 24px; + padding: 0 16px 0 12px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight, .memTemplItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-color: #DFE5F1; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + +} + +.overload { + font-family: "courier new",courier,monospace; + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype, .tparams .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir, .tparams .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #9CAFD4; + border-bottom: 1px solid #9CAFD4; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +.arrow { + color: #9CAFD4; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial, Helvetica; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #728DC1; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +table.directory { + font: 400 14px Roboto,sans-serif; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +.PageDocRTL-title div.headertitle { + text-align: right; + direction: rtl; +} + +dl { + padding: 0 0 0 0; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */ +dl.section { + margin-left: 0px; + padding-left: 0px; +} + +dl.section.DocNodeRTL { + margin-right: 0px; + padding-right: 0px; +} + +dl.note { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #D0C000; +} + +dl.note.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #FF0000; +} + +dl.warning.DocNodeRTL, dl.attention.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00D000; +} + +dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00D000; +} + +dl.deprecated { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #505050; +} + +dl.deprecated.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #505050; +} + +dl.todo { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00C0E0; +} + +dl.todo.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00C0E0; +} + +dl.test { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #3030E0; +} + +dl.test.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #3030E0; +} + +dl.bug { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #C08050; +} + +dl.bug.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; +} + +dl.citelist dd { + margin:2px 0; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +.PageDocRTL-title div.toc { + float: left !important; + text-align: right; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +.PageDocRTL-title div.toc li { + background-position-x: right !important; + padding-left: 0 !important; + padding-right: 10px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +.PageDocRTL-title div.toc li.level1 { + margin-left: 0 !important; + margin-right: 0; +} + +.PageDocRTL-title div.toc li.level2 { + margin-left: 0 !important; + margin-right: 15px; +} + +.PageDocRTL-title div.toc li.level3 { + margin-left: 0 !important; + margin-right: 30px; +} + +.PageDocRTL-title div.toc li.level4 { + margin-left: 0 !important; + margin-right: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + white-space: nowrap; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font: 12px/16px Roboto,sans-serif; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before { + border-top-color: #808080; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: #808080; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + +.DocNodeRTL { + text-align: right; + direction: rtl; +} + +.DocNodeLTR { + text-align: left; + direction: ltr; +} + +table.DocNodeRTL { + width: auto; + margin-right: 0; + margin-left: auto; +} + +table.DocNodeLTR { + width: auto; + margin-right: auto; + margin-left: 0; +} + +tt, code, kbd, samp +{ + display: inline-block; + direction:ltr; +} +/* @end */ + +u { + text-decoration: underline; +} + diff --git a/html/doxygen.png b/html/doxygen.png new file mode 100644 index 0000000..3ff17d8 Binary files /dev/null and b/html/doxygen.png differ diff --git a/html/dynsections.js b/html/dynsections.js new file mode 100644 index 0000000..3174bd7 --- /dev/null +++ b/html/dynsections.js @@ -0,0 +1,121 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} + +function toggleLevel(level) +{ + $('table.directory tr').each(function() { + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l + + + + + + +MegaCAN: File List + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
File List
+
+
+
Here is a list of all documented files with brief descriptions:
+ + +
 MegaCAN.h
+
+
+
+ + + + diff --git a/html/files_dup.js b/html/files_dup.js new file mode 100644 index 0000000..8d24cf5 --- /dev/null +++ b/html/files_dup.js @@ -0,0 +1,4 @@ +var files_dup = +[ + [ "MegaCAN.h", "_mega_c_a_n_8h_source.html", null ] +]; \ No newline at end of file diff --git a/html/folderclosed.png b/html/folderclosed.png new file mode 100644 index 0000000..bb8ab35 Binary files /dev/null and b/html/folderclosed.png differ diff --git a/html/folderopen.png b/html/folderopen.png new file mode 100644 index 0000000..d6c7f67 Binary files /dev/null and b/html/folderopen.png differ diff --git a/html/graph_legend.dot b/html/graph_legend.dot new file mode 100644 index 0000000..4d6ac8c --- /dev/null +++ b/html/graph_legend.dot @@ -0,0 +1,23 @@ +digraph "Graph Legend" +{ + // LATEX_PDF_SIZE + edge [fontname="Helvetica",fontsize="10",labelfontname="Helvetica",labelfontsize="10"]; + node [fontname="Helvetica",fontsize="10",shape=record]; + Node9 [shape="box",label="Inherited",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",fillcolor="grey75",style="filled" fontcolor="black"]; + Node10 -> Node9 [dir="back",color="midnightblue",fontsize="10",style="solid",fontname="Helvetica"]; + Node10 [shape="box",label="PublicBase",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="black"]; + Node11 -> Node10 [dir="back",color="midnightblue",fontsize="10",style="solid",fontname="Helvetica"]; + Node11 [shape="box",label="Truncated",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="red"]; + Node13 -> Node9 [dir="back",color="darkgreen",fontsize="10",style="solid",fontname="Helvetica"]; + Node13 [shape="box",label="ProtectedBase",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="black"]; + Node14 -> Node9 [dir="back",color="firebrick4",fontsize="10",style="solid",fontname="Helvetica"]; + Node14 [shape="box",label="PrivateBase",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="black"]; + Node15 -> Node9 [dir="back",color="midnightblue",fontsize="10",style="solid",fontname="Helvetica"]; + Node15 [shape="box",label="Undocumented",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="grey75"]; + Node16 -> Node9 [dir="back",color="midnightblue",fontsize="10",style="solid",fontname="Helvetica"]; + Node16 [shape="box",label="Templ< int >",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="black"]; + Node17 -> Node16 [dir="back",color="orange",fontsize="10",style="dashed",label="< int >",fontname="Helvetica"]; + Node17 [shape="box",label="Templ< T >",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="black"]; + Node18 -> Node9 [dir="back",color="darkorchid3",fontsize="10",style="dashed",label="m_usedClass",fontname="Helvetica"]; + Node18 [shape="box",label="Used",fontsize="10",height=0.2,width=0.4,fontname="Helvetica",color="black"]; +} diff --git a/html/graph_legend.html b/html/graph_legend.html new file mode 100644 index 0000000..efbb138 --- /dev/null +++ b/html/graph_legend.html @@ -0,0 +1,160 @@ + + + + + + + +MegaCAN: Graph Legend + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Graph Legend
+
+
+

This page explains how to interpret the graphs that are generated by doxygen.

+

Consider the following example:

/*! Invisible class because of truncation */
+
class Invisible { };
+
+
/*! Truncated class, inheritance relation is hidden */
+
class Truncated : public Invisible { };
+
+
/* Class not documented with doxygen comments */
+
class Undocumented { };
+
+
/*! Class that is inherited using public inheritance */
+
class PublicBase : public Truncated { };
+
+
/*! A template class */
+
template<class T> class Templ { };
+
+
/*! Class that is inherited using protected inheritance */
+
class ProtectedBase { };
+
+
/*! Class that is inherited using private inheritance */
+
class PrivateBase { };
+
+
/*! Class that is used by the Inherited class */
+
class Used { };
+
+
/*! Super class that inherits a number of other classes */
+
class Inherited : public PublicBase,
+
protected ProtectedBase,
+
private PrivateBase,
+
public Undocumented,
+
public Templ<int>
+
{
+
private:
+
Used *m_usedClass;
+
};
+

This will result in the following graph:

+

The boxes in the above graph have the following meaning:

+
    +
  • +A filled gray box represents the struct or class for which the graph is generated.
  • +
  • +A box with a black border denotes a documented struct or class.
  • +
  • +A box with a gray border denotes an undocumented struct or class.
  • +
  • +A box with a red border denotes a documented struct or class forwhich not all inheritance/containment relations are shown. A graph is truncated if it does not fit within the specified boundaries.
  • +
+

The arrows have the following meaning:

+
    +
  • +A dark blue arrow is used to visualize a public inheritance relation between two classes.
  • +
  • +A dark green arrow is used for protected inheritance.
  • +
  • +A dark red arrow is used for private inheritance.
  • +
  • +A purple dashed arrow is used if a class is contained or used by another class. The arrow is labelled with the variable(s) through which the pointed class or struct is accessible.
  • +
  • +A yellow dashed arrow denotes a relation between a template instance and the template class it was instantiated from. The arrow is labelled with the template parameters of the instance.
  • +
+
+
+ + + + diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..dfb803a --- /dev/null +++ b/html/index.html @@ -0,0 +1,100 @@ + + + + + + + +MegaCAN: Main Page + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
MegaCAN Documentation
+
+
+
+
+ + + + diff --git a/html/jquery.js b/html/jquery.js new file mode 100644 index 0000000..103c32d --- /dev/null +++ b/html/jquery.js @@ -0,0 +1,35 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
"),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
"),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element +},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** + * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler + * Licensed under MIT + * @author Ariel Flesler + * @version 2.1.2 + */ +;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/html/md__r_e_a_d_m_e.html b/html/md__r_e_a_d_m_e.html new file mode 100644 index 0000000..d00d732 --- /dev/null +++ b/html/md__r_e_a_d_m_e.html @@ -0,0 +1,102 @@ + + + + + + + +MegaCAN: MegaCAN + + + + + + + + + + + + + +
+
+ + + + + + +
+
MegaCAN +
+
Megasquirt CAN Protocol with Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
+

Megasquirt CAN Protocol with Arduino, receives and stores broadcast data from Megasquirt, responds to requests for data from Megasquirt.

+
+
+
+ + + + diff --git a/html/menu.js b/html/menu.js new file mode 100644 index 0000000..d18a2fe --- /dev/null +++ b/html/menu.js @@ -0,0 +1,51 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + var result=''; + if ('children' in data) { + result+=''; + } + return result; + } + + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchEnabled) { + if (serverSide) { + $('#main-menu').append('
  • '); + } else { + $('#main-menu').append('
  • '); + } + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/html/menudata.js b/html/menudata.js new file mode 100644 index 0000000..7a41325 --- /dev/null +++ b/html/menudata.js @@ -0,0 +1,32 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Related Pages",url:"pages.html"}, +{text:"Classes",url:"annotated.html",children:[ +{text:"Class List",url:"annotated.html"}, +{text:"Class Index",url:"classes.html"}]}, +{text:"Files",url:"files.html",children:[ +{text:"File List",url:"files.html"}]}]} diff --git a/html/nav_f.png b/html/nav_f.png new file mode 100644 index 0000000..72a58a5 Binary files /dev/null and b/html/nav_f.png differ diff --git a/html/nav_g.png b/html/nav_g.png new file mode 100644 index 0000000..2093a23 Binary files /dev/null and b/html/nav_g.png differ diff --git a/html/nav_h.png b/html/nav_h.png new file mode 100644 index 0000000..33389b1 Binary files /dev/null and b/html/nav_h.png differ diff --git a/html/navtree.css b/html/navtree.css new file mode 100644 index 0000000..33341a6 --- /dev/null +++ b/html/navtree.css @@ -0,0 +1,146 @@ +#nav-tree .children_ul { + margin:0; + padding:4px; +} + +#nav-tree ul { + list-style:none outside none; + margin:0px; + padding:0px; +} + +#nav-tree li { + white-space:nowrap; + margin:0px; + padding:0px; +} + +#nav-tree .plus { + margin:0px; +} + +#nav-tree .selected { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +#nav-tree img { + margin:0px; + padding:0px; + border:0px; + vertical-align: middle; +} + +#nav-tree a { + text-decoration:none; + padding:0px; + margin:0px; + outline:none; +} + +#nav-tree .label { + margin:0px; + padding:0px; + font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +} + +#nav-tree .label a { + padding:2px; +} + +#nav-tree .selected a { + text-decoration:none; + color:#fff; +} + +#nav-tree .children_ul { + margin:0px; + padding:0px; +} + +#nav-tree .item { + margin:0px; + padding:0px; +} + +#nav-tree { + padding: 0px 0px; + background-color: #FAFAFF; + font-size:14px; + overflow:auto; +} + +#doc-content { + overflow:auto; + display:block; + padding:0px; + margin:0px; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#side-nav { + padding:0 6px 0 0; + margin: 0px; + display:block; + position: absolute; + left: 0px; + width: 250px; +} + +.ui-resizable .ui-resizable-handle { + display:block; +} + +.ui-resizable-e { + background-image:url("splitbar.png"); + background-size:100%; + background-repeat:repeat-y; + background-attachment: scroll; + cursor:ew-resize; + height:100%; + right:0; + top:0; + width:6px; +} + +.ui-resizable-handle { + display:none; + font-size:0.1px; + position:absolute; + z-index:1; +} + +#nav-tree-contents { + margin: 6px 0px 0px 0px; +} + +#nav-tree { + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#nav-sync { + position:absolute; + top:5px; + right:24px; + z-index:0; +} + +#nav-sync img { + opacity:0.3; +} + +#nav-sync img:hover { + opacity:0.9; +} + +@media print +{ + #nav-tree { display: none; } + div.ui-resizable-handle { display: none; position: relative; } +} + diff --git a/html/navtree.js b/html/navtree.js new file mode 100644 index 0000000..1e272d3 --- /dev/null +++ b/html/navtree.js @@ -0,0 +1,546 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +var navTreeSubIndices = new Array(); +var arrowDown = '▼'; +var arrowRight = '►'; + +function getData(varName) +{ + var i = varName.lastIndexOf('/'); + var n = i>=0 ? varName.substring(i+1) : varName; + return eval(n.replace(/\-/g,'_')); +} + +function stripPath(uri) +{ + return uri.substring(uri.lastIndexOf('/')+1); +} + +function stripPath2(uri) +{ + var i = uri.lastIndexOf('/'); + var s = uri.substring(i+1); + var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); + return m ? uri.substring(i-6) : s; +} + +function hashValue() +{ + return $(location).attr('hash').substring(1).replace(/[^\w\-]/g,''); +} + +function hashUrl() +{ + return '#'+hashValue(); +} + +function pathName() +{ + return $(location).attr('pathname').replace(/[^-A-Za-z0-9+&@#/%?=~_|!:,.;\(\)]/g, ''); +} + +function localStorageSupported() +{ + try { + return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; + } + catch(e) { + return false; + } +} + +function storeLink(link) +{ + if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { + window.localStorage.setItem('navpath',link); + } +} + +function deleteLink() +{ + if (localStorageSupported()) { + window.localStorage.setItem('navpath',''); + } +} + +function cachedLink() +{ + if (localStorageSupported()) { + return window.localStorage.getItem('navpath'); + } else { + return ''; + } +} + +function getScript(scriptName,func,show) +{ + var head = document.getElementsByTagName("head")[0]; + var script = document.createElement('script'); + script.id = scriptName; + script.type = 'text/javascript'; + script.onload = func; + script.src = scriptName+'.js'; + head.appendChild(script); +} + +function createIndent(o,domNode,node,level) +{ + var level=-1; + var n = node; + while (n.parentNode) { level++; n=n.parentNode; } + if (node.childrenData) { + var imgNode = document.createElement("span"); + imgNode.className = 'arrow'; + imgNode.style.paddingLeft=(16*level).toString()+'px'; + imgNode.innerHTML=arrowRight; + node.plus_img = imgNode; + node.expandToggle = document.createElement("a"); + node.expandToggle.href = "javascript:void(0)"; + node.expandToggle.onclick = function() { + if (node.expanded) { + $(node.getChildrenUL()).slideUp("fast"); + node.plus_img.innerHTML=arrowRight; + node.expanded = false; + } else { + expandNode(o, node, false, false); + } + } + node.expandToggle.appendChild(imgNode); + domNode.appendChild(node.expandToggle); + } else { + var span = document.createElement("span"); + span.className = 'arrow'; + span.style.width = 16*(level+1)+'px'; + span.innerHTML = ' '; + domNode.appendChild(span); + } +} + +var animationInProgress = false; + +function gotoAnchor(anchor,aname,updateLocation) +{ + var pos, docContent = $('#doc-content'); + var ancParent = $(anchor.parent()); + if (ancParent.hasClass('memItemLeft') || + ancParent.hasClass('memtitle') || + ancParent.hasClass('fieldname') || + ancParent.hasClass('fieldtype') || + ancParent.is(':header')) + { + pos = ancParent.position().top; + } else if (anchor.position()) { + pos = anchor.position().top; + } + if (pos) { + var dist = Math.abs(Math.min( + pos-docContent.offset().top, + docContent[0].scrollHeight- + docContent.height()-docContent.scrollTop())); + animationInProgress=true; + docContent.animate({ + scrollTop: pos + docContent.scrollTop() - docContent.offset().top + },Math.max(50,Math.min(500,dist)),function(){ + if (updateLocation) window.location.href=aname; + animationInProgress=false; + }); + } +} + +function newNode(o, po, text, link, childrenData, lastNode) +{ + var node = new Object(); + node.children = Array(); + node.childrenData = childrenData; + node.depth = po.depth + 1; + node.relpath = po.relpath; + node.isLast = lastNode; + + node.li = document.createElement("li"); + po.getChildrenUL().appendChild(node.li); + node.parentNode = po; + + node.itemDiv = document.createElement("div"); + node.itemDiv.className = "item"; + + node.labelSpan = document.createElement("span"); + node.labelSpan.className = "label"; + + createIndent(o,node.itemDiv,node,0); + node.itemDiv.appendChild(node.labelSpan); + node.li.appendChild(node.itemDiv); + + var a = document.createElement("a"); + node.labelSpan.appendChild(a); + node.label = document.createTextNode(text); + node.expanded = false; + a.appendChild(node.label); + if (link) { + var url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + link = url; + } else { + url = node.relpath+link; + } + a.className = stripPath(link.replace('#',':')); + if (link.indexOf('#')!=-1) { + var aname = '#'+link.split('#')[1]; + var srcPage = stripPath(pathName()); + var targetPage = stripPath(link.split('#')[0]); + a.href = srcPage!=targetPage ? url : "javascript:void(0)"; + a.onclick = function(){ + storeLink(link); + if (!$(a).parent().parent().hasClass('selected')) + { + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + $(a).parent().parent().addClass('selected'); + $(a).parent().parent().attr('id','selected'); + } + var anchor = $(aname); + gotoAnchor(anchor,aname,true); + }; + } else { + a.href = url; + a.onclick = function() { storeLink(link); } + } + } else { + if (childrenData != null) + { + a.className = "nolink"; + a.href = "javascript:void(0)"; + a.onclick = node.expandToggle.onclick; + } + } + + node.childrenUL = null; + node.getChildrenUL = function() { + if (!node.childrenUL) { + node.childrenUL = document.createElement("ul"); + node.childrenUL.className = "children_ul"; + node.childrenUL.style.display = "none"; + node.li.appendChild(node.childrenUL); + } + return node.childrenUL; + }; + + return node; +} + +function showRoot() +{ + var headerHeight = $("#top").height(); + var footerHeight = $("#nav-path").height(); + var windowHeight = $(window).height() - headerHeight - footerHeight; + (function (){ // retry until we can scroll to the selected item + try { + var navtree=$('#nav-tree'); + navtree.scrollTo('#selected',100,{offset:-windowHeight/2}); + } catch (err) { + setTimeout(arguments.callee, 0); + } + })(); +} + +function expandNode(o, node, imm, showRoot) +{ + if (node.childrenData && !node.expanded) { + if (typeof(node.childrenData)==='string') { + var varName = node.childrenData; + getScript(node.relpath+varName,function(){ + node.childrenData = getData(varName); + expandNode(o, node, imm, showRoot); + }, showRoot); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).slideDown("fast"); + node.plus_img.innerHTML = arrowDown; + node.expanded = true; + } + } +} + +function glowEffect(n,duration) +{ + n.addClass('glow').delay(duration).queue(function(next){ + $(this).removeClass('glow');next(); + }); +} + +function highlightAnchor() +{ + var aname = hashUrl(); + var anchor = $(aname); + if (anchor.parent().attr('class')=='memItemLeft'){ + var rows = $('.memberdecls tr[class$="'+hashValue()+'"]'); + glowEffect(rows.children(),300); // member without details + } else if (anchor.parent().attr('class')=='fieldname'){ + glowEffect(anchor.parent().parent(),1000); // enum value + } else if (anchor.parent().attr('class')=='fieldtype'){ + glowEffect(anchor.parent().parent(),1000); // struct field + } else if (anchor.parent().is(":header")) { + glowEffect(anchor.parent(),1000); // section header + } else { + glowEffect(anchor.next(),1000); // normal member + } +} + +function selectAndHighlight(hash,n) +{ + var a; + if (hash) { + var link=stripPath(pathName())+':'+hash.substring(1); + a=$('.item a[class$="'+link+'"]'); + } + if (a && a.length) { + a.parent().parent().addClass('selected'); + a.parent().parent().attr('id','selected'); + highlightAnchor(); + } else if (n) { + $(n.itemDiv).addClass('selected'); + $(n.itemDiv).attr('id','selected'); + } + if ($('#nav-tree-contents .item:first').hasClass('selected')) { + $('#nav-sync').css('top','30px'); + } else { + $('#nav-sync').css('top','5px'); + } + showRoot(); +} + +function showNode(o, node, index, hash) +{ + if (node && node.childrenData) { + if (typeof(node.childrenData)==='string') { + var varName = node.childrenData; + getScript(node.relpath+varName,function(){ + node.childrenData = getData(varName); + showNode(o,node,index,hash); + },true); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).css({'display':'block'}); + node.plus_img.innerHTML = arrowDown; + node.expanded = true; + var n = node.children[o.breadcrumbs[index]]; + if (index+11) hash = '#'+parts[1].replace(/[^\w\-]/g,''); + else hash=''; + } + if (hash.match(/^#l\d+$/)) { + var anchor=$('a[name='+hash.substring(1)+']'); + glowEffect(anchor.parent(),1000); // line number + hash=''; // strip line number anchors + } + var url=root+hash; + var i=-1; + while (NAVTREEINDEX[i+1]<=url) i++; + if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath) + } else { + getScript(relpath+'navtreeindex'+i,function(){ + navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath); + } + },true); + } +} + +function showSyncOff(n,relpath) +{ + n.html(''); +} + +function showSyncOn(n,relpath) +{ + n.html(''); +} + +function toggleSyncButton(relpath) +{ + var navSync = $('#nav-sync'); + if (navSync.hasClass('sync')) { + navSync.removeClass('sync'); + showSyncOff(navSync,relpath); + storeLink(stripPath2(pathName())+hashUrl()); + } else { + navSync.addClass('sync'); + showSyncOn(navSync,relpath); + deleteLink(); + } +} + +var loadTriggered = false; +var readyTriggered = false; +var loadObject,loadToRoot,loadUrl,loadRelPath; + +$(window).on('load',function(){ + if (readyTriggered) { // ready first + navTo(loadObject,loadToRoot,loadUrl,loadRelPath); + showRoot(); + } + loadTriggered=true; +}); + +function initNavTree(toroot,relpath) +{ + var o = new Object(); + o.toroot = toroot; + o.node = new Object(); + o.node.li = document.getElementById("nav-tree-contents"); + o.node.childrenData = NAVTREE; + o.node.children = new Array(); + o.node.childrenUL = document.createElement("ul"); + o.node.getChildrenUL = function() { return o.node.childrenUL; }; + o.node.li.appendChild(o.node.childrenUL); + o.node.depth = 0; + o.node.relpath = relpath; + o.node.expanded = false; + o.node.isLast = true; + o.node.plus_img = document.createElement("span"); + o.node.plus_img.className = 'arrow'; + o.node.plus_img.innerHTML = arrowRight; + + if (localStorageSupported()) { + var navSync = $('#nav-sync'); + if (cachedLink()) { + showSyncOff(navSync,relpath); + navSync.removeClass('sync'); + } else { + showSyncOn(navSync,relpath); + } + navSync.click(function(){ toggleSyncButton(relpath); }); + } + + if (loadTriggered) { // load before ready + navTo(o,toroot,hashUrl(),relpath); + showRoot(); + } else { // ready before load + loadObject = o; + loadToRoot = toroot; + loadUrl = hashUrl(); + loadRelPath = relpath; + readyTriggered=true; + } + + $(window).bind('hashchange', function(){ + if (window.location.hash && window.location.hash.length>1){ + var a; + if ($(location).attr('hash')){ + var clslink=stripPath(pathName())+':'+hashValue(); + a=$('.item a[class$="'+clslink.replace(/ + + + + + + +MegaCAN: Related Pages + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    MegaCAN +
    +
    Megasquirt CAN Protocol with Arduino
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    Related Pages
    +
    +
    +
    Here is a list of all related documentation pages:
    + + +
     MegaCAN
    +
    +
    +
    + + + + diff --git a/html/resize.js b/html/resize.js new file mode 100644 index 0000000..e1ad0fe --- /dev/null +++ b/html/resize.js @@ -0,0 +1,140 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initResizable() +{ + var cookie_namespace = 'doxygen'; + var sidenav,navtree,content,header,collapsed,collapsedWidth=0,barWidth=6,desktop_vp=768,titleHeight; + + function readCookie(cookie) + { + var myCookie = cookie_namespace+"_"+cookie+"="; + if (document.cookie) { + var index = document.cookie.indexOf(myCookie); + if (index != -1) { + var valStart = index + myCookie.length; + var valEnd = document.cookie.indexOf(";", valStart); + if (valEnd == -1) { + valEnd = document.cookie.length; + } + var val = document.cookie.substring(valStart, valEnd); + return val; + } + } + return 0; + } + + function writeCookie(cookie, val, expiration) + { + if (val==undefined) return; + if (expiration == null) { + var date = new Date(); + date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week + expiration = date.toGMTString(); + } + document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; + } + + function resizeWidth() + { + var windowWidth = $(window).width() + "px"; + var sidenavWidth = $(sidenav).outerWidth(); + content.css({marginLeft:parseInt(sidenavWidth)+"px"}); + writeCookie('width',sidenavWidth-barWidth, null); + } + + function restoreWidth(navWidth) + { + var windowWidth = $(window).width() + "px"; + content.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + sidenav.css({width:navWidth + "px"}); + } + + function resizeHeight() + { + var headerHeight = header.outerHeight(); + var footerHeight = footer.outerHeight(); + var windowHeight = $(window).height() - headerHeight - footerHeight; + content.css({height:windowHeight + "px"}); + navtree.css({height:windowHeight + "px"}); + sidenav.css({height:windowHeight + "px"}); + var width=$(window).width(); + if (width!=collapsedWidth) { + if (width=desktop_vp) { + if (!collapsed) { + collapseExpand(); + } + } else if (width>desktop_vp && collapsedWidth0) { + restoreWidth(0); + collapsed=true; + } + else { + var width = readCookie('width'); + if (width>200 && width<$(window).width()) { restoreWidth(width); } else { restoreWidth(200); } + collapsed=false; + } + } + + header = $("#top"); + sidenav = $("#side-nav"); + content = $("#doc-content"); + navtree = $("#nav-tree"); + footer = $("#nav-path"); + $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); + $(sidenav).resizable({ minWidth: 0 }); + $(window).resize(function() { resizeHeight(); }); + var device = navigator.userAgent.toLowerCase(); + var touch_device = device.match(/(iphone|ipod|ipad|android)/); + if (touch_device) { /* wider split bar for touch only devices */ + $(sidenav).css({ paddingRight:'20px' }); + $('.ui-resizable-e').css({ width:'20px' }); + $('#nav-sync').css({ right:'34px' }); + barWidth=20; + } + var width = readCookie('width'); + if (width) { restoreWidth(width); } else { resizeWidth(); } + resizeHeight(); + var url = location.href; + var i=url.indexOf("#"); + if (i>=0) window.location.hash=url.substr(i); + var _preventDefault = function(evt) { evt.preventDefault(); }; + $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); + $(".ui-resizable-handle").dblclick(collapseExpand); + $(window).on('load',resizeHeight); +} +/* @license-end */ diff --git a/html/search/all_0.html b/html/search/all_0.html new file mode 100644 index 0000000..ea50fff --- /dev/null +++ b/html/search/all_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/html/search/all_0.js b/html/search/all_0.js new file mode 100644 index 0000000..fce92d4 --- /dev/null +++ b/html/search/all_0.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['megacan_0',['MegaCAN',['../md__r_e_a_d_m_e.html',1,'']]], + ['megacan_1',['MegaCAN',['../class_mega_c_a_n.html',1,'']]], + ['megacan_5fbroadcast_5fmessage_5ft_2',['MegaCAN_broadcast_message_t',['../struct_mega_c_a_n__broadcast__message__t.html',1,'']]], + ['megacan_5fmessage_5ft_3',['MegaCAN_message_t',['../struct_mega_c_a_n__message__t.html',1,'']]] +]; diff --git a/html/search/classes_0.html b/html/search/classes_0.html new file mode 100644 index 0000000..5b441a3 --- /dev/null +++ b/html/search/classes_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/html/search/classes_0.js b/html/search/classes_0.js new file mode 100644 index 0000000..7d5fd81 --- /dev/null +++ b/html/search/classes_0.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['megacan_4',['MegaCAN',['../class_mega_c_a_n.html',1,'']]], + ['megacan_5fbroadcast_5fmessage_5ft_5',['MegaCAN_broadcast_message_t',['../struct_mega_c_a_n__broadcast__message__t.html',1,'']]], + ['megacan_5fmessage_5ft_6',['MegaCAN_message_t',['../struct_mega_c_a_n__message__t.html',1,'']]] +]; diff --git a/html/search/close.png b/html/search/close.png new file mode 100644 index 0000000..9342d3d Binary files /dev/null and b/html/search/close.png differ diff --git a/html/search/mag_sel.png b/html/search/mag_sel.png new file mode 100644 index 0000000..39c0ed5 Binary files /dev/null and b/html/search/mag_sel.png differ diff --git a/html/search/nomatches.html b/html/search/nomatches.html new file mode 100644 index 0000000..4377320 --- /dev/null +++ b/html/search/nomatches.html @@ -0,0 +1,12 @@ + + + + + + + +
    +
    No Matches
    +
    + + diff --git a/html/search/pages_0.html b/html/search/pages_0.html new file mode 100644 index 0000000..ca7755f --- /dev/null +++ b/html/search/pages_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/html/search/pages_0.js b/html/search/pages_0.js new file mode 100644 index 0000000..a5c5f29 --- /dev/null +++ b/html/search/pages_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['megacan_7',['MegaCAN',['../md__r_e_a_d_m_e.html',1,'']]] +]; diff --git a/html/search/search.css b/html/search/search.css new file mode 100644 index 0000000..3cf9df9 --- /dev/null +++ b/html/search/search.css @@ -0,0 +1,271 @@ +/*---------------- Search Box */ + +#FSearchBox { + float: left; +} + +#MSearchBox { + white-space : nowrap; + float: none; + margin-top: 8px; + right: 0px; + width: 170px; + height: 24px; + z-index: 102; +} + +#MSearchBox .left +{ + display:block; + position:absolute; + left:10px; + width:20px; + height:19px; + background:url('search_l.png') no-repeat; + background-position:right; +} + +#MSearchSelect { + display:block; + position:absolute; + width:20px; + height:19px; +} + +.left #MSearchSelect { + left:4px; +} + +.right #MSearchSelect { + right:5px; +} + +#MSearchField { + display:block; + position:absolute; + height:19px; + background:url('search_m.png') repeat-x; + border:none; + width:115px; + margin-left:20px; + padding-left:4px; + color: #909090; + outline: none; + font: 9pt Arial, Verdana, sans-serif; + -webkit-border-radius: 0px; +} + +#FSearchBox #MSearchField { + margin-left:15px; +} + +#MSearchBox .right { + display:block; + position:absolute; + right:10px; + top:8px; + width:20px; + height:19px; + background:url('search_r.png') no-repeat; + background-position:left; +} + +#MSearchClose { + display: none; + position: absolute; + top: 4px; + background : none; + border: none; + margin: 0px 4px 0px 0px; + padding: 0px 0px; + outline: none; +} + +.left #MSearchClose { + left: 6px; +} + +.right #MSearchClose { + right: 2px; +} + +.MSearchBoxActive #MSearchField { + color: #000000; +} + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial, Verdana, sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: monospace; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: #000000; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: #000000; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: #FFFFFF; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + width: 60ex; + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #000; + background-color: #EEF1F7; + z-index:10000; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; + padding-bottom: 15px; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +body.SRPage { + margin: 5px 2px; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; +} + +.SRResult { + display: none; +} + +DIV.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.searchresult { + background-color: #F0F3F8; +} + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: url("../tab_a.png"); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/html/search/search.js b/html/search/search.js new file mode 100644 index 0000000..ff2b8c8 --- /dev/null +++ b/html/search/search.js @@ -0,0 +1,814 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function convertToId(search) +{ + var result = ''; + for (i=0;i do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair + { + idxChar = searchValue.substr(0, 2); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) + { + var hexCode=idx.toString(16); + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches.html'; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of . + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName == 'DIV' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName == 'DIV' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e + + + + + + +MegaCAN: Member List + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    MegaCAN +
    +
    Megasquirt CAN Protocol with Arduino
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    MegaCAN_broadcast_message_t Member List
    +
    +
    + +

    This is the complete list of members for MegaCAN_broadcast_message_t, including all inherited members.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    accelx (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    accely (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    accelz (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    adv1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    adv2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    adv3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    adv4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    adv_deg (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR10 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR11 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR12 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR13 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR14 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR15 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR16 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    afr1_old (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    afr2_old (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    AFR9 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    afrload (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    afrtgt1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    afrtgt2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    aircor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    airtemp (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    als_addfuel (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    als_timing (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    alt_duty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    alt_targv (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    baro (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    barocor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    base_advance (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    batt (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    batt_cur (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    boost_targ_1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    boost_targ_2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    boostduty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    boostduty2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    canin1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    canin2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    canout (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    canpwmin1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    canpwmin2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    canpwmin3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    canpwmin4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    cel_errorcode (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    cel_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    cel_status (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    cel_status2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    cl_idle_targ_rpm (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    clt (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    cold_adv_deg (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    deadtime1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    duty_pwm_1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    duty_pwm_2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    duty_pwm_3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    duty_pwm_4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    duty_pwm_5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    duty_pwm_6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    dwell (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    dwell_trl (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EAEfcor1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EAEfcor2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    eaeload (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egocor1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor10 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor11 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor12 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor13 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor14 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor15 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor16 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egocor2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOcor9 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egoV1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv10 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv11 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv12 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv13 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv14 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv15 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv16 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egoV2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    EGOv9 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt10 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt11 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt12 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt13 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt14 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt15 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt16 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    egt9 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    engine (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    ext_advance (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fc_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    flex_advance (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fp_duty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuel_pct (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuel_press1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuel_press2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuel_temp1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuel_temp2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuelcons (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuelcor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuelflow (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuelload (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuelload2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fuelpress_cor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    fueltemp_cor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gear (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    generic_pid_duty1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    generic_pid_duty2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_altk (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_altm (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_course (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_latdeg (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_latmin (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_latmmin (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_londeg (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_lonmin (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_lonmmin (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_outstatus (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    gps_speed (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    iacduty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    iacstep (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    idle_cor_advance (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    ignload (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    ignload2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    inj_timing_pri (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    inj_timing_sec (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knk_rtd (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl10 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl11 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl12 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl13 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl14 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl15 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl16 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    knock_cyl9 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    launch_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    launch_timer (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    launch_timing (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    load_duty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    looptime (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    ltt_cor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    MAF (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    maf_volts (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    MAFload (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    map (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    map_accel (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    MAPdot (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    mat (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    mat_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    n2o_addfuel (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    n2o_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    nitrous1_duty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    nitrous2_duty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    nitrous_timer_out (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    porta (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    portb (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    porteh (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    portk (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    portmj (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    portp (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    portt (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pw1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pw2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq10 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq11 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq12 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq13 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq14 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq15 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq16 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    pwseq9 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    revlim_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    rpm (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    RPMdot (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sd_error (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sd_filenum (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sd_phase (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sd_status (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    seconds (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors10 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors11 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors12 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors13 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors14 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors15 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors16 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sensors9 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    sp1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    squirt (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    SS1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    SS2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status5 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status6 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status7 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    status8 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    step3_timing (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    stream_level (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    synccnt (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    syncreason (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    tc_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    timing_err (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    total_accel (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    totalcor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    tps (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    tps_accel (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    tpsaccel (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    tpsadc (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    TPSdot (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    tpsfuelcut (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    ve1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    ve2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    VSS1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    VSS1dot (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    VSS2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    VSS2dot (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    VSS3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    VSS4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vsslaunch_retard (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_ang1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_ang2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_ang3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_ang4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_duty1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_duty2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_duty3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_duty4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_target1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_target2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_target3 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    vvt_target4 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    wallfuel1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    wallfuel2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    warmcor (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    water_duty (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    wbo2_en1 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    wbo2_en2 (defined in MegaCAN_broadcast_message_t)MegaCAN_broadcast_message_t
    +
    + + + + diff --git a/html/struct_mega_c_a_n__broadcast__message__t.html b/html/struct_mega_c_a_n__broadcast__message__t.html new file mode 100644 index 0000000..c903860 --- /dev/null +++ b/html/struct_mega_c_a_n__broadcast__message__t.html @@ -0,0 +1,1008 @@ + + + + + + + +MegaCAN: MegaCAN_broadcast_message_t Struct Reference + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    MegaCAN +
    +
    Megasquirt CAN Protocol with Arduino
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    + +
    +
    MegaCAN_broadcast_message_t Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Public Attributes

    +uint16_t seconds = 0
     
    +float pw1 = 0
     
    +float pw2 = 0
     
    +uint16_t rpm = 0
     
    +float adv_deg = 0
     
    +uint8_t squirt = 0
     
    +uint8_t engine = 0
     
    +float afrtgt1 = 0
     
    +float afrtgt2 = 0
     
    +uint8_t wbo2_en1 = 0
     
    +uint8_t wbo2_en2 = 0
     
    +float baro = 0
     
    +float map = 0
     
    +float mat = 0
     
    +float clt = 0
     
    +float tps = 0
     
    +float batt = 0
     
    +float afr1_old = 0
     
    +float afr2_old = 0
     
    +float knock = 0
     
    +float egocor1 = 0
     
    +float egocor2 = 0
     
    +float aircor = 0
     
    +float warmcor = 0
     
    +float tpsaccel = 0
     
    +float tpsfuelcut = 0
     
    +float barocor = 0
     
    +float totalcor = 0
     
    +float ve1 = 0
     
    +float ve2 = 0
     
    +int16_t iacstep = 0
     
    +float iacduty = 0
     
    +float cold_adv_deg = 0
     
    +float TPSdot = 0
     
    +int16_t MAPdot = 0
     
    +int16_t RPMdot = 0
     
    +float MAFload = 0
     
    +float fuelload = 0
     
    +float fuelcor = 0
     
    +float MAF = 0
     
    +float egoV1 = 0
     
    +float egoV2 = 0
     
    +float dwell = 0
     
    +float dwell_trl = 0
     
    +uint8_t status1 = 0
     
    +uint8_t status2 = 0
     
    +uint8_t status3 = 0
     
    +uint8_t status4 = 0
     
    +int16_t status5 = 0
     
    +uint8_t status6 = 0
     
    +uint8_t status7 = 0
     
    +float fuelload2 = 0
     
    +float ignload = 0
     
    +float ignload2 = 0
     
    +float airtemp = 0
     
    +float wallfuel1 = 0
     
    +float wallfuel2 = 0
     
    +float sensors1 = 0
     
    +float sensors2 = 0
     
    +float sensors3 = 0
     
    +float sensors4 = 0
     
    +float sensors5 = 0
     
    +float sensors6 = 0
     
    +float sensors7 = 0
     
    +float sensors8 = 0
     
    +float sensors9 = 0
     
    +float sensors10 = 0
     
    +float sensors11 = 0
     
    +float sensors12 = 0
     
    +float sensors13 = 0
     
    +float sensors14 = 0
     
    +float sensors15 = 0
     
    +float sensors16 = 0
     
    +float boost_targ_1 = 0
     
    +float boost_targ_2 = 0
     
    +uint8_t boostduty = 0
     
    +uint8_t boostduty2 = 0
     
    +float maf_volts = 0
     
    +float pwseq1 = 0
     
    +float pwseq2 = 0
     
    +float pwseq3 = 0
     
    +float pwseq4 = 0
     
    +float pwseq5 = 0
     
    +float pwseq6 = 0
     
    +float pwseq7 = 0
     
    +float pwseq8 = 0
     
    +float pwseq9 = 0
     
    +float pwseq10 = 0
     
    +float pwseq11 = 0
     
    +float pwseq12 = 0
     
    +float pwseq13 = 0
     
    +float pwseq14 = 0
     
    +float pwseq15 = 0
     
    +float pwseq16 = 0
     
    +float egt1 = 0
     
    +float egt2 = 0
     
    +float egt3 = 0
     
    +float egt4 = 0
     
    +float egt5 = 0
     
    +float egt6 = 0
     
    +float egt7 = 0
     
    +float egt8 = 0
     
    +float egt9 = 0
     
    +float egt10 = 0
     
    +float egt11 = 0
     
    +float egt12 = 0
     
    +float egt13 = 0
     
    +float egt14 = 0
     
    +float egt15 = 0
     
    +float egt16 = 0
     
    +uint8_t nitrous1_duty = 0
     
    +uint8_t nitrous2_duty = 0
     
    +float nitrous_timer_out = 0
     
    +float n2o_addfuel = 0
     
    +float n2o_retard = 0
     
    +int16_t canpwmin1 = 0
     
    +int16_t canpwmin2 = 0
     
    +int16_t canpwmin3 = 0
     
    +int16_t canpwmin4 = 0
     
    +uint16_t cl_idle_targ_rpm = 0
     
    +int16_t tpsadc = 0
     
    +float eaeload = 0
     
    +float afrload = 0
     
    +float EAEfcor1 = 0
     
    +float EAEfcor2 = 0
     
    +float VSS1dot = 0
     
    +float VSS2dot = 0
     
    +float accelx = 0
     
    +float accely = 0
     
    +float accelz = 0
     
    +uint8_t stream_level = 0
     
    +uint8_t water_duty = 0
     
    +float AFR1 = 0
     
    +float AFR2 = 0
     
    +float AFR3 = 0
     
    +float AFR4 = 0
     
    +float AFR5 = 0
     
    +float AFR6 = 0
     
    +float AFR7 = 0
     
    +float AFR8 = 0
     
    +float AFR9 = 0
     
    +float AFR10 = 0
     
    +float AFR11 = 0
     
    +float AFR12 = 0
     
    +float AFR13 = 0
     
    +float AFR14 = 0
     
    +float AFR15 = 0
     
    +float AFR16 = 0
     
    +uint8_t duty_pwm_1 = 0
     
    +uint8_t duty_pwm_2 = 0
     
    +uint8_t duty_pwm_3 = 0
     
    +uint8_t duty_pwm_4 = 0
     
    +uint8_t duty_pwm_5 = 0
     
    +uint8_t duty_pwm_6 = 0
     
    +int8_t gear = 0
     
    +uint8_t status8 = 0
     
    +float EGOv1 = 0
     
    +float EGOv2 = 0
     
    +float EGOv3 = 0
     
    +float EGOv4 = 0
     
    +float EGOv5 = 0
     
    +float EGOv6 = 0
     
    +float EGOv7 = 0
     
    +float EGOv8 = 0
     
    +float EGOv9 = 0
     
    +float EGOv10 = 0
     
    +float EGOv11 = 0
     
    +float EGOv12 = 0
     
    +float EGOv13 = 0
     
    +float EGOv14 = 0
     
    +float EGOv15 = 0
     
    +float EGOv16 = 0
     
    +float EGOcor1 = 0
     
    +float EGOcor2 = 0
     
    +float EGOcor3 = 0
     
    +float EGOcor4 = 0
     
    +float EGOcor5 = 0
     
    +float EGOcor6 = 0
     
    +float EGOcor7 = 0
     
    +float EGOcor8 = 0
     
    +float EGOcor9 = 0
     
    +float EGOcor10 = 0
     
    +float EGOcor11 = 0
     
    +float EGOcor12 = 0
     
    +float EGOcor13 = 0
     
    +float EGOcor14 = 0
     
    +float EGOcor15 = 0
     
    +float EGOcor16 = 0
     
    +float VSS1 = 0
     
    +float VSS2 = 0
     
    +float VSS3 = 0
     
    +float VSS4 = 0
     
    +uint8_t synccnt = 0
     
    +uint8_t syncreason = 0
     
    +uint16_t sd_filenum = 0
     
    +uint8_t sd_error = 0
     
    +uint8_t sd_phase = 0
     
    +uint8_t sd_status = 0
     
    +int8_t timing_err = 0
     
    +float vvt_ang1 = 0
     
    +float vvt_ang2 = 0
     
    +float vvt_ang3 = 0
     
    +float vvt_ang4 = 0
     
    +float vvt_target1 = 0
     
    +float vvt_target2 = 0
     
    +float vvt_target3 = 0
     
    +float vvt_target4 = 0
     
    +uint8_t vvt_duty1 = 0
     
    +uint8_t vvt_duty2 = 0
     
    +uint8_t vvt_duty3 = 0
     
    +uint8_t vvt_duty4 = 0
     
    +float inj_timing_pri = 0
     
    +float inj_timing_sec = 0
     
    +float fuel_pct = 0
     
    +float tps_accel = 0
     
    +uint16_t SS1 = 0
     
    +uint16_t SS2 = 0
     
    +float knock_cyl1 = 0
     
    +float knock_cyl2 = 0
     
    +float knock_cyl3 = 0
     
    +float knock_cyl4 = 0
     
    +float knock_cyl5 = 0
     
    +float knock_cyl6 = 0
     
    +float knock_cyl7 = 0
     
    +float knock_cyl8 = 0
     
    +float knock_cyl9 = 0
     
    +float knock_cyl10 = 0
     
    +float knock_cyl11 = 0
     
    +float knock_cyl12 = 0
     
    +float knock_cyl13 = 0
     
    +float knock_cyl14 = 0
     
    +float knock_cyl15 = 0
     
    +float knock_cyl16 = 0
     
    +float map_accel = 0
     
    +float total_accel = 0
     
    +float launch_timer = 0
     
    +float launch_retard = 0
     
    +uint8_t porta = 0
     
    +uint8_t portb = 0
     
    +uint8_t porteh = 0
     
    +uint8_t portk = 0
     
    +uint8_t portmj = 0
     
    +uint8_t portp = 0
     
    +uint8_t portt = 0
     
    +uint8_t cel_errorcode = 0
     
    +uint8_t canin1 = 0
     
    +uint8_t canin2 = 0
     
    +uint8_t canout = 0
     
    +float knk_rtd = 0
     
    +uint16_t fuelflow = 0
     
    +uint16_t fuelcons = 0
     
    +float fuel_press1 = 0
     
    +float fuel_press2 = 0
     
    +float fuel_temp1 = 0
     
    +float fuel_temp2 = 0
     
    +float batt_cur = 0
     
    +uint16_t cel_status = 0
     
    +float fp_duty = 0
     
    +uint8_t alt_duty = 0
     
    +uint8_t load_duty = 0
     
    +float alt_targv = 0
     
    +uint16_t looptime = 0
     
    +float fueltemp_cor = 0
     
    +float fuelpress_cor = 0
     
    +float ltt_cor = 0
     
    +uint8_t sp1 = 0
     
    +float tc_retard = 0
     
    +float cel_retard = 0
     
    +float fc_retard = 0
     
    +float als_addfuel = 0
     
    +float base_advance = 0
     
    +float idle_cor_advance = 0
     
    +float mat_retard = 0
     
    +float flex_advance = 0
     
    +float adv1 = 0
     
    +float adv2 = 0
     
    +float adv3 = 0
     
    +float adv4 = 0
     
    +float revlim_retard = 0
     
    +float als_timing = 0
     
    +float ext_advance = 0
     
    +float deadtime1 = 0
     
    +float launch_timing = 0
     
    +float step3_timing = 0
     
    +float vsslaunch_retard = 0
     
    +uint16_t cel_status2 = 0
     
    +int8_t gps_latdeg = 0
     
    +uint8_t gps_latmin = 0
     
    +uint16_t gps_latmmin = 0
     
    +int8_t gps_londeg = 0
     
    +uint8_t gps_lonmin = 0
     
    +uint16_t gps_lonmmin = 0
     
    +uint8_t gps_outstatus = 0
     
    +int8_t gps_altk = 0
     
    +uint16_t gps_altm = 0
     
    +float gps_speed = 0
     
    +float gps_course = 0
     
    +float generic_pid_duty1 = 0
     
    +float generic_pid_duty2 = 0
     
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/html/struct_mega_c_a_n__broadcast__message__t.js b/html/struct_mega_c_a_n__broadcast__message__t.js new file mode 100644 index 0000000..63ee7c9 --- /dev/null +++ b/html/struct_mega_c_a_n__broadcast__message__t.js @@ -0,0 +1,302 @@ +var struct_mega_c_a_n__broadcast__message__t = +[ + [ "accelx", "struct_mega_c_a_n__broadcast__message__t.html#a26c4805b088fbd37a4716f02fa588f83", null ], + [ "accely", "struct_mega_c_a_n__broadcast__message__t.html#ae631ac72571174322ecd48b8eaf1d40d", null ], + [ "accelz", "struct_mega_c_a_n__broadcast__message__t.html#a1b55d588217476a95067dd8bd08aefae", null ], + [ "adv1", "struct_mega_c_a_n__broadcast__message__t.html#adb6420f32aecaced10e1a1ee417c9ff0", null ], + [ "adv2", "struct_mega_c_a_n__broadcast__message__t.html#aabd317f427eb0c0196cefc5b36b073de", null ], + [ "adv3", "struct_mega_c_a_n__broadcast__message__t.html#a174fc46dfd18d0dd8b4d915bd54bd2c8", null ], + [ "adv4", "struct_mega_c_a_n__broadcast__message__t.html#af6d4ca4823cef3b52a1218b3535ffe89", null ], + [ "adv_deg", "struct_mega_c_a_n__broadcast__message__t.html#a1642bc3a80cf24ff66f132e76e67344d", null ], + [ "AFR1", "struct_mega_c_a_n__broadcast__message__t.html#ae3eca0ebfbca8304b59646c987e535de", null ], + [ "AFR10", "struct_mega_c_a_n__broadcast__message__t.html#ac7b4b8dd0dd11e273cc4d67f7ec0e4b6", null ], + [ "AFR11", "struct_mega_c_a_n__broadcast__message__t.html#aafb404f04df7756b496b6dd225ad7f7a", null ], + [ "AFR12", "struct_mega_c_a_n__broadcast__message__t.html#ab72994297b604bcd9ed54246f2639c3d", null ], + [ "AFR13", "struct_mega_c_a_n__broadcast__message__t.html#af6d4d870ce2b9d47718a68a2e0dcbd47", null ], + [ "AFR14", "struct_mega_c_a_n__broadcast__message__t.html#aab45be5315f2cb0c549e3a84bc22dd03", null ], + [ "AFR15", "struct_mega_c_a_n__broadcast__message__t.html#a5cb934d91cbc102f17e0fbaf28155579", null ], + [ "AFR16", "struct_mega_c_a_n__broadcast__message__t.html#a417132fae4e061869ff1bdfcb9a1f385", null ], + [ "afr1_old", "struct_mega_c_a_n__broadcast__message__t.html#a973e6b224831f20b1de77186e6f7de88", null ], + [ "AFR2", "struct_mega_c_a_n__broadcast__message__t.html#a12c7108a48a75c557c9d6f56aa81a3cc", null ], + [ "afr2_old", "struct_mega_c_a_n__broadcast__message__t.html#a08d9ea1a0ff2522124ceee3ebd86edc5", null ], + [ "AFR3", "struct_mega_c_a_n__broadcast__message__t.html#a1eb9fe24c0cf35601be2860ee2f2a03f", null ], + [ "AFR4", "struct_mega_c_a_n__broadcast__message__t.html#a0110f804df6a075cbead8fbe51981eae", null ], + [ "AFR5", "struct_mega_c_a_n__broadcast__message__t.html#ac42234d65da064c2a8d620c74762b0e0", null ], + [ "AFR6", "struct_mega_c_a_n__broadcast__message__t.html#a9ea3a584a46d1b35488cc4501d090849", null ], + [ "AFR7", "struct_mega_c_a_n__broadcast__message__t.html#ad350cf86c348d9f0b342034ac6c0ecb3", null ], + [ "AFR8", "struct_mega_c_a_n__broadcast__message__t.html#ae83ed7c3dd467e5f3ed14a05b0041f5a", null ], + [ "AFR9", "struct_mega_c_a_n__broadcast__message__t.html#a9d6901d4dd2fe3a0dd0c5d304f578b49", null ], + [ "afrload", "struct_mega_c_a_n__broadcast__message__t.html#a36329e3a25b350bbb375eed61ccd0f7c", null ], + [ "afrtgt1", "struct_mega_c_a_n__broadcast__message__t.html#a7e0bd5b486e58294dc772452169d3c2f", null ], + [ "afrtgt2", "struct_mega_c_a_n__broadcast__message__t.html#a28e218f7dae081262f9ccfe9cd78c394", null ], + [ "aircor", "struct_mega_c_a_n__broadcast__message__t.html#a5181188e38b53e739cd39fda11d2e585", null ], + [ "airtemp", "struct_mega_c_a_n__broadcast__message__t.html#a4d79230ca4be9e891982e5993a3ce0f8", null ], + [ "als_addfuel", "struct_mega_c_a_n__broadcast__message__t.html#ac075ba1ec78a6e3a9ae8cc801adf689c", null ], + [ "als_timing", "struct_mega_c_a_n__broadcast__message__t.html#a6adf3f68779895e600f0cda9ecfc61c7", null ], + [ "alt_duty", "struct_mega_c_a_n__broadcast__message__t.html#a7a14d8ba2bbf09b83505a859f74a2e05", null ], + [ "alt_targv", "struct_mega_c_a_n__broadcast__message__t.html#a2fe7caba8e222837841e3256e4f616a7", null ], + [ "baro", "struct_mega_c_a_n__broadcast__message__t.html#a0761e45fafea576562168f23a6a1d869", null ], + [ "barocor", "struct_mega_c_a_n__broadcast__message__t.html#a77a4e3cce39c9e32a72f48938b2edd87", null ], + [ "base_advance", "struct_mega_c_a_n__broadcast__message__t.html#a43d6c1d4abde154e0b1f9167a49f030b", null ], + [ "batt", "struct_mega_c_a_n__broadcast__message__t.html#ae9c0d3a9371ed663f77a6938d949bd58", null ], + [ "batt_cur", "struct_mega_c_a_n__broadcast__message__t.html#a95d021126edf8e637f9b3ff9241dc826", null ], + [ "boost_targ_1", "struct_mega_c_a_n__broadcast__message__t.html#ae2bf1716b569217112e758d9a3069423", null ], + [ "boost_targ_2", "struct_mega_c_a_n__broadcast__message__t.html#ad847164fbfe683eb9b93b5a32149558c", null ], + [ "boostduty", "struct_mega_c_a_n__broadcast__message__t.html#a4408f943a1ec1603dfde45361ba49edf", null ], + [ "boostduty2", "struct_mega_c_a_n__broadcast__message__t.html#a59db29a989b6bdf866b43d6242cc323c", null ], + [ "canin1", "struct_mega_c_a_n__broadcast__message__t.html#a22ac4a76359d39bf1dcadfdfb4c93590", null ], + [ "canin2", "struct_mega_c_a_n__broadcast__message__t.html#af6e330b31308bd195c5afe1ae992fcf8", null ], + [ "canout", "struct_mega_c_a_n__broadcast__message__t.html#a4ed2ae6cb9a8810c91a4b6568334258a", null ], + [ "canpwmin1", "struct_mega_c_a_n__broadcast__message__t.html#ab96606f774e123103d66aeb8edad8c45", null ], + [ "canpwmin2", "struct_mega_c_a_n__broadcast__message__t.html#a489f4e9cf953d65399467c3839698b34", null ], + [ "canpwmin3", "struct_mega_c_a_n__broadcast__message__t.html#a21279c77a90bd50e0d95c84040346efd", null ], + [ "canpwmin4", "struct_mega_c_a_n__broadcast__message__t.html#a358ef36decaa738d49e213197ab3f05d", null ], + [ "cel_errorcode", "struct_mega_c_a_n__broadcast__message__t.html#a480dba996388a77b0a162914186a8adc", null ], + [ "cel_retard", "struct_mega_c_a_n__broadcast__message__t.html#a55eec37c73604d37773057f2cd072a61", null ], + [ "cel_status", "struct_mega_c_a_n__broadcast__message__t.html#a10809748ec46b5bda4559a9fba8f4961", null ], + [ "cel_status2", "struct_mega_c_a_n__broadcast__message__t.html#a1d4ddb561c206d7ee4ac5d877b89b3df", null ], + [ "cl_idle_targ_rpm", "struct_mega_c_a_n__broadcast__message__t.html#af4047f9a7bfba6b2d035670e02d8c669", null ], + [ "clt", "struct_mega_c_a_n__broadcast__message__t.html#ab6c8287603cc34ea047add2fedffe4e9", null ], + [ "cold_adv_deg", "struct_mega_c_a_n__broadcast__message__t.html#ae02f4939fd2d7dbe8210cbfe6b4f476f", null ], + [ "deadtime1", "struct_mega_c_a_n__broadcast__message__t.html#a798fb4b6811f643d6feb38e896ddfaac", null ], + [ "duty_pwm_1", "struct_mega_c_a_n__broadcast__message__t.html#ac9a22278c5ff24a9ed2437a3fdaed319", null ], + [ "duty_pwm_2", "struct_mega_c_a_n__broadcast__message__t.html#a8ecf410b4cd565be25276fe9e0ffa037", null ], + [ "duty_pwm_3", "struct_mega_c_a_n__broadcast__message__t.html#accac2aaed08a63e9f38df10970fdfaed", null ], + [ "duty_pwm_4", "struct_mega_c_a_n__broadcast__message__t.html#a498285158977bd2b520e0eb70dca4992", null ], + [ "duty_pwm_5", "struct_mega_c_a_n__broadcast__message__t.html#a2fadc0d441a4fa9b6c2d8e8c870a8e76", null ], + [ "duty_pwm_6", "struct_mega_c_a_n__broadcast__message__t.html#a9010eb59bb89f36d9dbe9610a4d84eb8", null ], + [ "dwell", "struct_mega_c_a_n__broadcast__message__t.html#a1a69a7fed50801871aa64f7f67e0c93e", null ], + [ "dwell_trl", "struct_mega_c_a_n__broadcast__message__t.html#a7992a648ea275995309d05413e60577b", null ], + [ "EAEfcor1", "struct_mega_c_a_n__broadcast__message__t.html#abf1bb324299a9878d5619a6c7e6669a4", null ], + [ "EAEfcor2", "struct_mega_c_a_n__broadcast__message__t.html#a6f839431b48a9ff3343b2a8df79b2942", null ], + [ "eaeload", "struct_mega_c_a_n__broadcast__message__t.html#a36a9cb7cf0cc2fb380a7604a908571eb", null ], + [ "egocor1", "struct_mega_c_a_n__broadcast__message__t.html#a47f6f12c7092fff9fea654919cab06c3", null ], + [ "EGOcor1", "struct_mega_c_a_n__broadcast__message__t.html#a2e64c495bdf82784db1798219d28286e", null ], + [ "EGOcor10", "struct_mega_c_a_n__broadcast__message__t.html#aefd21f0a4f7f739dd0add2d5ebe84a6e", null ], + [ "EGOcor11", "struct_mega_c_a_n__broadcast__message__t.html#a1d65035225b89ae5c849a4597c8cd65c", null ], + [ "EGOcor12", "struct_mega_c_a_n__broadcast__message__t.html#aa3eb738b4abecd23883e80ddb1ad8098", null ], + [ "EGOcor13", "struct_mega_c_a_n__broadcast__message__t.html#a181cbdac01d7cf94b85e49e1de669b3c", null ], + [ "EGOcor14", "struct_mega_c_a_n__broadcast__message__t.html#ada30c7989e13ce225fb6fc26f0001963", null ], + [ "EGOcor15", "struct_mega_c_a_n__broadcast__message__t.html#a7cf2a81d67f4ca9eb5879293e5d4cad7", null ], + [ "EGOcor16", "struct_mega_c_a_n__broadcast__message__t.html#a5fa6b34fe7a603a2cd9ba6af5f2168dc", null ], + [ "egocor2", "struct_mega_c_a_n__broadcast__message__t.html#a032334d69702a84f48da06c639802875", null ], + [ "EGOcor2", "struct_mega_c_a_n__broadcast__message__t.html#ad0ffc3db06043e30af6227f20faa87dd", null ], + [ "EGOcor3", "struct_mega_c_a_n__broadcast__message__t.html#a7627b0019b79267ac0c4fde2e769ed2f", null ], + [ "EGOcor4", "struct_mega_c_a_n__broadcast__message__t.html#ab1dad4f2c4c3ea4ebd556a5546a1d738", null ], + [ "EGOcor5", "struct_mega_c_a_n__broadcast__message__t.html#a6cfffcbe94bf535e199b05484c388df5", null ], + [ "EGOcor6", "struct_mega_c_a_n__broadcast__message__t.html#afda79472caee8e23ddac7f2e1d5574c0", null ], + [ "EGOcor7", "struct_mega_c_a_n__broadcast__message__t.html#ac8ce9885706132a79628fb493365056c", null ], + [ "EGOcor8", "struct_mega_c_a_n__broadcast__message__t.html#ae292607f68f1de05a167b308def8e6d2", null ], + [ "EGOcor9", "struct_mega_c_a_n__broadcast__message__t.html#a35225e1b896a8baf5a6290335f5810c1", null ], + [ "egoV1", "struct_mega_c_a_n__broadcast__message__t.html#abab69179632363a458be2c9727370414", null ], + [ "EGOv1", "struct_mega_c_a_n__broadcast__message__t.html#a0b9ed6932435deeec068141340e3b953", null ], + [ "EGOv10", "struct_mega_c_a_n__broadcast__message__t.html#aeed1c79cb8e27bac6f630bc6a3d54d0c", null ], + [ "EGOv11", "struct_mega_c_a_n__broadcast__message__t.html#a6b16a8ca69e61f6e089d4608cb94e380", null ], + [ "EGOv12", "struct_mega_c_a_n__broadcast__message__t.html#afb521a0c8398ebf50101801b5eb15ed9", null ], + [ "EGOv13", "struct_mega_c_a_n__broadcast__message__t.html#a709f90625db122d371fb2f892181a113", null ], + [ "EGOv14", "struct_mega_c_a_n__broadcast__message__t.html#a4485b8a7d429e8ec659b83658d583a5d", null ], + [ "EGOv15", "struct_mega_c_a_n__broadcast__message__t.html#a9d86e7d983c265c70bc5110a5676cbb2", null ], + [ "EGOv16", "struct_mega_c_a_n__broadcast__message__t.html#a6532588a89326dfaea647c0081c0a90b", null ], + [ "egoV2", "struct_mega_c_a_n__broadcast__message__t.html#ab1ea3ae2e563f1582a8d5f329a795617", null ], + [ "EGOv2", "struct_mega_c_a_n__broadcast__message__t.html#aeb8fd19eb57b2b34ba333d7b81a28114", null ], + [ "EGOv3", "struct_mega_c_a_n__broadcast__message__t.html#a278c8fc628e58a6fec7c9047b842d733", null ], + [ "EGOv4", "struct_mega_c_a_n__broadcast__message__t.html#a2fc6c49b49644ab1f59ac905a0a2572b", null ], + [ "EGOv5", "struct_mega_c_a_n__broadcast__message__t.html#a0495753007efe820753a4cc17d054ad9", null ], + [ "EGOv6", "struct_mega_c_a_n__broadcast__message__t.html#ab0afb632de8717b91e2667612d20f0c7", null ], + [ "EGOv7", "struct_mega_c_a_n__broadcast__message__t.html#a1ac804547f5326e7863367203533cdb8", null ], + [ "EGOv8", "struct_mega_c_a_n__broadcast__message__t.html#a2dfd7b8f156145d1fb6afa3f2ad2e4d6", null ], + [ "EGOv9", "struct_mega_c_a_n__broadcast__message__t.html#a5648d6e7436c2744916bd4ccd89be907", null ], + [ "egt1", "struct_mega_c_a_n__broadcast__message__t.html#a940a6a58f471856005294c90f375a407", null ], + [ "egt10", "struct_mega_c_a_n__broadcast__message__t.html#a317ecf6e2b52ead22653020e60f3a379", null ], + [ "egt11", "struct_mega_c_a_n__broadcast__message__t.html#a7dd3ebbf33d5545d78694b0d40d56564", null ], + [ "egt12", "struct_mega_c_a_n__broadcast__message__t.html#a05b947ad02c371fa8eb360dd5cbfd4d9", null ], + [ "egt13", "struct_mega_c_a_n__broadcast__message__t.html#a261b1299920b3b74cc11cf947a15df10", null ], + [ "egt14", "struct_mega_c_a_n__broadcast__message__t.html#af9f3e56a36ae31b2fccc516d65f194b2", null ], + [ "egt15", "struct_mega_c_a_n__broadcast__message__t.html#aa3f4f4dcd6263e1ce0204646eb3f8a5a", null ], + [ "egt16", "struct_mega_c_a_n__broadcast__message__t.html#a2650844436e956b029382b57edb05ad5", null ], + [ "egt2", "struct_mega_c_a_n__broadcast__message__t.html#a583414040f10fb1e48d5117e08f07ca8", null ], + [ "egt3", "struct_mega_c_a_n__broadcast__message__t.html#abae5420c80dee7e7d70ad8ed676bec65", null ], + [ "egt4", "struct_mega_c_a_n__broadcast__message__t.html#a8d4d0b0a657b19aac1ae5af0aef3a115", null ], + [ "egt5", "struct_mega_c_a_n__broadcast__message__t.html#a2c7e296d78c9217ab899cb9cdbf4c102", null ], + [ "egt6", "struct_mega_c_a_n__broadcast__message__t.html#a24db64baf45791ec4406f91468ad27e1", null ], + [ "egt7", "struct_mega_c_a_n__broadcast__message__t.html#a430020d9ad5abd81ec550b314ec42977", null ], + [ "egt8", "struct_mega_c_a_n__broadcast__message__t.html#a8f980c47fad8bdaa1765f871724730a3", null ], + [ "egt9", "struct_mega_c_a_n__broadcast__message__t.html#a0a485d1d45a6771f7ab7f2db2aad65bb", null ], + [ "engine", "struct_mega_c_a_n__broadcast__message__t.html#a724b1adbbb853889f5a263c707b773fc", null ], + [ "ext_advance", "struct_mega_c_a_n__broadcast__message__t.html#ab68d5d433ea511c5ea8cf9583c86cdf8", null ], + [ "fc_retard", "struct_mega_c_a_n__broadcast__message__t.html#afa059f6eb0c8be5b86c70c786e736cce", null ], + [ "flex_advance", "struct_mega_c_a_n__broadcast__message__t.html#a8736d25cbb96d3af68c2c3f9e959deb8", null ], + [ "fp_duty", "struct_mega_c_a_n__broadcast__message__t.html#a68101494340ce8448f9925b2d82e1731", null ], + [ "fuel_pct", "struct_mega_c_a_n__broadcast__message__t.html#a968eba131cdeb941ee21cb876af805b1", null ], + [ "fuel_press1", "struct_mega_c_a_n__broadcast__message__t.html#a60f433f94a11abab1ec15705e93c4e47", null ], + [ "fuel_press2", "struct_mega_c_a_n__broadcast__message__t.html#a7abf3f45a9ecbc141cd9b79f4ad923b7", null ], + [ "fuel_temp1", "struct_mega_c_a_n__broadcast__message__t.html#ad3ecd162605b60c0ebc5da64882da8af", null ], + [ "fuel_temp2", "struct_mega_c_a_n__broadcast__message__t.html#ae5ea25e769c1528f2b2aebe64ae16967", null ], + [ "fuelcons", "struct_mega_c_a_n__broadcast__message__t.html#afb9fa3ddcdd572fd87da40d6966fc211", null ], + [ "fuelcor", "struct_mega_c_a_n__broadcast__message__t.html#aad2cbc6cc80fda576d96072597c047f2", null ], + [ "fuelflow", "struct_mega_c_a_n__broadcast__message__t.html#acdeaa21d55f63a1099ba1d26af80a846", null ], + [ "fuelload", "struct_mega_c_a_n__broadcast__message__t.html#ad41bc30112a261b7fa7f55ce1edaa12c", null ], + [ "fuelload2", "struct_mega_c_a_n__broadcast__message__t.html#a4782ad8bf23437460e9297e0adc61276", null ], + [ "fuelpress_cor", "struct_mega_c_a_n__broadcast__message__t.html#ad1f99f280045aff04b762415944b1ac1", null ], + [ "fueltemp_cor", "struct_mega_c_a_n__broadcast__message__t.html#a772383631b025917b85ff68b4a3e6ccb", null ], + [ "gear", "struct_mega_c_a_n__broadcast__message__t.html#a9688fbea37ea46c208cae59d1546ba9c", null ], + [ "generic_pid_duty1", "struct_mega_c_a_n__broadcast__message__t.html#ad1e251f7e165a01cd6cd0df875032410", null ], + [ "generic_pid_duty2", "struct_mega_c_a_n__broadcast__message__t.html#ae4a27bf67a7326b093575d7121cc905d", null ], + [ "gps_altk", "struct_mega_c_a_n__broadcast__message__t.html#a42a250af46380fa74dbe9e5915caa5db", null ], + [ "gps_altm", "struct_mega_c_a_n__broadcast__message__t.html#a6bad54a02e40d27ef0fae83a1636e441", null ], + [ "gps_course", "struct_mega_c_a_n__broadcast__message__t.html#a86f73b0b6b8d1b40d6a79892de38f4cc", null ], + [ "gps_latdeg", "struct_mega_c_a_n__broadcast__message__t.html#abaf432ab86b3f3a9a5a5fb7eb5a38775", null ], + [ "gps_latmin", "struct_mega_c_a_n__broadcast__message__t.html#abaca7c4af755715896d1f07c2725988e", null ], + [ "gps_latmmin", "struct_mega_c_a_n__broadcast__message__t.html#a04b8d16154d57eb61ea9033d57b895f9", null ], + [ "gps_londeg", "struct_mega_c_a_n__broadcast__message__t.html#a7df62eef341cbfea1bb70a5027a4a5a1", null ], + [ "gps_lonmin", "struct_mega_c_a_n__broadcast__message__t.html#ae937bfbebfe03b2c8829dc61e3c7c44c", null ], + [ "gps_lonmmin", "struct_mega_c_a_n__broadcast__message__t.html#a667194bd567b38d7422df7ba8ec5dc10", null ], + [ "gps_outstatus", "struct_mega_c_a_n__broadcast__message__t.html#ae4b7cdccee0ba823729feed2406a223a", null ], + [ "gps_speed", "struct_mega_c_a_n__broadcast__message__t.html#a14d8aa7e2fb60e403e4339e96fbf98e0", null ], + [ "iacduty", "struct_mega_c_a_n__broadcast__message__t.html#a2c538ffe217768621a2b639ba3db4d74", null ], + [ "iacstep", "struct_mega_c_a_n__broadcast__message__t.html#a1b6ca78e798921e411012ba7ea23ba5f", null ], + [ "idle_cor_advance", "struct_mega_c_a_n__broadcast__message__t.html#aacffc7dda85a91ea7911aca8af6d0f1d", null ], + [ "ignload", "struct_mega_c_a_n__broadcast__message__t.html#a2d5dcbaf206bebff373d5af426dc40f3", null ], + [ "ignload2", "struct_mega_c_a_n__broadcast__message__t.html#a62512ed06d269f2fd376f36d23ff8e98", null ], + [ "inj_timing_pri", "struct_mega_c_a_n__broadcast__message__t.html#ab27aacb9ace6dcad1b71236707f9e1f5", null ], + [ "inj_timing_sec", "struct_mega_c_a_n__broadcast__message__t.html#a1c64785de11a7355252595ef069e850e", null ], + [ "knk_rtd", "struct_mega_c_a_n__broadcast__message__t.html#acef9a23b78d6078f60cffe870114a247", null ], + [ "knock", "struct_mega_c_a_n__broadcast__message__t.html#ae4b8537a8f13ee3eb88e1f4cbbd9a368", null ], + [ "knock_cyl1", "struct_mega_c_a_n__broadcast__message__t.html#a29037091c77b2a0a0b47782a68cfa574", null ], + [ "knock_cyl10", "struct_mega_c_a_n__broadcast__message__t.html#a1a0d40ba9606ef8726ad0036c4a7ae45", null ], + [ "knock_cyl11", "struct_mega_c_a_n__broadcast__message__t.html#adcc9d5dc925a14718a5261a76a455035", null ], + [ "knock_cyl12", "struct_mega_c_a_n__broadcast__message__t.html#a196c47bde933c8b59c8512af47ca6e4e", null ], + [ "knock_cyl13", "struct_mega_c_a_n__broadcast__message__t.html#a9503aead9c90a2593b169eefd4e0ac3f", null ], + [ "knock_cyl14", "struct_mega_c_a_n__broadcast__message__t.html#ad42b228ed25adf9ada5fcb4917aa9061", null ], + [ "knock_cyl15", "struct_mega_c_a_n__broadcast__message__t.html#a1d0cb49d88bb8dcda88dade6be32ce8e", null ], + [ "knock_cyl16", "struct_mega_c_a_n__broadcast__message__t.html#a01484c1a0fb4cfbae1f8d854d1baed80", null ], + [ "knock_cyl2", "struct_mega_c_a_n__broadcast__message__t.html#aa8266fa734d97d81b6b2f2b85359f534", null ], + [ "knock_cyl3", "struct_mega_c_a_n__broadcast__message__t.html#a8bc3b304d6005f3c5efbe183322b9fb9", null ], + [ "knock_cyl4", "struct_mega_c_a_n__broadcast__message__t.html#ae35fbefcc6e1a4afbbe5f55f36e638fe", null ], + [ "knock_cyl5", "struct_mega_c_a_n__broadcast__message__t.html#ad2edc0464b321135b62a9b985ad20997", null ], + [ "knock_cyl6", "struct_mega_c_a_n__broadcast__message__t.html#a4d31b8632f5bffbc1947c9499b9f6b1a", null ], + [ "knock_cyl7", "struct_mega_c_a_n__broadcast__message__t.html#a91ad9d8e19a32225457cb992f50c6e35", null ], + [ "knock_cyl8", "struct_mega_c_a_n__broadcast__message__t.html#a31be90433cd6e654a9ba4ebf5aafe060", null ], + [ "knock_cyl9", "struct_mega_c_a_n__broadcast__message__t.html#a8badb3c5d1440c247277aeb206793063", null ], + [ "launch_retard", "struct_mega_c_a_n__broadcast__message__t.html#ae706c4748314c4f48eb209df931978ce", null ], + [ "launch_timer", "struct_mega_c_a_n__broadcast__message__t.html#a96a97712c91e75bd05dd97098e554fd3", null ], + [ "launch_timing", "struct_mega_c_a_n__broadcast__message__t.html#ab0c8f591dd743e329759f7e169e0662d", null ], + [ "load_duty", "struct_mega_c_a_n__broadcast__message__t.html#a206fef7681b1cf67cc0f1fb70ef2e721", null ], + [ "looptime", "struct_mega_c_a_n__broadcast__message__t.html#ae4798214f75f397890f3defa0cf13a9a", null ], + [ "ltt_cor", "struct_mega_c_a_n__broadcast__message__t.html#aff481babf905cd503faacdb7893f0d94", null ], + [ "MAF", "struct_mega_c_a_n__broadcast__message__t.html#a684d523d6f30ba449771005283b774ab", null ], + [ "maf_volts", "struct_mega_c_a_n__broadcast__message__t.html#a109723c95cd2659684afa54278f3700b", null ], + [ "MAFload", "struct_mega_c_a_n__broadcast__message__t.html#ab4e790ac3773b7bb094be15e3a8defc0", null ], + [ "map", "struct_mega_c_a_n__broadcast__message__t.html#abc8ae71de2559f3f374a79bd20325b9b", null ], + [ "map_accel", "struct_mega_c_a_n__broadcast__message__t.html#aa76678749a73e983ea1ab319e0ba699e", null ], + [ "MAPdot", "struct_mega_c_a_n__broadcast__message__t.html#a264a4261aa7a1452286651795025abc9", null ], + [ "mat", "struct_mega_c_a_n__broadcast__message__t.html#af2f278ec4c1294850fcb5f127a661bb2", null ], + [ "mat_retard", "struct_mega_c_a_n__broadcast__message__t.html#a7e68bb8848e79b3746ee0b4d6fcf76e9", null ], + [ "n2o_addfuel", "struct_mega_c_a_n__broadcast__message__t.html#a0940b7ba1b0c0602c23fa51ff28302c4", null ], + [ "n2o_retard", "struct_mega_c_a_n__broadcast__message__t.html#a4cc8c195b4d762ea55faf73728a2a75e", null ], + [ "nitrous1_duty", "struct_mega_c_a_n__broadcast__message__t.html#a626d31618d98a9c1188868118902bb93", null ], + [ "nitrous2_duty", "struct_mega_c_a_n__broadcast__message__t.html#ae3d341ec52077188380959717ab6baea", null ], + [ "nitrous_timer_out", "struct_mega_c_a_n__broadcast__message__t.html#a73cd472a5bfeb384bdebaf60c2ef9659", null ], + [ "porta", "struct_mega_c_a_n__broadcast__message__t.html#ade58cc73e49176519cd88dd9e7abf6e7", null ], + [ "portb", "struct_mega_c_a_n__broadcast__message__t.html#a2990a85d21ecdfe86a85f59230578bbd", null ], + [ "porteh", "struct_mega_c_a_n__broadcast__message__t.html#a62e749325e3c595f53a96483553272b8", null ], + [ "portk", "struct_mega_c_a_n__broadcast__message__t.html#a52151e8b1add949d83e8fc1c25f98c71", null ], + [ "portmj", "struct_mega_c_a_n__broadcast__message__t.html#a516f5ba2eb82de5171cb9f9a08b79797", null ], + [ "portp", "struct_mega_c_a_n__broadcast__message__t.html#a85f3d3eb2afda22b2ad0e52baaf525df", null ], + [ "portt", "struct_mega_c_a_n__broadcast__message__t.html#a9a359eb09e7f9a5768ecb81878c333f5", null ], + [ "pw1", "struct_mega_c_a_n__broadcast__message__t.html#acee267828300ec1134487ecfd376aaa8", null ], + [ "pw2", "struct_mega_c_a_n__broadcast__message__t.html#a7c6b36b7f6a033b6ed2e801c5c12e682", null ], + [ "pwseq1", "struct_mega_c_a_n__broadcast__message__t.html#a918d19f5bf5f05c609337b0f9c584ba3", null ], + [ "pwseq10", "struct_mega_c_a_n__broadcast__message__t.html#a7f2d047791b0aa86711b5a3399004079", null ], + [ "pwseq11", "struct_mega_c_a_n__broadcast__message__t.html#a13f06498710349ca8b5eafccd04e949b", null ], + [ "pwseq12", "struct_mega_c_a_n__broadcast__message__t.html#af03a8fb6480c2c6bac173daff2f6ecdc", null ], + [ "pwseq13", "struct_mega_c_a_n__broadcast__message__t.html#a59adef194af2087cb0cd019b4c1a4fa2", null ], + [ "pwseq14", "struct_mega_c_a_n__broadcast__message__t.html#a3225933384b1a61548dd587af9ffc311", null ], + [ "pwseq15", "struct_mega_c_a_n__broadcast__message__t.html#aa97d9a8ecb3bcb4c08e43394fd1a4f75", null ], + [ "pwseq16", "struct_mega_c_a_n__broadcast__message__t.html#a6df4fc75489ad20208505e5421daed08", null ], + [ "pwseq2", "struct_mega_c_a_n__broadcast__message__t.html#a3387dde62d43194af45bbdfa0c91c598", null ], + [ "pwseq3", "struct_mega_c_a_n__broadcast__message__t.html#a6ed2e16029e50e497ac6970970ee829d", null ], + [ "pwseq4", "struct_mega_c_a_n__broadcast__message__t.html#a299e25bda9e1505d2674b9e59d60457d", null ], + [ "pwseq5", "struct_mega_c_a_n__broadcast__message__t.html#a589a5b979e6bf32d13bdfff0a9a9fc74", null ], + [ "pwseq6", "struct_mega_c_a_n__broadcast__message__t.html#abaa694c167ccad832b06891c6d5008a8", null ], + [ "pwseq7", "struct_mega_c_a_n__broadcast__message__t.html#a0194fc25ad556fd5fb5246a7b9f85396", null ], + [ "pwseq8", "struct_mega_c_a_n__broadcast__message__t.html#a670188a15d89027bd7f80e9c5b2a0771", null ], + [ "pwseq9", "struct_mega_c_a_n__broadcast__message__t.html#ab86b74f70ade7e0becdf3768f1c5c631", null ], + [ "revlim_retard", "struct_mega_c_a_n__broadcast__message__t.html#a02922fe06982ab3dd9619bcebaf4677a", null ], + [ "rpm", "struct_mega_c_a_n__broadcast__message__t.html#ad6c14000ec87d10f85fde5cfaae97407", null ], + [ "RPMdot", "struct_mega_c_a_n__broadcast__message__t.html#aba56f64c7931b9ffce40e7584140fe3d", null ], + [ "sd_error", "struct_mega_c_a_n__broadcast__message__t.html#a0b69523dc90504291f6d88879ec88dbe", null ], + [ "sd_filenum", "struct_mega_c_a_n__broadcast__message__t.html#ab0beef4d8190cb903718fcc252e162f1", null ], + [ "sd_phase", "struct_mega_c_a_n__broadcast__message__t.html#a5be73a89cbb97cdfd40aef8e12f058fd", null ], + [ "sd_status", "struct_mega_c_a_n__broadcast__message__t.html#acdd1b68d1fcc972ba6367ebd06ccc3f9", null ], + [ "seconds", "struct_mega_c_a_n__broadcast__message__t.html#a81d254bf965930cce132d2d07b4bb99c", null ], + [ "sensors1", "struct_mega_c_a_n__broadcast__message__t.html#aaff604c59c1ad6ddd787c15931268628", null ], + [ "sensors10", "struct_mega_c_a_n__broadcast__message__t.html#ad4b97bf2bc0e48424241a14bf70c6250", null ], + [ "sensors11", "struct_mega_c_a_n__broadcast__message__t.html#a1ff008ed5cf66fbdf188a9401576dc5b", null ], + [ "sensors12", "struct_mega_c_a_n__broadcast__message__t.html#ac25a213a78c55f9a821c6c58e6d552ae", null ], + [ "sensors13", "struct_mega_c_a_n__broadcast__message__t.html#a1e6ceb1555307d1769bc1da3a5ae8853", null ], + [ "sensors14", "struct_mega_c_a_n__broadcast__message__t.html#aac6e67c8c48cd15cd4f7e8ab2b567b3d", null ], + [ "sensors15", "struct_mega_c_a_n__broadcast__message__t.html#aa3979ff94e8f8c476fd0df81031db3f9", null ], + [ "sensors16", "struct_mega_c_a_n__broadcast__message__t.html#ad1bbe4d197ed5a17100e52ec2fbe4401", null ], + [ "sensors2", "struct_mega_c_a_n__broadcast__message__t.html#a432ef7cb4eaaeb2a5217bee98b8cacb1", null ], + [ "sensors3", "struct_mega_c_a_n__broadcast__message__t.html#a2a7ba38420ed693504f8145b7df47a8b", null ], + [ "sensors4", "struct_mega_c_a_n__broadcast__message__t.html#a3773c281dc803412ec2660b8e46ec3fb", null ], + [ "sensors5", "struct_mega_c_a_n__broadcast__message__t.html#a772bd6137487017d4dd3f51ac8b2235d", null ], + [ "sensors6", "struct_mega_c_a_n__broadcast__message__t.html#a6bc2b55eff8199059e57f4a080d5d69d", null ], + [ "sensors7", "struct_mega_c_a_n__broadcast__message__t.html#ae69e81048590d3195eb5a24c389d7222", null ], + [ "sensors8", "struct_mega_c_a_n__broadcast__message__t.html#abab5be27ff4fe2bae16236e698390a87", null ], + [ "sensors9", "struct_mega_c_a_n__broadcast__message__t.html#aebd29ab9c85789f37ecc15857a2604ef", null ], + [ "sp1", "struct_mega_c_a_n__broadcast__message__t.html#aa90f7629486a72b9bc6a61dac50e3ef9", null ], + [ "squirt", "struct_mega_c_a_n__broadcast__message__t.html#a0b7bdb93b95aabd57349ffd64f9273ec", null ], + [ "SS1", "struct_mega_c_a_n__broadcast__message__t.html#afa7d684d75c8ebf0d3b16c5114421215", null ], + [ "SS2", "struct_mega_c_a_n__broadcast__message__t.html#abbcb34772ab88aa0bd1e8092220d93ba", null ], + [ "status1", "struct_mega_c_a_n__broadcast__message__t.html#acc7365584da23b7844002a05c1f0490b", null ], + [ "status2", "struct_mega_c_a_n__broadcast__message__t.html#a442883b03337eacf06a2ee8876c5c4ca", null ], + [ "status3", "struct_mega_c_a_n__broadcast__message__t.html#a6477ed7a5b39daaccccbd14385f89731", null ], + [ "status4", "struct_mega_c_a_n__broadcast__message__t.html#aa3f5756545910c2112f7670780c298fb", null ], + [ "status5", "struct_mega_c_a_n__broadcast__message__t.html#a9bcf0f6a68929f9ea074b832ab94de3d", null ], + [ "status6", "struct_mega_c_a_n__broadcast__message__t.html#a11f20c9042b4221d49646929c7a4b7a5", null ], + [ "status7", "struct_mega_c_a_n__broadcast__message__t.html#ab9c15583da6feb512f7dd4b487666e34", null ], + [ "status8", "struct_mega_c_a_n__broadcast__message__t.html#a0835a947b5105bc2ddef58a4451378cb", null ], + [ "step3_timing", "struct_mega_c_a_n__broadcast__message__t.html#ad595499a0cd3b4a44f684bf7834d02a5", null ], + [ "stream_level", "struct_mega_c_a_n__broadcast__message__t.html#a70c6a0c54335ec62090b6b46d329a1a2", null ], + [ "synccnt", "struct_mega_c_a_n__broadcast__message__t.html#ac4b577808648722c634835aa4a8d3ae5", null ], + [ "syncreason", "struct_mega_c_a_n__broadcast__message__t.html#a237b436a5249bf99f02f1583b493434e", null ], + [ "tc_retard", "struct_mega_c_a_n__broadcast__message__t.html#ac0f8ffb66532e1654637db27e49510af", null ], + [ "timing_err", "struct_mega_c_a_n__broadcast__message__t.html#a0d2aa79c95ac4c757c239a19dbd2c144", null ], + [ "total_accel", "struct_mega_c_a_n__broadcast__message__t.html#adf6a4fecad5b8d7e7ece98337d03c7d7", null ], + [ "totalcor", "struct_mega_c_a_n__broadcast__message__t.html#ae6bd02e19d81ed4623d33e2b597c49da", null ], + [ "tps", "struct_mega_c_a_n__broadcast__message__t.html#afa47946113773ee46985af8630095fc3", null ], + [ "tps_accel", "struct_mega_c_a_n__broadcast__message__t.html#a5d59bea664d7796cad6c1a32ef7fee1e", null ], + [ "tpsaccel", "struct_mega_c_a_n__broadcast__message__t.html#a29fc3ce44c433c02fd33a17cc780852b", null ], + [ "tpsadc", "struct_mega_c_a_n__broadcast__message__t.html#ae6594eb20819f5d9c9cf449a285b76ea", null ], + [ "TPSdot", "struct_mega_c_a_n__broadcast__message__t.html#a93fa79d5540a14aa98e72c808f477560", null ], + [ "tpsfuelcut", "struct_mega_c_a_n__broadcast__message__t.html#ace23c61610ccceb80a9ace5fa9c2cc7f", null ], + [ "ve1", "struct_mega_c_a_n__broadcast__message__t.html#a92c41590e24ad7b051892d824fe51cb2", null ], + [ "ve2", "struct_mega_c_a_n__broadcast__message__t.html#a595197959adbfbae9f4323e90dd53ea4", null ], + [ "VSS1", "struct_mega_c_a_n__broadcast__message__t.html#aed5c7602c17130156a2b63a96cdaa142", null ], + [ "VSS1dot", "struct_mega_c_a_n__broadcast__message__t.html#a2f1525d82295cd108af64cbcfe241284", null ], + [ "VSS2", "struct_mega_c_a_n__broadcast__message__t.html#a5b5e97ef1c309ad370f2f06918855e8d", null ], + [ "VSS2dot", "struct_mega_c_a_n__broadcast__message__t.html#afd4ecfd862b740bc70679c970cfb6f92", null ], + [ "VSS3", "struct_mega_c_a_n__broadcast__message__t.html#acfe9acbf5f108cc7a876e8295ac47bf3", null ], + [ "VSS4", "struct_mega_c_a_n__broadcast__message__t.html#ab4ae13695d91a733363449cbaac556a4", null ], + [ "vsslaunch_retard", "struct_mega_c_a_n__broadcast__message__t.html#a2a05b3d9e2b34b88aad6ebd142f58858", null ], + [ "vvt_ang1", "struct_mega_c_a_n__broadcast__message__t.html#ae7720d45745960a495789b4f5d2bb8cc", null ], + [ "vvt_ang2", "struct_mega_c_a_n__broadcast__message__t.html#ae672cedf92ee5d43bb2fc702978e60aa", null ], + [ "vvt_ang3", "struct_mega_c_a_n__broadcast__message__t.html#a22963f1fb6ded489ef042cc0e64e7682", null ], + [ "vvt_ang4", "struct_mega_c_a_n__broadcast__message__t.html#a303ddb3a09d3c82382f74db42bca34a7", null ], + [ "vvt_duty1", "struct_mega_c_a_n__broadcast__message__t.html#a055faa492c31f3ba1ae7557db4ef1d5e", null ], + [ "vvt_duty2", "struct_mega_c_a_n__broadcast__message__t.html#aed2c40523437a3d1730f1b901458005d", null ], + [ "vvt_duty3", "struct_mega_c_a_n__broadcast__message__t.html#ad13de9fca37579dbbfccd6a77e4ed2e9", null ], + [ "vvt_duty4", "struct_mega_c_a_n__broadcast__message__t.html#a8798bf15dc0e08e9be0a05d72c9b8bb4", null ], + [ "vvt_target1", "struct_mega_c_a_n__broadcast__message__t.html#a42c7aa216dc4ac05ecd885b5b98c02e1", null ], + [ "vvt_target2", "struct_mega_c_a_n__broadcast__message__t.html#a6521c4097ba67ed0deb4f36352dccfaa", null ], + [ "vvt_target3", "struct_mega_c_a_n__broadcast__message__t.html#a19d4c15646ff2a1ed52ad06df81fa4a9", null ], + [ "vvt_target4", "struct_mega_c_a_n__broadcast__message__t.html#a127b9a88ac7ef78def31f5afb494bd6e", null ], + [ "wallfuel1", "struct_mega_c_a_n__broadcast__message__t.html#aec0fe8fbc12e5a54445bfb8bbedc9c13", null ], + [ "wallfuel2", "struct_mega_c_a_n__broadcast__message__t.html#ab2cf6db0b5ed173b15eb44ce6d3d62b6", null ], + [ "warmcor", "struct_mega_c_a_n__broadcast__message__t.html#a8d381ef062eadc5611c6b295f40757d8", null ], + [ "water_duty", "struct_mega_c_a_n__broadcast__message__t.html#a789e871133df5755776911cd229b0df4", null ], + [ "wbo2_en1", "struct_mega_c_a_n__broadcast__message__t.html#af5a1c452a66fe413dfd29ee7b8f1ba42", null ], + [ "wbo2_en2", "struct_mega_c_a_n__broadcast__message__t.html#ab6b4215899cfa5eb165e24e376737c81", null ] +]; \ No newline at end of file diff --git a/html/struct_mega_c_a_n__message__t-members.html b/html/struct_mega_c_a_n__message__t-members.html new file mode 100644 index 0000000..fdfe625 --- /dev/null +++ b/html/struct_mega_c_a_n__message__t-members.html @@ -0,0 +1,116 @@ + + + + + + + +MegaCAN: Member List + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    MegaCAN +
    +
    Megasquirt CAN Protocol with Arduino
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    MegaCAN_message_t Member List
    +
    +
    + +

    This is the complete list of members for MegaCAN_message_t, including all inherited members.

    + + + + + + + + + + + + + + +
    core (defined in MegaCAN_message_t)MegaCAN_message_t
    data (defined in MegaCAN_message_t)MegaCAN_message_t
    fromID (defined in MegaCAN_message_t)MegaCAN_message_t
    msgType (defined in MegaCAN_message_t)MegaCAN_message_t
    request (defined in MegaCAN_message_t)MegaCAN_message_t
    response (defined in MegaCAN_message_t)MegaCAN_message_t
    responseCore (defined in MegaCAN_message_t)MegaCAN_message_t
    toID (defined in MegaCAN_message_t)MegaCAN_message_t
    toOffset (defined in MegaCAN_message_t)MegaCAN_message_t
    toTable (defined in MegaCAN_message_t)MegaCAN_message_t
    varBlk (defined in MegaCAN_message_t)MegaCAN_message_t
    varByt (defined in MegaCAN_message_t)MegaCAN_message_t
    varOffset (defined in MegaCAN_message_t)MegaCAN_message_t
    +
    + + + + diff --git a/html/struct_mega_c_a_n__message__t.html b/html/struct_mega_c_a_n__message__t.html new file mode 100644 index 0000000..fa8c517 --- /dev/null +++ b/html/struct_mega_c_a_n__message__t.html @@ -0,0 +1,153 @@ + + + + + + + +MegaCAN: MegaCAN_message_t Struct Reference + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    MegaCAN +
    +
    Megasquirt CAN Protocol with Arduino
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    + +
    +
    MegaCAN_message_t Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Public Attributes

    +struct {
    +   uint32_t   toTable = 0
     
    +   uint32_t   toID = 0
     
    +   uint32_t   fromID = 0
     
    +   uint32_t   msgType = 0
     
    +   uint32_t   toOffset = 0
     
    core
     
    +uint32_t responseCore = 0
     
    +struct {
    +   struct {
    +      uint8_t   varByt = 0
     
    +      uint16_t   varOffset = 0
     
    +      uint8_t   varBlk = 0
     
       }   request
     
    +   uint8_t   response [8] = { 0 }
     
    data
     
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/html/struct_mega_c_a_n__message__t.js b/html/struct_mega_c_a_n__message__t.js new file mode 100644 index 0000000..54e24df --- /dev/null +++ b/html/struct_mega_c_a_n__message__t.js @@ -0,0 +1,16 @@ +var struct_mega_c_a_n__message__t = +[ + [ "core", "struct_mega_c_a_n__message__t.html#a0121d18f06d2f5c094c8eadc30a587fe", null ], + [ "data", "struct_mega_c_a_n__message__t.html#a1aebb0f01a7fe986b2377e16fa7ed6e1", null ], + [ "fromID", "struct_mega_c_a_n__message__t.html#ae9dfc8386d9253f1f7897113c58c0ade", null ], + [ "msgType", "struct_mega_c_a_n__message__t.html#ad584892d95bd438bdc593156d2e472ba", null ], + [ "request", "struct_mega_c_a_n__message__t.html#a12c1a43d18a2eb4ac14aef1af6c74ead", null ], + [ "response", "struct_mega_c_a_n__message__t.html#a26c93d99625ae2cbc149c459c857cdd3", null ], + [ "responseCore", "struct_mega_c_a_n__message__t.html#a8fdc65f41839c48df6deacc97b017318", null ], + [ "toID", "struct_mega_c_a_n__message__t.html#a3364c87092972d2fe9b224b18b58f01d", null ], + [ "toOffset", "struct_mega_c_a_n__message__t.html#a6ae95c116018c25960a3f0ba0828a2d3", null ], + [ "toTable", "struct_mega_c_a_n__message__t.html#ab76f32db9e49b39ae5ed062720fd97bc", null ], + [ "varBlk", "struct_mega_c_a_n__message__t.html#a3443a2c6dc5483f0000b60c4350901ae", null ], + [ "varByt", "struct_mega_c_a_n__message__t.html#ac8efe9667147dd6f63c33443a983e040", null ], + [ "varOffset", "struct_mega_c_a_n__message__t.html#ac05b7710daeee87dd2139fa0cc8c6f2b", null ] +]; \ No newline at end of file diff --git a/html/sync_off.png b/html/sync_off.png new file mode 100644 index 0000000..3b443fc Binary files /dev/null and b/html/sync_off.png differ diff --git a/html/sync_on.png b/html/sync_on.png new file mode 100644 index 0000000..e08320f Binary files /dev/null and b/html/sync_on.png differ diff --git a/html/tab_a.png b/html/tab_a.png new file mode 100644 index 0000000..3b725c4 Binary files /dev/null and b/html/tab_a.png differ diff --git a/html/tab_b.png b/html/tab_b.png new file mode 100644 index 0000000..e2b4a86 Binary files /dev/null and b/html/tab_b.png differ diff --git a/html/tab_h.png b/html/tab_h.png new file mode 100644 index 0000000..fd5cb70 Binary files /dev/null and b/html/tab_h.png differ diff --git a/html/tab_s.png b/html/tab_s.png new file mode 100644 index 0000000..ab478c9 Binary files /dev/null and b/html/tab_s.png differ diff --git a/html/tabs.css b/html/tabs.css new file mode 100644 index 0000000..85a0cd5 --- /dev/null +++ b/html/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file