-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gpio.stub.php
589 lines (537 loc) · 11 KB
/
gpio.stub.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
<?php
/** @generate-function-entries */
namespace GPIO;
/**
* Represents a GPIO chip.
*/
final class Chip {
/**
* Path to the GPIO chip device.
*
* @var string
*/
private string $path;
/**
* The GPIO chip label.
*
* @var string
*/
private string $label;
/**
* The GPIO chip name.
*
* @var string
*/
private string $name;
/**
* The number of available GPIO pins.
*
* @var int
*/
private int $pinCount;
/**
* Use any uAPI GPIO ABI version available.
*
* @var int
*/
public const ABI_ANY = 0x00;
/**
* Use uAPI GPIO ABI v1 (deprecated).
*
* @var int
*/
public const ABI_V1 = 0x01;
/**
* Use uAPI GPIO ABI v2.
*
* @var int
*/
public const ABI_V2 = 0x02;
/**
* Opens the chip.
*
* @param string $path Path to the GPIO chip device.
* @param int $abiVersion Which version of the Userspace ABI for GPIO to use.
*
* @return void
*/
public function __construct(string $path, int $abiVersion = self::ABI_ANY) {}
/**
* Return if ABI v2 is being used.
*
* @return bool
*/
public function isAbiV2(): bool {}
/**
* Get all pins exposed by this chip.
*
* @return \GPIO\Pins
*/
public function getAllPins(): Pins {}
/**
* Get the pin exposed by this chip at given offset.
*
* @param int $offset Offset of the pin.
*
* @return \GPIO\Pin
*/
public function getPin(int $offset): Pin {}
/**
* Get a set of pins exposed by this chip at given offsets.
*
* @param int[] $offsets List of pin offsets.
*
* @return \GPIO\Pins
*/
public function getPins(array $offsets): Pins {}
/**
* Return the number of available pins.
*
* @return int
*/
public function getPinCount(): int {}
/**
* Return the path to the GPIO chip device.
*
* @return string
*/
public function getPath(): string {}
/**
* Return the label of the chip held by this object.
*
* @return string
*/
public function getLabel(): string {}
/**
* Return the name of the chip held by this object.
*
* @return string
*/
public function getName(): string {}
}
/**
* Represents an Event.
*/
final class Event {
/**
* The event type.
* Possible values:
* - RISING_EDGE
* - FALLING_EDGE
*
* @var int
*/
private int $type;
/**
* The event timestamp in nanoseconds.
*
* @var int
*/
private int $timestamp;
/**
* Rising edge event.
* Value map:
* - ABI v2: GPIO_V2_LINE_EVENT_RISING_EDGE
* - ABI v1: GPIOEVENT_EVENT_RISING_EDGE
*
* @var int
*/
public const RISING_EDGE = 0x01;
/**
* Falling edge event.
* Value map:
* - ABI v2: GPIO_V2_LINE_EVENT_FALLING_EDGE
* - ABI v1: GPIOEVENT_EVENT_FALLING_EDGE
*
* @var int
*/
public const FALLING_EDGE = 0x02;
/**
* Get the event type.
* Possible return values:
* - RISING_EDGE
* - FALLING_EDGE
*
* @return int
*/
public function getType(): int {}
/**
* Get the event timestamp in nanoseconds.
*
* @return int
*/
public function getTimestamp(): int {}
}
/**
* Base exception
*/
class Exception extends \Exception {}
/**
* Represents a single GPIO Pin.
*/
final class Pin {
/**
* Parent GPIO Chip instance.
*
* @var \GPIO\Chip
*/
private Chip $chip;
/**
* The GPIO Pin name.
*
* @var string
*/
private string $name;
/**
* The GPIO Pin consumer name.
*
* @var string
*/
private string $consumer;
/**
* The GPIO Pin offset.
*
* @var int
*/
private int $offset;
/**
* Pin's internal bias is disabled.
*
* @var int
*/
public const BIAS_DISABLED = 0x00;
/**
* Pin's internal pull-up bias is enabled.
*
* @var int
*/
public const BIAS_PULL_UP = 0x01;
/**
* Pin's internal pull-down bias is enabled.
*
* @var int
*/
public const BIAS_PULL_DOWN = 0x02;
/**
* Pin's bias state is as is.
* @var int
*/
public const BIAS_AS_IS = 0x04;
/**
* Drive setting is unknown.
*
* @var int
*/
public const DRIVE_PUSH_PULL = 0x01;
/**
* Pin output is open-drain.
*
* @var int
*/
public const DRIVE_OPEN_DRAIN = 0x02;
/**
* Pin output is open-source.
*
* @var int
*/
public const DRIVE_OPEN_SOURCE = 0x03;
/**
* No flags.
*
* @var int
*/
public const FLAG_NONE = 0x00;
/**
* The pin is an open-drain port.
*
* @var int
*/
public const FLAG_OPEN_DRAIN = 0x01;
/**
* The pin is an open-source port.
*
* @var int
*/
public const FLAG_OPEN_SOURCE = 0x02;
/**
* The active state of the pin is LOW (HIGH is the default).
*
* @var int
*/
public const FLAG_ACTIVE_LOW = 0x04;
/**
* The pin has neither either pull-up nor pull-down resistor.
*
* @var int
*/
public const FLAG_BIAS_DISABLED = 0x08;
/**
* The pin has pull-down resistor enabled.
*
* @var int
*/
public const FLAG_BIAS_PULL_DOWN = 0x10;
/**
* The pin has pull-up resistor enabled.
*
* @var int
*/
public const FLAG_BIAS_PULL_UP = 0x20;
/**
* Falling edge event.
*
* @var int
*/
public const FALLING_EDGE = 0x04;
/**
* Rising edge event.
*
* @var int
*/
public const RISING_EDGE = 0x05;
/**
* Both types of edge events.
*
* @var int
*/
public const BOTH_EDGES = 0x06;
/**
* Get current bias of this pin.
* Possible return values:
* - BIAS_UNKNOWN
* - BIAS_DISABLED
* - BIAS_PULL_UP
* - BIAS_PULL_DOWN
*
* @return int
*/
public function getBias(): int {}
/**
* Get the consumer name of this pin (if any).
*
* @return string
*/
public function getConsumer(): string {}
/**
* Get current drive setting of this pin.
* Possible return values:
* - DRIVE_PUSH_PULL
* - DRIVE_OPEN_DRAIN
* - DRIVE_OPEN_SOURCE
*
* @return int
*/
public function getDrive(): int {}
/**
* Get the parent chip.
*
* @return \GPIO\Chip
*/
public function getChip(): Chip {}
/**
* Check if this pin's signal is inverted.
*
* @return bool
*/
public function isActiveLow(): bool {}
/**
* Check if this pin is used by the kernel or other user space process.
*
* @return bool
*/
public function isUsed(): bool {}
/**
* Get the name of this pin (if any).
*
* @return string
*/
public function getName(): string {}
/**
* Get the offset of this pin.
*
* @return int
*/
public function getOffset(): int {}
/**
* Request this pin as INPUT.
* Possible $flag values:
* - FLAG_NONE
* - FLAG_ACTIVE_LOW
* - FLAG_BIAS_DISABLED
* - FLAG_BIAS_PULL_DOWN
* - FLAG_BIAS_PULL_UP
*
* Note: only a single FLAG_BIAS_* flag can be set at a time.
*
* @param string $consumer Name of the consumer.
* @param int $flags Request configuration flags.
* @param int $debouncePeriod Number of microseconds to debounce input changes (ABI v2 only)
*
* @return self
*/
public function asInput(string $consumer, int $flags = self::FLAG_NONE, int $debouncePeriod = 0): Pin {}
/**
* Request this pin as OUTPUT.
* Possible $flag values:
* - FLAG_NONE
* - FLAG_OPEN_DRAIN
* - FLAG_OPEN_SOURCE
* - FLAG_ACTIVE_LOW
* - FLAG_BIAS_DISABLED
* - FLAG_BIAS_PULL_DOWN
* - FLAG_BIAS_PULL_UP
*
* Note: only a single FLAG_OPEN_* flag can be set at a time.
* Note: only a single FLAG_BIAS_* flag can be set at a time.
*
* @param string $consumer Name of the consumer.
* @param int $flags Request configuration flags.
* @param bool $setHigh Set the pin value to HIGH.
*
* @return self
*/
public function asOutput(string $consumer, int $flags = self::FLAG_NONE, bool $setHigh = false): Pin {}
/**
* Return if the pin is set as INPUT.
*
* @return bool
*/
public function isInput(): bool {}
/**
* Return if the pin is set as OUTPUT.
*
* @return bool
*/
public function isOutput(): bool {}
/**
* Return if the pin input value is HIGH.
* Note: INPUT pin only.
*
* @return bool
*/
public function isHigh(): bool {}
/**
* Return if the pin input value is LOW.
* Note: INPUT pin only.
*
* @return bool
*/
public function isLow(): bool {}
/**
* Set the output value of this pin to HIGH.
* Note: OUTPUT pin only.
*
* @return self
*/
public function setHigh(): Pin {}
/**
* Set the output value of this pin to LOW.
* Note: OUTPUT pin only.
*
* @return self
*/
public function setLow(): Pin {}
/**
* Wait for an edge change event.
* Return an instance of \GPIO\Event if an event has occurred within the timeout interval, null otherwise.
* Possible $edgeType values:
* - FALLING_EDGE
* - RISING_EDGE
* - BOTH_EDGES
*
* @param int $seconds Timeout interval in seconds.
* @param int $nanoseconds Timeout interval in nanoseconds.
* @param int $edgeType Type of edge change to wait for.
*
* @return \GPIO\Event|null
*/
public function waitForEdge(int $seconds, int $nanoseconds = 0, int $edgeType = self::BOTH_EDGES): ?Event {}
}
/**
* Represents multiple GPIO pins.
*/
final class Pins implements \Countable, \ArrayAccess, \Iterator {
/**
* Parent chip instance.
*
* @var \GPIO\Chip
*/
private Chip $chip;
/**
* Get the parent chip.
*
* @return \GPIO\Chip
*/
public function getChip(): Chip {}
/**
* Returns the number of pins held by collection.
*
* @return int
*/
public function count(): int {}
/**
* Whether or not an offset exists.
*
* @param mixed $offset An offset to check for.
*
* @return bool
*/
public function offsetExists($offset): bool {}
/**
* Returns the value at specified offset.
*
* @param mixed $offset The offset to retrieve.
*
* @return mixed
*/
public function offsetGet($offset) {}
/**
* Assigns a value to the specified offset.
* Note: this method throws an exception, it is declared as part of \ArrayAccess interface.
*
* @param mixed $offset The offset to assign the value to.
* @param mixed $value The value to set.
*
* @return void
*/
public function offsetSet($offset, $value) {}
/**
* Unsets an offset.
* Note: this method throws an exception, it is declared as part of \ArrayAccess interface.
*
* @param mixed $offset The offset to unset.
*
* @return void
*/
public function offsetUnset($offset) {}
/**
* Returns the current element.
*
* @return mixed
*/
public function current() {}
/**
* Returns the key of the current element.
*
* @return mixed
*/
public function key() {}
/**
* Moves the current position to the next element.
*
* @return void
*/
public function next(): void {}
/**
* Rewinds back to the first element of the Iterator.
*
* @return void
*/
public function rewind(): void {}
/**
* Check if the current position is valid.
*
* @return bool
*/
public function valid(): bool {}
}