forked from joan2937/pigpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pigpiod_if2.3
7336 lines (5162 loc) · 107 KB
/
pigpiod_if2.3
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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
." Process this file with
." groff -man -Tascii pigpiod_if2.3
."
.TH pigpiod_if2 3 2012-2018 Linux "pigpio archive"
.SH NAME
pigpiod_if2 - A C library to interface to the pigpio daemon.
.SH SYNOPSIS
#include <pigpiod_if2.h>
gcc -Wall -pthread -o prog prog.c -lpigpiod_if2 -lrt
./prog
.SH DESCRIPTION
.ad l
.nh
.br
.br
pigpiod_if2 is a C library for the Raspberry which allows control
of the GPIO via the socket interface to the pigpio daemon.
.br
.br
.br
.SS Features
.br
.br
o hardware timed PWM on any of GPIO 0-31
.br
.br
o hardware timed servo pulses on any of GPIO 0-31
.br
.br
o callbacks when any of GPIO 0-31 change state
.br
.br
o callbacks at timed intervals
.br
.br
o reading/writing all of the GPIO in a bank as one operation
.br
.br
o individually setting GPIO modes, reading and writing
.br
.br
o notifications when any of GPIO 0-31 change state
.br
.br
o the construction of output waveforms with microsecond timing
.br
.br
o rudimentary permission control over GPIO
.br
.br
o a simple interface to start and stop new threads
.br
.br
o I2C, SPI, and serial link wrappers
.br
.br
o creating and running scripts on the pigpio daemon
.br
.br
.SS GPIO
.br
.br
ALL GPIO are identified by their Broadcom number.
.br
.br
.SS Notes
.br
.br
The PWM and servo pulses are timed using the DMA and PWM/PCM peripherals.
.br
.br
.SS Usage
.br
.br
Include <pigpiod_if2.h> in your source files.
.br
.br
Assuming your source is in prog.c use the following command to build
.br
.br
.EX
gcc -Wall -pthread -o prog prog.c -lpigpiod_if2 -lrt
.br
.EE
.br
.br
to run make sure the pigpio daemon is running
.br
.br
.EX
sudo pigpiod
.br
.br
./prog # sudo is not required to run programs linked to pigpiod_if2
.br
.EE
.br
.br
For examples see x_pigpiod_if2.c within the pigpio archive file.
.br
.br
.SS Notes
.br
.br
All the functions which return an int return < 0 on error
.br
.br
.SH FUNCTIONS
.IP "\fBdouble time_time(void)\fP"
.IP "" 4
Return the current time in seconds since the Epoch.
.IP "\fBvoid time_sleep(double seconds)\fP"
.IP "" 4
Delay execution for a given number of seconds.
.br
.br
.EX
seconds: the number of seconds to delay.
.br
.EE
.IP "\fBchar *pigpio_error(int errnum)\fP"
.IP "" 4
Return a text description for an error code.
.br
.br
.EX
errnum: the error code.
.br
.EE
.IP "\fBunsigned pigpiod_if_version(void)\fP"
.IP "" 4
Return the pigpiod_if2 version.
.IP "\fBpthread_t *start_thread(gpioThreadFunc_t thread_func, void *userdata)\fP"
.IP "" 4
Starts a new thread of execution with thread_func as the main routine.
.br
.br
.EX
thread_func: the main function for the new thread.
.br
userdata: a pointer to an arbitrary argument.
.br
.EE
.br
.br
Returns a pointer to pthread_t if OK, otherwise NULL.
.br
.br
The function is passed the single argument userdata.
.br
.br
The thread can be cancelled by passing the pointer to pthread_t to
\fBstop_thread\fP.
.IP "\fBvoid stop_thread(pthread_t *pth)\fP"
.IP "" 4
Cancels the thread pointed at by pth.
.br
.br
.EX
pth: the thread to be stopped.
.br
.EE
.br
.br
No value is returned.
.br
.br
The thread to be stopped should have been started with \fBstart_thread\fP.
.IP "\fBint pigpio_start(char *addrStr, char *portStr)\fP"
.IP "" 4
Connect to the pigpio daemon. Reserving command and
notification streams.
.br
.br
.EX
addrStr: specifies the host or IP address of the Pi running the
.br
pigpio daemon. It may be NULL in which case localhost
.br
is used unless overridden by the PIGPIO_ADDR environment
.br
variable.
.br
.br
portStr: specifies the port address used by the Pi running the
.br
pigpio daemon. It may be NULL in which case "8888"
.br
is used unless overridden by the PIGPIO_PORT environment
.br
variable.
.br
.EE
.br
.br
Returns an integer value greater than or equal to zero if OK.
.br
.br
This value is passed to the GPIO routines to specify the Pi
to be operated on.
.IP "\fBvoid pigpio_stop(int pi)\fP"
.IP "" 4
Terminates the connection to a pigpio daemon and releases
resources used by the library.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
.EE
.IP "\fBint set_mode(int pi, unsigned gpio, unsigned mode)\fP"
.IP "" 4
Set the GPIO mode.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
gpio: 0-53.
.br
mode: PI_INPUT, PI_OUTPUT, PI_ALT0, PI_ALT1,
.br
PI_ALT2, PI_ALT3, PI_ALT4, PI_ALT5.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_GPIO, PI_BAD_MODE,
or PI_NOT_PERMITTED.
.IP "\fBint get_mode(int pi, unsigned gpio)\fP"
.IP "" 4
Get the GPIO mode.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
gpio: 0-53.
.br
.EE
.br
.br
Returns the GPIO mode if OK, otherwise PI_BAD_GPIO.
.IP "\fBint set_pull_up_down(int pi, unsigned gpio, unsigned pud)\fP"
.IP "" 4
Set or clear the GPIO pull-up/down resistor.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
gpio: 0-53.
.br
pud: PI_PUD_UP, PI_PUD_DOWN, PI_PUD_OFF.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_GPIO, PI_BAD_PUD,
or PI_NOT_PERMITTED.
.IP "\fBint gpio_read(int pi, unsigned gpio)\fP"
.IP "" 4
Read the GPIO level.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
gpio:0-53.
.br
.EE
.br
.br
Returns the GPIO level if OK, otherwise PI_BAD_GPIO.
.IP "\fBint gpio_write(int pi, unsigned gpio, unsigned level)\fP"
.IP "" 4
Write the GPIO level.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
gpio: 0-53.
.br
level: 0, 1.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_GPIO, PI_BAD_LEVEL,
or PI_NOT_PERMITTED.
.br
.br
Notes
.br
.br
If PWM or servo pulses are active on the GPIO they are switched off.
.IP "\fBint set_PWM_dutycycle(int pi, unsigned user_gpio, unsigned dutycycle)\fP"
.IP "" 4
Start (non-zero dutycycle) or stop (0) PWM pulses on the GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
dutycycle: 0-range (range defaults to 255).
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_DUTYCYCLE,
or PI_NOT_PERMITTED.
Notes
.br
.br
The \fBset_PWM_range\fP function may be used to change the
default range of 255.
.IP "\fBint get_PWM_dutycycle(int pi, unsigned user_gpio)\fP"
.IP "" 4
Return the PWM dutycycle in use on a GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO or PI_NOT_PWM_GPIO.
.br
.br
For normal PWM the dutycycle will be out of the defined range
for the GPIO (see \fBget_PWM_range\fP).
.br
.br
If a hardware clock is active on the GPIO the reported dutycycle
will be 500000 (500k) out of 1000000 (1M).
.br
.br
If hardware PWM is active on the GPIO the reported dutycycle
will be out of a 1000000 (1M).
.IP "\fBint set_PWM_range(int pi, unsigned user_gpio, unsigned range)\fP"
.IP "" 4
Set the range of PWM values to be used on the GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
range: 25-40000.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_DUTYRANGE,
or PI_NOT_PERMITTED.
.br
.br
Notes
.br
.br
If PWM is currently active on the GPIO its dutycycle will be
scaled to reflect the new range.
.br
.br
The real range, the number of steps between fully off and fully on
for each of the 18 available GPIO frequencies is
.br
.br
.EX
25(#1), 50(#2), 100(#3), 125(#4), 200(#5), 250(#6),
.br
400(#7), 500(#8), 625(#9), 800(#10), 1000(#11), 1250(#12),
.br
2000(#13), 2500(#14), 4000(#15), 5000(#16), 10000(#17), 20000(#18)
.br
.EE
.br
.br
The real value set by set_PWM_range is (dutycycle * real range) / range.
.IP "\fBint get_PWM_range(int pi, unsigned user_gpio)\fP"
.IP "" 4
Get the range of PWM values being used on the GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
.EE
.br
.br
Returns the dutycycle range used for the GPIO if OK,
otherwise PI_BAD_USER_GPIO.
.br
.br
If a hardware clock or hardware PWM is active on the GPIO the
reported range will be 1000000 (1M).
.IP "\fBint get_PWM_real_range(int pi, unsigned user_gpio)\fP"
.IP "" 4
Get the real underlying range of PWM values being used on the GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
.EE
.br
.br
Returns the real range used for the GPIO if OK,
otherwise PI_BAD_USER_GPIO.
.br
.br
If a hardware clock is active on the GPIO the reported
real range will be 1000000 (1M).
.br
.br
If hardware PWM is active on the GPIO the reported real range
will be approximately 250M divided by the set PWM frequency.
.br
.br
.IP "\fBint set_PWM_frequency(int pi, unsigned user_gpio, unsigned frequency)\fP"
.IP "" 4
Set the frequency (in Hz) of the PWM to be used on the GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
frequency: >=0 (Hz).
.br
.EE
.br
.br
Returns the numerically closest frequency if OK, otherwise
PI_BAD_USER_GPIO or PI_NOT_PERMITTED.
.br
.br
If PWM is currently active on the GPIO it will be switched
off and then back on at the new frequency.
.br
.br
Each GPIO can be independently set to one of 18 different
PWM frequencies.
.br
.br
The selectable frequencies depend upon the sample rate which
may be 1, 2, 4, 5, 8, or 10 microseconds (default 5). The
sample rate is set when the pigpio daemon is started.
.br
.br
The frequencies for each sample rate are:
.br
.br
.EX
Hertz
.br
.br
1: 40000 20000 10000 8000 5000 4000 2500 2000 1600
.br
1250 1000 800 500 400 250 200 100 50
.br
.br
2: 20000 10000 5000 4000 2500 2000 1250 1000 800
.br
625 500 400 250 200 125 100 50 25
.br
.br
4: 10000 5000 2500 2000 1250 1000 625 500 400
.br
313 250 200 125 100 63 50 25 13
.br
sample
.br
rate
.br
(us) 5: 8000 4000 2000 1600 1000 800 500 400 320
.br
250 200 160 100 80 50 40 20 10
.br
.br
8: 5000 2500 1250 1000 625 500 313 250 200
.br
156 125 100 63 50 31 25 13 6
.br
.br
10: 4000 2000 1000 800 500 400 250 200 160
.br
125 100 80 50 40 25 20 10 5
.br
.EE
.IP "\fBint get_PWM_frequency(int pi, unsigned user_gpio)\fP"
.IP "" 4
Get the frequency of PWM being used on the GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
.EE
.br
.br
For normal PWM the frequency will be that defined for the GPIO by
\fBset_PWM_frequency\fP.
.br
.br
If a hardware clock is active on the GPIO the reported frequency
will be that set by \fBhardware_clock\fP.
.br
.br
If hardware PWM is active on the GPIO the reported frequency
will be that set by \fBhardware_PWM\fP.
.br
.br
Returns the frequency (in hertz) used for the GPIO if OK,
otherwise PI_BAD_USER_GPIO.
.IP "\fBint set_servo_pulsewidth(int pi, unsigned user_gpio, unsigned pulsewidth)\fP"
.IP "" 4
Start (500-2500) or stop (0) servo pulses on the GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
pulsewidth: 0 (off), 500 (anti-clockwise) - 2500 (clockwise).
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_PULSEWIDTH or
PI_NOT_PERMITTED.
.br
.br
The selected pulsewidth will continue to be transmitted until
changed by a subsequent call to set_servo_pulsewidth.
.br
.br
The pulsewidths supported by servos varies and should probably be
determined by experiment. A value of 1500 should always be safe and
represents the mid-point of rotation.
.br
.br
You can DAMAGE a servo if you command it to move beyond its limits.
.br
.br
OTHER UPDATE RATES:
.br
.br
This function updates servos at 50Hz. If you wish to use a different
update frequency you will have to use the PWM functions.
.br
.br
.EX
Update Rate (Hz) 50 100 200 400 500
.br
1E6/Hz 20000 10000 5000 2500 2000
.br
.EE
.br
.br
Firstly set the desired PWM frequency using \fBset_PWM_frequency\fP.
.br
.br
Then set the PWM range using \fBset_PWM_range\fP to 1E6/Hz.
Doing this allows you to use units of microseconds when setting
the servo pulsewidth.
.br
.br
E.g. If you want to update a servo connected to GPIO 25 at 400Hz
.br
.br
.EX
set_PWM_frequency(25, 400);
.br
set_PWM_range(25, 2500);
.br
.EE
.br
.br
Thereafter use the \fBset_PWM_dutycycle\fP function to move the servo,
e.g. set_PWM_dutycycle(25, 1500) will set a 1500 us pulse.
.br
.IP "\fBint get_servo_pulsewidth(int pi, unsigned user_gpio)\fP"
.IP "" 4
Return the servo pulsewidth in use on a GPIO.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
user_gpio: 0-31.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO or PI_NOT_SERVO_GPIO.
.IP "\fBint notify_open(int pi)\fP"
.IP "" 4
Get a free notification handle.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
.EE
.br
.br
Returns a handle greater than or equal to zero if OK,
otherwise PI_NO_HANDLE.
.br
.br
A notification is a method for being notified of GPIO state
changes via a pipe.
.br
.br
Pipes are only accessible from the local machine so this function
serves no purpose if you are using the library from a remote machine.
The in-built (socket) notifications provided by \fBcallback\fP
should be used instead.
.br
.br
Notifications for handle x will be available at the pipe
named /dev/pigpiox (where x is the handle number).
E.g. if the function returns 15 then the notifications must be
read from /dev/pigpio15.
.IP "\fBint notify_begin(int pi, unsigned handle, uint32_t bits)\fP"
.IP "" 4
Start notifications on a previously opened handle.
.br
.br
.EX
pi: >=0 (as returned by \fBpigpio_start\fP).
.br
handle: 0-31 (as returned by \fBnotify_open\fP)
.br
bits: a mask indicating the GPIO to be notified.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_HANDLE.
.br
.br
The notification sends state changes for each GPIO whose
corresponding bit in bits is set.
.br
.br
Each notification occupies 12 bytes in the fifo as follows:
.br
.br
.EX
typedef struct
.br
{
.br
uint16_t seqno;
.br
uint16_t flags;
.br
uint32_t tick;
.br
uint32_t level;
.br
} gpioReport_t;
.br
.EE