Select one of the symbols to view example projects that use it.
 
Outline
#define _HARDWARE_GPIO_H
#include "pico.h"
#include "hardware/structs/sio.h"
#include "hardware/structs/pads_bank0.h"
#include "hardware/structs/io_bank0.h"
#include "hardware/irq.h"
#define PICO_USE_GPIO_COPROCESSOR
#include "hardware/gpio_coproc.h"
#define PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO
#define PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO
gpio_dir
gpio_irq_level
gpio_irq_callback_t
gpio_override
gpio_slew_rate
gpio_drive_strength
check_gpio_param(uint)
gpio_set_function(uint, gpio_function_t);
gpio_set_function_masked(uint32_t, gpio_function_t);
gpio_set_function_masked64(uint64_t, gpio_function_t);
gpio_get_function(uint);
gpio_set_pulls(uint, bool, bool);
gpio_pull_up(uint)
gpio_is_pulled_up(uint)
gpio_pull_down(uint)
gpio_is_pulled_down(uint)
gpio_disable_pulls(uint)
gpio_set_irqover(uint, uint);
gpio_set_outover(uint, uint);
gpio_set_inover(uint, uint);
gpio_set_oeover(uint, uint);
gpio_set_input_enabled(uint, bool);
gpio_set_input_hysteresis_enabled(uint, bool);
gpio_is_input_hysteresis_enabled(uint);
gpio_set_slew_rate(uint, enum gpio_slew_rate);
gpio_get_slew_rate(uint);
gpio_set_drive_strength(uint, enum gpio_drive_strength);
gpio_get_drive_strength(uint);
gpio_set_irq_enabled(uint, uint32_t, bool);
#define GPIO_IRQ_CALLBACK_ORDER_PRIORITY
#define GPIO_RAW_IRQ_HANDLER_DEFAULT_ORDER_PRIORITY
gpio_set_irq_callback(gpio_irq_callback_t);
gpio_set_irq_enabled_with_callback(uint, uint32_t, bool, gpio_irq_callback_t);
gpio_set_dormant_irq_enabled(uint, uint32_t, bool);
gpio_get_irq_event_mask(uint)
gpio_acknowledge_irq(uint, uint32_t);
gpio_add_raw_irq_handler_with_order_priority_masked(uint32_t, irq_handler_t, uint8_t);
gpio_add_raw_irq_handler_with_order_priority_masked64(uint64_t, irq_handler_t, uint8_t);
gpio_add_raw_irq_handler_with_order_priority(uint, irq_handler_t, uint8_t)
gpio_add_raw_irq_handler_masked(uint32_t, irq_handler_t);
gpio_add_raw_irq_handler_masked64(uint64_t, irq_handler_t);
gpio_add_raw_irq_handler(uint, irq_handler_t)
gpio_remove_raw_irq_handler_masked(uint32_t, irq_handler_t);
gpio_remove_raw_irq_handler_masked64(uint64_t, irq_handler_t);
gpio_remove_raw_irq_handler(uint, irq_handler_t)
gpio_init(uint);
gpio_deinit(uint);
gpio_init_mask(uint);
gpio_get(uint)
gpio_get_all()
gpio_get_all64()
gpio_set_mask(uint32_t)
gpio_set_mask64(uint64_t)
gpio_set_mask_n(uint, uint32_t)
gpio_clr_mask(uint32_t)
gpio_clr_mask64(uint64_t)
gpio_clr_mask_n(uint, uint32_t)
gpio_xor_mask(uint32_t)
gpio_xor_mask64(uint64_t)
gpio_xor_mask_n(uint, uint32_t)
gpio_put_masked(uint32_t, uint32_t)
gpio_put_masked64(uint64_t, uint64_t)
gpio_put_masked_n(uint, uint32_t, uint32_t)
gpio_put_all(uint32_t)
gpio_put_all64(uint64_t)
gpio_put(uint, bool)
gpio_get_out_level(uint)
gpio_set_dir_out_masked(uint32_t)
gpio_set_dir_out_masked64(uint64_t)
gpio_set_dir_in_masked(uint32_t)
gpio_set_dir_in_masked64(uint64_t)
gpio_set_dir_masked(uint32_t, uint32_t)
gpio_set_dir_masked64(uint64_t, uint64_t)
gpio_set_dir_all_bits(uint32_t)
gpio_set_dir_all_bits64(uint64_t)
gpio_set_dir(uint, bool)
gpio_is_dir_out(uint)
gpio_get_dir(uint)
gpio_debug_pins_init();
#define PICO_DEBUG_PIN_BASE
#define PICO_DEBUG_PIN_COUNT
#define CU_REGISTER_DEBUG_PINS
#define CU_SELECT_DEBUG_PINS
#define DEBUG_PINS_ENABLED
#define CU_SELECT_DEBUG_PINS
#define DEBUG_PINS_ENABLED
#define DEBUG_PINS_SET
#define DEBUG_PINS_CLR
#define DEBUG_PINS_XOR
Files
loading...
SourceVuRaspberry Pi Pico SDK and ExamplesPicoSDKsrc/rp2_common/hardware_gpio/include/hardware/gpio.h
 
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. * * SPDX-License-Identifier: BSD-3-Clause *//* ... */ #ifndef _HARDWARE_GPIO_H #define _HARDWARE_GPIO_H #include "pico.h" #include "hardware/structs/sio.h" #include "hardware/structs/pads_bank0.h" #include "hardware/structs/io_bank0.h" #include "hardware/irq.h" 5 includes // PICO_CONFIG: PICO_USE_GPIO_COPROCESSOR, Enable/disable use of the GPIO coprocessor for GPIO access, type=bool, default=1, group=hardware_gpio #if !defined(PICO_USE_GPIO_COPROCESSOR) && HAS_GPIO_COPROCESSOR #define PICO_USE_GPIO_COPROCESSOR 1 #endif #if PICO_USE_GPIO_COPROCESSOR #include "hardware/gpio_coproc.h" #endif #ifdef __cplusplus extern "C" { #endif // PICO_CONFIG: PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO, Enable/disable assertions in the hardware_gpio module, type=bool, default=0, group=hardware_gpio #ifndef PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO #ifdef PARAM_ASSERTIONS_ENABLED_GPIO // backwards compatibility with SDK < 2.0.0 #define PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO PARAM_ASSERTIONS_ENABLED_GPIO #else #define PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO 0 #endif/* ... */ #endif /** \file gpio.h * \defgroup hardware_gpio hardware_gpio * * \brief General Purpose Input/Output (GPIO) API * * RP-series microcontrollers have two banks of General Purpose Input / Output (GPIO) pins, which are assigned as follows: * * \if rp2040-specific * RP2040 has 30 user GPIO pins in bank 0, and 6 QSPI pins in the QSPI bank 1 (QSPI_SS, QSPI_SCLK and QSPI_SD0 to QSPI_SD3). The QSPI * pins are used to execute code from an external flash device, leaving the User bank (GPIO0 to GPIO29) for the programmer to use. * \endif * * \if rp2350-specific * The number of GPIO pins available depends on the package. There are 30 user GPIOs in bank 0 in the QFN-60 package (RP2350A), or 48 user GPIOs * in the QFN-80 package. Bank 1 contains the 6 QSPI pins and the USB DP/DM pins. * \endif * * All GPIOs support digital input and output, but a subset can also be used as inputs to the chip’s Analogue to Digital * Converter (ADC). The allocation of GPIO pins to the ADC depends on the packaging. * * RP2040 and RP2350 QFN-60 GPIO, ADC pins are 26-29. * RP2350 QFN-80, ADC pins are 40-47. * * Each GPIO can be controlled directly by software running on the processors, or by a number of other functional blocks. * * The function allocated to each GPIO is selected by calling the \ref gpio_set_function function. \note Not all functions * are available on all pins. * * Each GPIO can have one function selected at a time. Likewise, each peripheral input (e.g. UART0 RX) should only be selected on * one _GPIO_ at a time. If the same peripheral input is connected to multiple GPIOs, the peripheral sees the logical OR of these * GPIO inputs. Please refer to the datasheet for more information on GPIO function select. * * ### Function Select Table * * \if rp2040_specific * On RP2040 the function selects are: * * | GPIO | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | * |--------|----------|-----------|----------|--------|-----|------|------|---------------|---------------| * | 0 | SPI0 RX | UART0 TX | I2C0 SDA | PWM0 A | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 1 | SPI0 CSn | UART0 RX | I2C0 SCL | PWM0 B | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 2 | SPI0 SCK | UART0 CTS | I2C1 SDA | PWM1 A | SIO | PIO0 | PIO1 | | USB VBUS EN | * | 3 | SPI0 TX | UART0 RTS | I2C1 SCL | PWM1 B | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 4 | SPI0 RX | UART1 TX | I2C0 SDA | PWM2 A | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 5 | SPI0 CSn | UART1 RX | I2C0 SCL | PWM2 B | SIO | PIO0 | PIO1 | | USB VBUS EN | * | 6 | SPI0 SCK | UART1 CTS | I2C1 SDA | PWM3 A | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 7 | SPI0 TX | UART1 RTS | I2C1 SCL | PWM3 B | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 8 | SPI1 RX | UART1 TX | I2C0 SDA | PWM4 A | SIO | PIO0 | PIO1 | | USB VBUS EN | * | 9 | SPI1 CSn | UART1 RX | I2C0 SCL | PWM4 B | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 10 | SPI1 SCK | UART1 CTS | I2C1 SDA | PWM5 A | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 11 | SPI1 TX | UART1 RTS | I2C1 SCL | PWM5 B | SIO | PIO0 | PIO1 | | USB VBUS EN | * | 12 | SPI1 RX | UART0 TX | I2C0 SDA | PWM6 A | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 13 | SPI1 CSn | UART0 RX | I2C0 SCL | PWM6 B | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 14 | SPI1 SCK | UART0 CTS | I2C1 SDA | PWM7 A | SIO | PIO0 | PIO1 | | USB VBUS EN | * | 15 | SPI1 TX | UART0 RTS | I2C1 SCL | PWM7 B | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 16 | SPI0 RX | UART0 TX | I2C0 SDA | PWM0 A | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 17 | SPI0 CSn | UART0 RX | I2C0 SCL | PWM0 B | SIO | PIO0 | PIO1 | | USB VBUS EN | * | 18 | SPI0 SCK | UART0 CTS | I2C1 SDA | PWM1 A | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 19 | SPI0 TX | UART0 RTS | I2C1 SCL | PWM1 B | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 20 | SPI0 RX | UART1 TX | I2C0 SDA | PWM2 A | SIO | PIO0 | PIO1 | CLOCK GPIN0 | USB VBUS EN | * | 21 | SPI0 CSn | UART1 RX | I2C0 SCL | PWM2 B | SIO | PIO0 | PIO1 | CLOCK GPOUT0 | USB OVCUR DET | * | 22 | SPI0 SCK | UART1 CTS | I2C1 SDA | PWM3 A | SIO | PIO0 | PIO1 | CLOCK GPIN1 | USB VBUS DET | * | 23 | SPI0 TX | UART1 RTS | I2C1 SCL | PWM3 B | SIO | PIO0 | PIO1 | CLOCK GPOUT1 | USB VBUS EN | * | 24 | SPI1 RX | UART1 TX | I2C0 SDA | PWM4 A | SIO | PIO0 | PIO1 | CLOCK GPOUT2 | USB OVCUR DET | * | 25 | SPI1 CSn | UART1 RX | I2C0 SCL | PWM4 B | SIO | PIO0 | PIO1 | CLOCK GPOUT3 | USB VBUS DET | * | 26 | SPI1 SCK | UART1 CTS | I2C1 SDA | PWM5 A | SIO | PIO0 | PIO1 | | USB VBUS EN | * | 27 | SPI1 TX | UART1 RTS | I2C1 SCL | PWM5 B | SIO | PIO0 | PIO1 | | USB OVCUR DET | * | 28 | SPI1 RX | UART0 TX | I2C0 SDA | PWM6 A | SIO | PIO0 | PIO1 | | USB VBUS DET | * | 29 | SPI1 CSn | UART0 RX | I2C0 SCL | PWM6 B | SIO | PIO0 | PIO1 | | USB VBUS EN | * \endif * \if rp2350_specific * On RP2350 the function selects are: * * | GPIO | F0 | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | * |-------|------|----------|-----------|----------|--------|-----|------|------|------|--------------|---------------|----------| * | 0 | | SPI0 RX | UART0 TX | I2C0 SDA | PWM0 A | SIO | PIO0 | PIO1 | PIO2 | XIP_CS1n | USB OVCUR DET | | * | 1 | | SPI0 CSn | UART0 RX | I2C0 SCL | PWM0 B | SIO | PIO0 | PIO1 | PIO2 | TRACECLK | USB VBUS DET | | * | 2 | | SPI0 SCK | UART0 CTS | I2C1 SDA | PWM1 A | SIO | PIO0 | PIO1 | PIO2 | TRACEDATA0 | USB VBUS EN | UART0 TX | * | 3 | | SPI0 TX | UART0 RTS | I2C1 SCL | PWM1 B | SIO | PIO0 | PIO1 | PIO2 | TRACEDATA1 | USB OVCUR DET | UART0 RX | * | 4 | | SPI0 RX | UART1 TX | I2C0 SDA | PWM2 A | SIO | PIO0 | PIO1 | PIO2 | TRACEDATA2 | USB VBUS DET | | * | 5 | | SPI0 CSn | UART1 RX | I2C0 SCL | PWM2 B | SIO | PIO0 | PIO1 | PIO2 | TRACEDATA3 | USB VBUS EN | | * | 6 | | SPI0 SCK | UART1 CTS | I2C1 SDA | PWM3 A | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | UART1 TX | * | 7 | | SPI0 TX | UART1 RTS | I2C1 SCL | PWM3 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | UART1 RX | * | 8 | | SPI1 RX | UART1 TX | I2C0 SDA | PWM4 A | SIO | PIO0 | PIO1 | PIO2 | XIP_CS1n | USB VBUS EN | | * | 9 | | SPI1 CSn | UART1 RX | I2C0 SCL | PWM4 B | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | | * | 10 | | SPI1 SCK | UART1 CTS | I2C1 SDA | PWM5 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | UART1 TX | * | 11 | | SPI1 TX | UART1 RTS | I2C1 SCL | PWM5 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | UART1 RX | * | 12 | HSTX | SPI1 RX | UART0 TX | I2C0 SDA | PWM6 A | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPIN0 | USB OVCUR DET | | * | 13 | HSTX | SPI1 CSn | UART0 RX | I2C0 SCL | PWM6 B | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPOUT0 | USB VBUS DET | | * | 14 | HSTX | SPI1 SCK | UART0 CTS | I2C1 SDA | PWM7 A | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPIN1 | USB VBUS EN | UART0 TX | * | 15 | HSTX | SPI1 TX | UART0 RTS | I2C1 SCL | PWM7 B | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPOUT1 | USB OVCUR DET | UART0 RX | * | 16 | HSTX | SPI0 RX | UART0 TX | I2C0 SDA | PWM0 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | | * | 17 | HSTX | SPI0 CSn | UART0 RX | I2C0 SCL | PWM0 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | | * | 18 | HSTX | SPI0 SCK | UART0 CTS | I2C1 SDA | PWM1 A | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | UART0 TX | * | 19 | HSTX | SPI0 TX | UART0 RTS | I2C1 SCL | PWM1 B | SIO | PIO0 | PIO1 | PIO2 | XIP_CS1n | USB VBUS DET | UART0 RX | * | 20 | | SPI0 RX | UART1 TX | I2C0 SDA | PWM2 A | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPIN0 | USB VBUS EN | | * | 21 | | SPI0 CSn | UART1 RX | I2C0 SCL | PWM2 B | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPOUT0 | USB OVCUR DET | | * | 22 | | SPI0 SCK | UART1 CTS | I2C1 SDA | PWM3 A | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPIN1 | USB VBUS DET | UART1 TX | * | 23 | | SPI0 TX | UART1 RTS | I2C1 SCL | PWM3 B | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPOUT1 | USB VBUS EN | UART1 RX | * | 24 | | SPI1 RX | UART1 TX | I2C0 SDA | PWM4 A | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPOUT2 | USB OVCUR DET | | * | 25 | | SPI1 CSn | UART1 RX | I2C0 SCL | PWM4 B | SIO | PIO0 | PIO1 | PIO2 | CLOCK GPOUT3 | USB VBUS DET | | * | 26 | | SPI1 SCK | UART1 CTS | I2C1 SDA | PWM5 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | UART1 TX | * | 27 | | SPI1 TX | UART1 RTS | I2C1 SCL | PWM5 B | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | UART1 RX | * | 28 | | SPI1 RX | UART0 TX | I2C0 SDA | PWM6 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | | * | 29 | | SPI1 CSn | UART0 RX | I2C0 SCL | PWM6 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | | * * GPIOs 30 through 47 are QFN-80 only: * * | GPIO | F0 | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | * |------|----|----------|----------|-----------|---------|-----|------|------|------|----------|---------------|----------| * | 30 | | SPI1 SCK | UART0 CTS | I2C1 SDA | PWM7 A | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | UART0 TX | * | 31 | | SPI1 TX | UART0 RTS | I2C1 SCL | PWM7 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | UART0 RX | * | 32 | | SPI0 RX | UART0 TX | I2C0 SDA | PWM8 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | | * | 33 | | SPI0 CSn | UART0 RX | I2C0 SCL | PWM8 B | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | | * | 34 | | SPI0 SCK | UART0 CTS | I2C1 SDA | PWM9 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | UART0 TX | * | 35 | | SPI0 TX | UART0 RTS | I2C1 SCL | PWM9 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | UART0 RX | * | 36 | | SPI0 RX | UART1 TX | I2C0 SDA | PWM10 A | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | | * | 37 | | SPI0 CSn | UART1 RX | I2C0 SCL | PWM10 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | | * | 38 | | SPI0 SCK | UART1 CTS | I2C1 SDA | PWM11 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | UART1 TX | * | 39 | | SPI0 TX | UART1 RTS | I2C1 SCL | PWM11 B | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | UART1 RX | * | 40 | | SPI1 RX | UART1 TX | I2C0 SDA | PWM8 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | | * | 41 | | SPI1 CSn | UART1 RX | I2C0 SCL | PWM8 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | | * | 42 | | SPI1 SCK | UART1 CTS | I2C1 SDA | PWM9 A | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | UART1 TX | * | 43 | | SPI1 TX | UART1 RTS | I2C1 SCL | PWM9 B | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | UART1 RX | * | 44 | | SPI1 RX | UART0 TX | I2C0 SDA | PWM10 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS EN | | * | 45 | | SPI1 CSn | UART0 RX | I2C0 SCL | PWM10 B | SIO | PIO0 | PIO1 | PIO2 | | USB OVCUR DET | | * | 46 | | SPI1 SCK | UART0 CTS | I2C1 SDA | PWM11 A | SIO | PIO0 | PIO1 | PIO2 | | USB VBUS DET | UART0 TX | * | 47 | | SPI1 TX | UART0 RTS | I2C1 SCL | PWM11 B | SIO | PIO0 | PIO1 | PIO2 | XIP_CS1n | USB VBUS EN | UART0 RX | * * \endif *//* ... */ enum gpio_dir { GPIO_OUT = 1u, ///< set GPIO to output GPIO_IN = 0u, ///< set GPIO to input ...}; /*! \brief GPIO Interrupt level definitions (GPIO events) * \ingroup hardware_gpio * \brief GPIO Interrupt levels * * An interrupt can be generated for every GPIO pin in 4 scenarios: * * * Level High: the GPIO pin is a logical 1 * * Level Low: the GPIO pin is a logical 0 * * Edge High: the GPIO has transitioned from a logical 0 to a logical 1 * * Edge Low: the GPIO has transitioned from a logical 1 to a logical 0 * * The level interrupts are not latched. This means that if the pin is a logical 1 and the level high interrupt is active, it will * become inactive as soon as the pin changes to a logical 0. The edge interrupts are stored in the INTR register and can be * cleared by writing to the INTR register. *//* ... */ enum gpio_irq_level { GPIO_IRQ_LEVEL_LOW = 0x1u, ///< IRQ when the GPIO pin is a logical 1 GPIO_IRQ_LEVEL_HIGH = 0x2u, ///< IRQ when the GPIO pin is a logical 0 GPIO_IRQ_EDGE_FALL = 0x4u, ///< IRQ when the GPIO has transitioned from a logical 0 to a logical 1 GPIO_IRQ_EDGE_RISE = 0x8u, ///< IRQ when the GPIO has transitioned from a logical 1 to a logical 0 ...}; /*! Callback function type for GPIO events * \ingroup hardware_gpio * * \param gpio Which GPIO caused this interrupt * \param event_mask Which events caused this interrupt. See \ref gpio_irq_level for details. * \sa gpio_set_irq_enabled_with_callback() * \sa gpio_set_irq_callback() *//* ... */ typedef void (*gpio_irq_callback_t)(uint gpio, uint32_t event_mask); enum gpio_override { GPIO_OVERRIDE_NORMAL = 0, ///< peripheral signal selected via \ref gpio_set_function GPIO_OVERRIDE_INVERT = 1, ///< invert peripheral signal selected via \ref gpio_set_function GPIO_OVERRIDE_LOW = 2, ///< drive low/disable output GPIO_OVERRIDE_HIGH = 3, ///< drive high/enable output ...}; /*! \brief Slew rate limiting levels for GPIO outputs * \ingroup hardware_gpio * * Slew rate limiting increases the minimum rise/fall time when a GPIO output * is lightly loaded, which can help to reduce electromagnetic emissions. * \sa gpio_set_slew_rate *//* ... */ enum gpio_slew_rate { GPIO_SLEW_RATE_SLOW = 0, ///< Slew rate limiting enabled GPIO_SLEW_RATE_FAST = 1 ///< Slew rate limiting disabled ...}; /*! \brief Drive strength levels for GPIO outputs * \ingroup hardware_gpio * * Drive strength levels for GPIO outputs. * \sa gpio_set_drive_strength *//* ... */ enum gpio_drive_strength { GPIO_DRIVE_STRENGTH_2MA = 0, ///< 2 mA nominal drive strength GPIO_DRIVE_STRENGTH_4MA = 1, ///< 4 mA nominal drive strength GPIO_DRIVE_STRENGTH_8MA = 2, ///< 8 mA nominal drive strength GPIO_DRIVE_STRENGTH_12MA = 3 ///< 12 mA nominal drive strength ...}; static inline void check_gpio_param(__unused uint gpio) { invalid_params_if(HARDWARE_GPIO, gpio >= NUM_BANK0_GPIOS); }{ ... } // ---------------------------------------------------------------------------- // Pad Controls + IO Muxing // ---------------------------------------------------------------------------- // Declarations for gpio.c /*! \brief Select GPIO function * \ingroup hardware_gpio * * \param gpio GPIO number * \param fn Which GPIO function select to use from list \ref gpio_function *//* ... */ void gpio_set_function(uint gpio, gpio_function_t fn); /*! \brief Select the function for multiple GPIOs * \ingroup hardware_gpio * * \sa gpio_set_function * \param gpio_mask Mask with 1 bit per GPIO number to set the function for * \param fn Which GPIO function select to use from list \ref gpio_function *//* ... */ void gpio_set_function_masked(uint32_t gpio_mask, gpio_function_t fn); /*! \brief Select the function for multiple GPIOs * \ingroup hardware_gpio * * \sa gpio_set_function * \param gpio_mask Mask with 1 bit per GPIO number to set the function for * \param fn Which GPIO function select to use from list \ref gpio_function *//* ... */ void gpio_set_function_masked64(uint64_t gpio_mask, gpio_function_t fn); /*! \brief Determine current GPIO function * \ingroup hardware_gpio * * \param gpio GPIO number * \return Which GPIO function is currently selected from list \ref gpio_function *//* ... */ gpio_function_t gpio_get_function(uint gpio); /*! \brief Select up and down pulls on specific GPIO * \ingroup hardware_gpio * * \param gpio GPIO number * \param up If true set a pull up on the GPIO * \param down If true set a pull down on the GPIO * * \note On the RP2040, setting both pulls enables a "bus keep" function, * i.e. a weak pull to whatever is current high/low state of GPIO. *//* ... */ void gpio_set_pulls(uint gpio, bool up, bool down); /*! \brief Set specified GPIO to be pulled up. * \ingroup hardware_gpio * * \param gpio GPIO number *//* ... */ static inline void gpio_pull_up(uint gpio) { gpio_set_pulls(gpio, true, false); }{ ... } /*! \brief Determine if the specified GPIO is pulled up. * \ingroup hardware_gpio * * \param gpio GPIO number * \return true if the GPIO is pulled up *//* ... */ static inline bool gpio_is_pulled_up(uint gpio) { return (pads_bank0_hw->io[gpio] & PADS_BANK0_GPIO0_PUE_BITS) != 0; }{ ... } /*! \brief Set specified GPIO to be pulled down. * \ingroup hardware_gpio * * \param gpio GPIO number *//* ... */ static inline void gpio_pull_down(uint gpio) { gpio_set_pulls(gpio, false, true); }{ ... } /*! \brief Determine if the specified GPIO is pulled down. * \ingroup hardware_gpio * * \param gpio GPIO number * \return true if the GPIO is pulled down *//* ... */ static inline bool gpio_is_pulled_down(uint gpio) { return (pads_bank0_hw->io[gpio] & PADS_BANK0_GPIO0_PDE_BITS) != 0; }{ ... } /*! \brief Disable pulls on specified GPIO * \ingroup hardware_gpio * * \param gpio GPIO number *//* ... */ static inline void gpio_disable_pulls(uint gpio) { gpio_set_pulls(gpio, false, false); }{ ... } /*! \brief Set GPIO IRQ override * \ingroup hardware_gpio * * Optionally invert a GPIO IRQ signal, or drive it high or low * * \param gpio GPIO number * \param value See \ref gpio_override *//* ... */ void gpio_set_irqover(uint gpio, uint value); /*! \brief Set GPIO output override * \ingroup hardware_gpio * * \param gpio GPIO number * \param value See \ref gpio_override *//* ... */ void gpio_set_outover(uint gpio, uint value); /*! \brief Select GPIO input override * \ingroup hardware_gpio * * \param gpio GPIO number * \param value See \ref gpio_override *//* ... */ void gpio_set_inover(uint gpio, uint value); /*! \brief Select GPIO output enable override * \ingroup hardware_gpio * * \param gpio GPIO number * \param value See \ref gpio_override *//* ... */ void gpio_set_oeover(uint gpio, uint value); /*! \brief Enable GPIO input * \ingroup hardware_gpio * * \param gpio GPIO number * \param enabled true to enable input on specified GPIO *//* ... */ void gpio_set_input_enabled(uint gpio, bool enabled); /*! \brief Enable/disable GPIO input hysteresis (Schmitt trigger) * \ingroup hardware_gpio * * Enable or disable the Schmitt trigger hysteresis on a given GPIO. This is * enabled on all GPIOs by default. Disabling input hysteresis can lead to * inconsistent readings when the input signal has very long rise or fall * times, but slightly reduces the GPIO's input delay. * * \sa gpio_is_input_hysteresis_enabled * \param gpio GPIO number * \param enabled true to enable input hysteresis on specified GPIO *//* ... */ void gpio_set_input_hysteresis_enabled(uint gpio, bool enabled); /*! \brief Determine whether input hysteresis is enabled on a specified GPIO * \ingroup hardware_gpio * * \sa gpio_set_input_hysteresis_enabled * \param gpio GPIO number *//* ... */ bool gpio_is_input_hysteresis_enabled(uint gpio); /*! \brief Set slew rate for a specified GPIO * \ingroup hardware_gpio * * \sa gpio_get_slew_rate * \param gpio GPIO number * \param slew GPIO output slew rate *//* ... */ void gpio_set_slew_rate(uint gpio, enum gpio_slew_rate slew); /*! \brief Determine current slew rate for a specified GPIO * \ingroup hardware_gpio * * \sa gpio_set_slew_rate * \param gpio GPIO number * \return Current slew rate of that GPIO *//* ... */ enum gpio_slew_rate gpio_get_slew_rate(uint gpio); /*! \brief Set drive strength for a specified GPIO * \ingroup hardware_gpio * * \sa gpio_get_drive_strength * \param gpio GPIO number * \param drive GPIO output drive strength *//* ... */ void gpio_set_drive_strength(uint gpio, enum gpio_drive_strength drive); /*! \brief Determine current drive strength for a specified GPIO * \ingroup hardware_gpio * * \sa gpio_set_drive_strength * \param gpio GPIO number * \return Current drive strength of that GPIO *//* ... */ enum gpio_drive_strength gpio_get_drive_strength(uint gpio); /*! \brief Enable or disable specific interrupt events for specified GPIO * \ingroup hardware_gpio * * This function sets which GPIO events cause a GPIO interrupt on the calling core. See * \ref gpio_set_irq_callback, \ref gpio_set_irq_enabled_with_callback and * \ref gpio_add_raw_irq_handler to set up a GPIO interrupt handler to handle the events. * * \note The IO IRQs are independent per-processor. This configures the interrupt events for * the processor that calls the function. * * \param gpio GPIO number * \param event_mask Which events will cause an interrupt * \param enabled Enable or disable flag * * Events is a bitmask of the following \ref gpio_irq_level values: * * bit | constant | interrupt * ----|---------------------|------------------------------------ * 0 | GPIO_IRQ_LEVEL_LOW | Continuously while level is low * 1 | GPIO_IRQ_LEVEL_HIGH | Continuously while level is high * 2 | GPIO_IRQ_EDGE_FALL | On each transition from high to low * 3 | GPIO_IRQ_EDGE_RISE | On each transition from low to high * * which are specified in \ref gpio_irq_level *//* ... */ void gpio_set_irq_enabled(uint gpio, uint32_t event_mask, bool enabled); // PICO_CONFIG: GPIO_IRQ_CALLBACK_ORDER_PRIORITY, IRQ priority order of the default IRQ callback, min=0, max=255, default=PICO_SHARED_IRQ_HANDLER_LOWEST_ORDER_PRIORITY, group=hardware_gpio #ifndef GPIO_IRQ_CALLBACK_ORDER_PRIORITY #define GPIO_IRQ_CALLBACK_ORDER_PRIORITY PICO_SHARED_IRQ_HANDLER_LOWEST_ORDER_PRIORITY #endif // PICO_CONFIG: GPIO_RAW_IRQ_HANDLER_DEFAULT_ORDER_PRIORITY, IRQ priority order of raw IRQ handlers if the priority is not specified, min=0, max=255, default=PICO_SHARED_IRQ_HANDLER_DEFAULT_ORDER_PRIORITY, group=hardware_gpio #ifndef GPIO_RAW_IRQ_HANDLER_DEFAULT_ORDER_PRIORITY #define GPIO_RAW_IRQ_HANDLER_DEFAULT_ORDER_PRIORITY PICO_SHARED_IRQ_HANDLER_DEFAULT_ORDER_PRIORITY #endif /*! \brief Set the generic callback used for GPIO IRQ events for the current core * \ingroup hardware_gpio * * This function sets the callback used for all GPIO IRQs on the current core that are not explicitly * hooked via \ref gpio_add_raw_irq_handler or other gpio_add_raw_irq_handler_ functions. * * This function is called with the GPIO number and event mask for each of the (not explicitly hooked) * GPIOs that have events enabled and that are pending (see \ref gpio_get_irq_event_mask). * * \note The IO IRQs are independent per-processor. This function affects * the processor that calls the function. * * \param callback default user function to call on GPIO irq. Note only one of these can be set per processor. *//* ... */ void gpio_set_irq_callback(gpio_irq_callback_t callback); /*! \brief Convenience function which performs multiple GPIO IRQ related initializations * \ingroup hardware_gpio * * This method is a slightly eclectic mix of initialization, that: * * \li Updates whether the specified events for the specified GPIO causes an interrupt on the calling core based * on the enable flag. * * \li Sets the callback handler for the calling core to callback (or clears the handler if the callback is NULL). * * \li Enables GPIO IRQs on the current core if enabled is true. * * This method is commonly used to perform a one time setup, and following that any additional IRQs/events are enabled * via \ref gpio_set_irq_enabled. All GPIOs/events added in this way on the same core share the same callback; for multiple * independent handlers for different GPIOs you should use \ref gpio_add_raw_irq_handler and related functions. * * This method is equivalent to: * * \code{.c} * gpio_set_irq_enabled(gpio, event_mask, enabled); * gpio_set_irq_callback(callback); * if (enabled) irq_set_enabled(IO_IRQ_BANK0, true); * \endcode * * \note The IO IRQs are independent per-processor. This method affects only the processor that calls the function. * * \param gpio GPIO number * \param event_mask Which events will cause an interrupt. See \ref gpio_irq_level for details. * \param enabled Enable or disable flag * \param callback user function to call on GPIO irq. if NULL, the callback is removed *//* ... */ void gpio_set_irq_enabled_with_callback(uint gpio, uint32_t event_mask, bool enabled, gpio_irq_callback_t callback); /*! \brief Enable dormant wake up interrupt for specified GPIO and events * \ingroup hardware_gpio * * This configures IRQs to restart the XOSC or ROSC when they are * disabled in dormant mode * * \param gpio GPIO number * \param event_mask Which events will cause an interrupt. See \ref gpio_irq_level for details. * \param enabled Enable/disable flag *//* ... */ void gpio_set_dormant_irq_enabled(uint gpio, uint32_t event_mask, bool enabled); /*! \brief Return the current interrupt status (pending events) for the given GPIO * \ingroup hardware_gpio * * \param gpio GPIO number * \return Bitmask of events that are currently pending for the GPIO. See \ref gpio_irq_level for details. * \sa gpio_acknowledge_irq *//* ... */ static inline uint32_t gpio_get_irq_event_mask(uint gpio) { check_gpio_param(gpio); io_bank0_irq_ctrl_hw_t *irq_ctrl_base = get_core_num() ? &io_bank0_hw->proc1_irq_ctrl : &io_bank0_hw->proc0_irq_ctrl; io_ro_32 *status_reg = &irq_ctrl_base->ints[gpio >> 3u]; return (*status_reg >> (4 * (gpio & 7u))) & 0xfu; }{ ... } /*! \brief Acknowledge a GPIO interrupt for the specified events on the calling core * \ingroup hardware_gpio * * \note This may be called with a mask of any of valid bits specified in \ref gpio_irq_level, however * it has no effect on \a level sensitive interrupts which remain pending while the GPIO is at the specified * level. When handling \a level sensitive interrupts, you should generally disable the interrupt (see * \ref gpio_set_irq_enabled) and then set it up again later once the GPIO level has changed (or to catch * the opposite level). * * \param gpio GPIO number * * \note For callbacks set with \ref gpio_set_irq_enabled_with_callback, or \ref gpio_set_irq_callback, this function is called automatically. * \param event_mask Bitmask of events to clear. See \ref gpio_irq_level for details. *//* ... */ void gpio_acknowledge_irq(uint gpio, uint32_t event_mask); /*! \brief Adds a raw GPIO IRQ handler for the specified GPIOs on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default callback. The order * relative to the default callback can be controlled via the order_priority parameter (the default callback has the priority * \ref GPIO_IRQ_CALLBACK_ORDER_PRIORITY which defaults to the lowest priority with the intention of it running last). * * This method adds such an explicit GPIO IRQ handler, and disables the "default" callback for the specified GPIOs. * * \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to. * Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers * (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded. * * A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like: * * \code{.c} * void my_irq_handler(void) { * if (gpio_get_irq_event_mask(my_gpio_num) & my_gpio_event_mask) { * gpio_acknowledge_irq(my_gpio_num, my_gpio_event_mask); * // handle the IRQ * } * if (gpio_get_irq_event_mask(my_gpio_num2) & my_gpio_event_mask2) { * gpio_acknowledge_irq(my_gpio_num2, my_gpio_event_mask2); * // handle the IRQ * } * } * \endcode * * @param gpio_mask a bit mask of the GPIO numbers that will no longer be passed to the default callback for this core * @param handler the handler to add to the list of GPIO IRQ handlers for this core * @param order_priority the priority order to determine the relative position of the handler in the list of GPIO IRQ handlers for this core. *//* ... */ void gpio_add_raw_irq_handler_with_order_priority_masked(uint32_t gpio_mask, irq_handler_t handler, uint8_t order_priority); /*! \brief Adds a raw GPIO IRQ handler for the specified GPIOs on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default callback. The order * relative to the default callback can be controlled via the order_priority parameter (the default callback has the priority * \ref GPIO_IRQ_CALLBACK_ORDER_PRIORITY which defaults to the lowest priority with the intention of it running last). * * This method adds such an explicit GPIO IRQ handler, and disables the "default" callback for the specified GPIOs. * * \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to. * Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers * (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded. * * A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like: * * \code{.c} * void my_irq_handler(void) { * if (gpio_get_irq_event_mask(my_gpio_num) & my_gpio_event_mask) { * gpio_acknowledge_irq(my_gpio_num, my_gpio_event_mask); * // handle the IRQ * } * if (gpio_get_irq_event_mask(my_gpio_num2) & my_gpio_event_mask2) { * gpio_acknowledge_irq(my_gpio_num2, my_gpio_event_mask2); * // handle the IRQ * } * } * \endcode * * @param gpio_mask a bit mask of the GPIO numbers that will no longer be passed to the default callback for this core * @param handler the handler to add to the list of GPIO IRQ handlers for this core * @param order_priority the priority order to determine the relative position of the handler in the list of GPIO IRQ handlers for this core. *//* ... */ void gpio_add_raw_irq_handler_with_order_priority_masked64(uint64_t gpio_mask, irq_handler_t handler, uint8_t order_priority); /*! \brief Adds a raw GPIO IRQ handler for a specific GPIO on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default callback. The order * relative to the default callback can be controlled via the order_priority parameter(the default callback has the priority * \ref GPIO_IRQ_CALLBACK_ORDER_PRIORITY which defaults to the lowest priority with the intention of it running last). * * This method adds such a callback, and disables the "default" callback for the specified GPIO. * * \note Multiple raw handlers should not be added for the same GPIO, and this method will assert if you attempt to. * Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers * (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded. * * A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like: * * \code{.c} * void my_irq_handler(void) { * if (gpio_get_irq_event_mask(my_gpio_num) & my_gpio_event_mask) { * gpio_acknowledge_irq(my_gpio_num, my_gpio_event_mask); * // handle the IRQ * } * } * \endcode * * @param gpio the GPIO number that will no longer be passed to the default callback for this core * @param handler the handler to add to the list of GPIO IRQ handlers for this core * @param order_priority the priority order to determine the relative position of the handler in the list of GPIO IRQ handlers for this core. *//* ... */ static inline void gpio_add_raw_irq_handler_with_order_priority(uint gpio, irq_handler_t handler, uint8_t order_priority) { check_gpio_param(gpio); #if NUM_BANK0_GPIOS > 32 gpio_add_raw_irq_handler_with_order_priority_masked64(1ull << gpio, handler, order_priority); #else gpio_add_raw_irq_handler_with_order_priority_masked(1u << gpio, handler, order_priority); #endif }{ ... } /*! \brief Adds a raw GPIO IRQ handler for the specified GPIOs on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default event callback. * * This method adds such a callback, and disables the "default" callback for the specified GPIOs. * * \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to. * Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers * (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded. * * A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like: * * \code{.c} * void my_irq_handler(void) { * if (gpio_get_irq_event_mask(my_gpio_num) & my_gpio_event_mask) { * gpio_acknowledge_irq(my_gpio_num, my_gpio_event_mask); * // handle the IRQ * } * if (gpio_get_irq_event_mask(my_gpio_num2) & my_gpio_event_mask2) { * gpio_acknowledge_irq(my_gpio_num2, my_gpio_event_mask2); * // handle the IRQ * } * } * \endcode * * @param gpio_mask a bit mask of the GPIO numbers that will no longer be passed to the default callback for this core * @param handler the handler to add to the list of GPIO IRQ handlers for this core *//* ... */ void gpio_add_raw_irq_handler_masked(uint32_t gpio_mask, irq_handler_t handler); /*! \brief Adds a raw GPIO IRQ handler for the specified GPIOs on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default event callback. * * This method adds such a callback, and disables the "default" callback for the specified GPIOs. * * \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to. * Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers * (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded. * * A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like: * * \code{.c} * void my_irq_handler(void) { * if (gpio_get_irq_event_mask(my_gpio_num) & my_gpio_event_mask) { * gpio_acknowledge_irq(my_gpio_num, my_gpio_event_mask); * // handle the IRQ * } * if (gpio_get_irq_event_mask(my_gpio_num2) & my_gpio_event_mask2) { * gpio_acknowledge_irq(my_gpio_num2, my_gpio_event_mask2); * // handle the IRQ * } * } * \endcode * * @param gpio_mask a 64 bit mask of the GPIO numbers that will no longer be passed to the default callback for this core * @param handler the handler to add to the list of GPIO IRQ handlers for this core *//* ... */ void gpio_add_raw_irq_handler_masked64(uint64_t gpio_mask, irq_handler_t handler); /*! \brief Adds a raw GPIO IRQ handler for a specific GPIO on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default event callback. * * This method adds such a callback, and disables the "default" callback for the specified GPIO. * * \note Multiple raw handlers should not be added for the same GPIO, and this method will assert if you attempt to. * Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers * (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded. * * A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like: * * \code{.c} * void my_irq_handler(void) { * if (gpio_get_irq_event_mask(my_gpio_num) & my_gpio_event_mask) { * gpio_acknowledge_irq(my_gpio_num, my_gpio_event_mask); * // handle the IRQ * } * } * \endcode * * @param gpio the GPIO number that will no longer be passed to the default callback for this core * @param handler the handler to add to the list of GPIO IRQ handlers for this core *//* ... */ static inline void gpio_add_raw_irq_handler(uint gpio, irq_handler_t handler) { check_gpio_param(gpio); #if NUM_BANK0_GPIOS > 32 gpio_add_raw_irq_handler_masked64(1ull << gpio, handler); #else gpio_add_raw_irq_handler_masked(1u << gpio, handler); #endif }{ ... } /*! \brief Removes a raw GPIO IRQ handler for the specified GPIOs on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default event callback. * * This method removes such a callback, and enables the "default" callback for the specified GPIOs. * * @param gpio_mask a bit mask of the GPIO numbers that will now be passed to the default callback for this core * @param handler the handler to remove from the list of GPIO IRQ handlers for this core *//* ... */ void gpio_remove_raw_irq_handler_masked(uint32_t gpio_mask, irq_handler_t handler); /*! \brief Removes a raw GPIO IRQ handler for the specified GPIOs on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default event callback. * * This method removes such a callback, and enables the "default" callback for the specified GPIOs. * * @param gpio_mask a bit mask of the GPIO numbers that will now be passed to the default callback for this core * @param handler the handler to remove from the list of GPIO IRQ handlers for this core *//* ... */ void gpio_remove_raw_irq_handler_masked64(uint64_t gpio_mask, irq_handler_t handler); /*! \brief Removes a raw GPIO IRQ handler for the specified GPIO on the current core * \ingroup hardware_gpio * * In addition to the default mechanism of a single GPIO IRQ event callback per core (see \ref gpio_set_irq_callback), * it is possible to add explicit GPIO IRQ handlers which are called independent of the default event callback. * * This method removes such a callback, and enables the "default" callback for the specified GPIO. * * @param gpio the GPIO number that will now be passed to the default callback for this core * @param handler the handler to remove from the list of GPIO IRQ handlers for this core *//* ... */ static inline void gpio_remove_raw_irq_handler(uint gpio, irq_handler_t handler) { check_gpio_param(gpio); #if NUM_BANK0_GPIOS > 32 gpio_remove_raw_irq_handler_masked64(1ull << gpio, handler); #else gpio_remove_raw_irq_handler_masked(1u << gpio, handler); #endif }{ ... } /*! \brief Initialise a GPIO for (enabled I/O and set func to GPIO_FUNC_SIO) * \ingroup hardware_gpio * * Clear the output enable (i.e. set to input). * Clear any output value. * * \param gpio GPIO number *//* ... */ void gpio_init(uint gpio); /*! \brief Resets a GPIO back to the NULL function, i.e. disables it. * \ingroup hardware_gpio * * \param gpio GPIO number *//* ... */ void gpio_deinit(uint gpio); /*! \brief Initialise multiple GPIOs (enabled I/O and set func to GPIO_FUNC_SIO) * \ingroup hardware_gpio * * Clear the output enable (i.e. set to input). * Clear any output value. * * \param gpio_mask Mask with 1 bit per GPIO number to initialize *//* ... */ void gpio_init_mask(uint gpio_mask); // ---------------------------------------------------------------------------- // Input // ---------------------------------------------------------------------------- /*! \brief Get state of a single specified GPIO * \ingroup hardware_gpio * * \param gpio GPIO number * \return Current state of the GPIO. 0 for low, non-zero for high *//* ... */ static inline bool gpio_get(uint gpio) { #if NUM_BANK0_GPIOS <= 32 return sio_hw->gpio_in & (1u << gpio); #else if (gpio < 32) { return sio_hw->gpio_in & (1u << gpio); }if (gpio < 32) { ... } else { return sio_hw->gpio_hi_in & (1u << (gpio - 32)); }else { ... } /* ... */#endif }{ ... } /*! \brief Get raw value of all GPIOs * \ingroup hardware_gpio * * \return Bitmask of raw GPIO values *//* ... */ static inline uint32_t gpio_get_all(void) { #if PICO_USE_GPIO_COPROCESSOR return gpioc_lo_in_get(); #else return sio_hw->gpio_in; #endif }{ ... } /*! \brief Get raw value of all GPIOs * \ingroup hardware_gpio * * \return Bitmask of raw GPIO values *//* ... */ static inline uint64_t gpio_get_all64(void) { #if PICO_USE_GPIO_COPROCESSOR return gpioc_hilo_in_get(); #elif NUM_BANK0_GPIOS <= 32 return sio_hw->gpio_in; #else return sio_hw->gpio_in | (((uint64_t)sio_hw->gpio_hi_in) << 32u); #endif }{ ... } // ---------------------------------------------------------------------------- // Output // ---------------------------------------------------------------------------- /*! \brief Drive high every GPIO appearing in mask * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to set *//* ... */ static inline void gpio_set_mask(uint32_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_out_set(mask); #else sio_hw->gpio_set = mask; #endif }{ ... } /*! \brief Drive high every GPIO appearing in mask * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to set *//* ... */ static inline void gpio_set_mask64(uint64_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_out_set(mask); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_set = (uint32_t)mask; #else sio_hw->gpio_set = (uint32_t)mask; sio_hw->gpio_hi_set = (uint32_t)(mask >> 32u);/* ... */ #endif }{ ... } /*! \brief Drive high every GPIO appearing in mask * \ingroup hardware_gpio * * \param n the base GPIO index of the mask to update. n == 0 means 0->31, n == 1 mean 32->63 etc. * \param mask Bitmask of 32 GPIO values to set *//* ... */ static inline void gpio_set_mask_n(uint n, uint32_t mask) { if (!n) { gpio_set_mask(mask); }if (!n) { ... } else if (n == 1) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hi_out_set(mask); #elif NUM_BANK0_GPIOS >= 32 sio_hw->gpio_hi_set = mask; #endif }else if (n == 1) { ... } }{ ... } /*! \brief Drive low every GPIO appearing in mask * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to clear *//* ... */ static inline void gpio_clr_mask(uint32_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_out_clr(mask); #else sio_hw->gpio_clr = mask; #endif }{ ... } /*! \brief Drive low every GPIO appearing in mask * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to clear *//* ... */ static inline void gpio_clr_mask64(uint64_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_out_clr(mask); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_clr = (uint32_t)mask; #else sio_hw->gpio_clr = (uint32_t)mask; sio_hw->gpio_hi_clr = (uint32_t)(mask >> 32u);/* ... */ #endif }{ ... } /*! \brief Drive low every GPIO appearing in mask * \ingroup hardware_gpio * * \param n the base GPIO index of the mask to update. n == 0 means 0->31, n == 1 mean 32->63 etc. * \param mask Bitmask of 32 GPIO values to clear *//* ... */ static inline void gpio_clr_mask_n(uint n, uint32_t mask) { if (!n) { gpio_clr_mask(mask); }if (!n) { ... } else if (n == 1) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hi_out_clr(mask); #elif NUM_BANK0_GPIOS >= 32 sio_hw->gpio_hi_clr = mask; #endif }else if (n == 1) { ... } }{ ... } /*! \brief Toggle every GPIO appearing in mask * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to toggle *//* ... */ static inline void gpio_xor_mask(uint32_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_out_xor(mask); #else sio_hw->gpio_togl = mask; #endif }{ ... } /*! \brief Toggle every GPIO appearing in mask * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to toggle *//* ... */ static inline void gpio_xor_mask64(uint64_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_out_xor(mask); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_togl = (uint32_t)mask; #else sio_hw->gpio_togl = (uint32_t)mask; sio_hw->gpio_hi_togl = (uint32_t)(mask >> 32u);/* ... */ #endif }{ ... } /*! \brief Toggle every GPIO appearing in mask * \ingroup hardware_gpio * * \param n the base GPIO index of the mask to update. n == 0 means 0->31, n == 1 mean 32->63 etc. * \param mask Bitmask of 32 GPIO values to toggle *//* ... */ static inline void gpio_xor_mask_n(uint n, uint32_t mask) { if (!n) { gpio_xor_mask(mask); }if (!n) { ... } else if (n == 1) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hi_out_xor(mask); #elif NUM_BANK0_GPIOS >= 32 sio_hw->gpio_hi_togl = mask; #endif }else if (n == 1) { ... } }{ ... } /*! \brief Drive GPIOs high/low depending on parameters * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to change * \param value Value to set * * For each 1 bit in \p mask, drive that pin to the value given by * corresponding bit in \p value, leaving other pins unchanged. * Since this uses the TOGL alias, it is concurrency-safe with e.g. an IRQ * bashing different pins from the same core. *//* ... */ static inline void gpio_put_masked(uint32_t mask, uint32_t value) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_out_xor((gpioc_lo_out_get() ^ value) & mask); #else sio_hw->gpio_togl = (sio_hw->gpio_out ^ value) & mask; #endif }{ ... } /*! \brief Drive GPIOs high/low depending on parameters * \ingroup hardware_gpio * * \param mask Bitmask of GPIO values to change * \param value Value to set * * For each 1 bit in \p mask, drive that pin to the value given by * corresponding bit in \p value, leaving other pins unchanged. * Since this uses the TOGL alias, it is concurrency-safe with e.g. an IRQ * bashing different pins from the same core. *//* ... */ static inline void gpio_put_masked64(uint64_t mask, uint64_t value) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_out_xor((gpioc_hilo_out_get() ^ value) & mask); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_togl = (sio_hw->gpio_out ^ (uint32_t)value) & (uint32_t)mask; #else sio_hw->gpio_togl = (sio_hw->gpio_out ^ (uint32_t)value) & (uint32_t)mask; sio_hw->gpio_hi_togl = (sio_hw->gpio_hi_out ^ (uint32_t)(value>>32u)) & (uint32_t)(mask>>32u);/* ... */ #endif }{ ... } /*! \brief Drive GPIOs high/low depending on parameters * \ingroup hardware_gpio * * \param n the base GPIO index of the mask to update. n == 0 means 0->31, n == 1 mean 32->63 etc. * \param mask Bitmask of GPIO values to change * \param value Value to set * * For each 1 bit in \p mask, drive that pin to the value given by * corresponding bit in \p value, leaving other pins unchanged. * Since this uses the TOGL alias, it is concurrency-safe with e.g. an IRQ * bashing different pins from the same core. *//* ... */ static inline void gpio_put_masked_n(uint n, uint32_t mask, uint32_t value) { if (!n) { gpio_put_masked(mask, value); }if (!n) { ... } else if (n == 1) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hi_out_xor((gpioc_hi_out_get() ^ value) & mask); #else sio_hw->gpio_hi_togl = (sio_hw->gpio_hi_out ^ value) & mask; #endif }else if (n == 1) { ... } }{ ... } /*! \brief Drive all pins simultaneously * \ingroup hardware_gpio * * \param value Bitmask of GPIO values to change *//* ... */ static inline void gpio_put_all(uint32_t value) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_out_put(value); #else sio_hw->gpio_out = value; #endif }{ ... } /*! \brief Drive all pins simultaneously * \ingroup hardware_gpio * * \param value Bitmask of GPIO values to change *//* ... */ static inline void gpio_put_all64(uint64_t value) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_out_put(value); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_out = (uint32_t)value; #else sio_hw->gpio_out = (uint32_t)value; sio_hw->gpio_hi_out = (uint32_t)(value >> 32u);/* ... */ #endif }{ ... } /*! \brief Drive a single GPIO high/low * \ingroup hardware_gpio * * \param gpio GPIO number * \param value If false clear the GPIO, otherwise set it. *//* ... */ static inline void gpio_put(uint gpio, bool value) { #if PICO_USE_GPIO_COPROCESSOR gpioc_bit_out_put(gpio, value); #elif NUM_BANK0_GPIOS <= 32 uint32_t mask = 1ul << gpio; if (value) gpio_set_mask(mask); else gpio_clr_mask(mask);/* ... */ #else uint32_t mask = 1ul << (gpio & 0x1fu); if (gpio < 32) { if (value) { sio_hw->gpio_set = mask; }if (value) { ... } else { sio_hw->gpio_clr = mask; }else { ... } }if (gpio < 32) { ... } else { if (value) { sio_hw->gpio_hi_set = mask; }if (value) { ... } else { sio_hw->gpio_hi_clr = mask; }else { ... } }else { ... } /* ... */#endif }{ ... } /*! \brief Determine whether a GPIO is currently driven high or low * \ingroup hardware_gpio * * This function returns the high/low output level most recently assigned to a * GPIO via gpio_put() or similar. This is the value that is presented outward * to the IO muxing, *not* the input level back from the pad (which can be * read using gpio_get()). * * To avoid races, this function must not be used for read-modify-write * sequences when driving GPIOs -- instead functions like gpio_put() should be * used to atomically update GPIOs. This accessor is intended for debug use * only. * * \param gpio GPIO number * \return true if the GPIO output level is high, false if low. *//* ... */ static inline bool gpio_get_out_level(uint gpio) { #if NUM_BANK0_GPIOS <= 32 return sio_hw->gpio_out & (1u << gpio); #else uint32_t bits = gpio < 32 ? sio_hw->gpio_out : sio_hw->gpio_hi_out; return bits & (1u << (gpio & 0x1fu));/* ... */ #endif }{ ... } // ---------------------------------------------------------------------------- // Direction // ---------------------------------------------------------------------------- /*! \brief Set a number of GPIOs to output * \ingroup hardware_gpio * * Switch all GPIOs in "mask" to output * * \param mask Bitmask of GPIO to set to output *//* ... */ static inline void gpio_set_dir_out_masked(uint32_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_oe_set(mask); #else sio_hw->gpio_oe_set = mask; #endif }{ ... } /*! \brief Set a number of GPIOs to output * \ingroup hardware_gpio * * Switch all GPIOs in "mask" to output * * \param mask Bitmask of GPIO to set to output *//* ... */ static inline void gpio_set_dir_out_masked64(uint64_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_oe_set(mask); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_oe_set = mask; #else sio_hw->gpio_oe_set = (uint32_t)mask; sio_hw->gpio_hi_oe_set = (uint32_t)(mask >> 32u);/* ... */ #endif }{ ... } /*! \brief Set a number of GPIOs to input * \ingroup hardware_gpio * * \param mask Bitmask of GPIO to set to input *//* ... */ static inline void gpio_set_dir_in_masked(uint32_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_oe_clr(mask); #else sio_hw->gpio_oe_clr = mask; #endif }{ ... } /*! \brief Set a number of GPIOs to input * \ingroup hardware_gpio * * \param mask Bitmask of GPIO to set to input *//* ... */ static inline void gpio_set_dir_in_masked64(uint64_t mask) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_oe_clr(mask); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_oe_clr = mask; #else sio_hw->gpio_oe_clr = (uint32_t)mask; sio_hw->gpio_hi_oe_clr = (uint32_t)(mask >> 32u);/* ... */ #endif }{ ... } /*! \brief Set multiple GPIO directions * \ingroup hardware_gpio * * \param mask Bitmask of GPIO to set to input, as bits 0-29 * \param value Values to set * * For each 1 bit in "mask", switch that pin to the direction given by * corresponding bit in "value", leaving other pins unchanged. * E.g. gpio_set_dir_masked(0x3, 0x2); -> set pin 0 to input, pin 1 to output, * simultaneously. *//* ... */ static inline void gpio_set_dir_masked(uint32_t mask, uint32_t value) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_oe_xor((gpioc_lo_oe_get() ^ value) & mask); #else sio_hw->gpio_oe_togl = (sio_hw->gpio_oe ^ value) & mask; #endif }{ ... } /*! \brief Set multiple GPIO directions * \ingroup hardware_gpio * * \param mask Bitmask of GPIO to set to input, as bits 0-29 * \param value Values to set * * For each 1 bit in "mask", switch that pin to the direction given by * corresponding bit in "value", leaving other pins unchanged. * E.g. gpio_set_dir_masked(0x3, 0x2); -> set pin 0 to input, pin 1 to output, * simultaneously. *//* ... */ static inline void gpio_set_dir_masked64(uint64_t mask, uint64_t value) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_oe_xor((gpioc_hilo_oe_get() ^ value) & mask); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_oe_togl = (sio_hw->gpio_oe ^ (uint32_t)value) & (uint32_t)mask; #else sio_hw->gpio_oe_togl = (sio_hw->gpio_oe ^ (uint32_t)value) & (uint32_t)mask; sio_hw->gpio_hi_oe_togl = (sio_hw->gpio_hi_oe ^ (uint32_t)(value >> 32u)) & (uint32_t)(mask >> 32u);/* ... */ #endif }{ ... } /*! \brief Set direction of all pins simultaneously. * \ingroup hardware_gpio * * \param values individual settings for each gpio; for GPIO N, bit N is 1 for out, 0 for in *//* ... */ static inline void gpio_set_dir_all_bits(uint32_t values) { #if PICO_USE_GPIO_COPROCESSOR gpioc_lo_oe_put(values); #else sio_hw->gpio_oe = values; #endif }{ ... } /*! \brief Set direction of all pins simultaneously. * \ingroup hardware_gpio * * \param values individual settings for each gpio; for GPIO N, bit N is 1 for out, 0 for in *//* ... */ static inline void gpio_set_dir_all_bits64(uint64_t values) { #if PICO_USE_GPIO_COPROCESSOR gpioc_hilo_oe_put(values); #elif NUM_BANK0_GPIOS <= 32 sio_hw->gpio_oe = (uint32_t)values; #else sio_hw->gpio_oe = (uint32_t)values; sio_hw->gpio_hi_oe = (uint32_t)(values >> 32u);/* ... */ #endif }{ ... } /*! \brief Set a single GPIO direction * \ingroup hardware_gpio * * \param gpio GPIO number * \param out true for out, false for in *//* ... */ static inline void gpio_set_dir(uint gpio, bool out) { #if PICO_USE_GPIO_COPROCESSOR gpioc_bit_oe_put(gpio, out); #elif PICO_RP2040 || NUM_BANK0_GPIOS <= 32 uint32_t mask = 1ul << gpio; if (out) gpio_set_dir_out_masked(mask); else gpio_set_dir_in_masked(mask);/* ... */ #else uint32_t mask = 1u << (gpio & 0x1fu); if (gpio < 32) { if (out) { sio_hw->gpio_oe_set = mask; }if (out) { ... } else { sio_hw->gpio_oe_clr = mask; }else { ... } }if (gpio < 32) { ... } else { if (out) { sio_hw->gpio_hi_oe_set = mask; }if (out) { ... } else { sio_hw->gpio_hi_oe_clr = mask; }else { ... } }else { ... } /* ... */#endif }{ ... } /*! \brief Check if a specific GPIO direction is OUT * \ingroup hardware_gpio * * \param gpio GPIO number * \return true if the direction for the pin is OUT *//* ... */ static inline bool gpio_is_dir_out(uint gpio) { #if NUM_BANK0_GPIOS <= 32 return sio_hw->gpio_oe & (1u << (gpio)); #else uint32_t bits = gpio < 32 ? sio_hw->gpio_oe : sio_hw->gpio_hi_oe; return bits & (1u << (gpio & 0x1fu));/* ... */ #endif }{ ... } /*! \brief Get a specific GPIO direction * \ingroup hardware_gpio * * \param gpio GPIO number * \return 1 for out, 0 for in *//* ... */ static inline uint gpio_get_dir(uint gpio) { return gpio_is_dir_out(gpio); // note GPIO_OUT is 1/true and GPIO_IN is 0/false anyway }{ ... } #if PICO_SECURE static inline void gpio_assign_to_ns(uint gpio, bool ns) { check_gpio_param(gpio); if (ns) hw_set_bits(&accessctrl_hw->gpio_nsmask[gpio/32], 1u << (gpio & 0x1fu)); else hw_clear_bits(&accessctrl_hw->gpio_nsmask[gpio/32], 1u << (gpio & 0x1fu)); }gpio_assign_to_ns (uint gpio, bool ns) { ... } /* ... */#endif extern void gpio_debug_pins_init(void); #ifdef __cplusplus }extern "C" { ... } #endif // PICO_CONFIG: PICO_DEBUG_PIN_BASE, First pin to use for debug output (if enabled), min=0, max=28, default=19, group=hardware_gpio #ifndef PICO_DEBUG_PIN_BASE #define PICO_DEBUG_PIN_BASE 19u #endif // PICO_CONFIG: PICO_DEBUG_PIN_COUNT, Number of pins to use for debug output (if enabled), min=1, max=28, default=3, group=hardware_gpio #ifndef PICO_DEBUG_PIN_COUNT #define PICO_DEBUG_PIN_COUNT 3u #endif #ifndef __cplusplus // note these two macros may only be used once per and only apply per compilation unit (hence the CU_) #define CU_REGISTER_DEBUG_PINS(...) enum __unused DEBUG_PIN_TYPE { _none = 0, __VA_ARGS__ }; static enum DEBUG_PIN_TYPE __selected_debug_pins; #define CU_SELECT_DEBUG_PINS(x) static enum DEBUG_PIN_TYPE __selected_debug_pins = (x); #define DEBUG_PINS_ENABLED(p) (__selected_debug_pins == (p)) /* ... */#else #define CU_REGISTER_DEBUG_PINS(p...) \ enum DEBUG_PIN_TYPE { _none = 0, p }; \ template <enum DEBUG_PIN_TYPE> class __debug_pin_settings { \ public: \ static inline bool enabled() { return false; } \public: ...};... #define CU_SELECT_DEBUG_PINS(x) template<> inline bool __debug_pin_settings<x>::enabled() { return true; }; #define DEBUG_PINS_ENABLED(p) (__debug_pin_settings<p>::enabled()) /* ... */#endif #define DEBUG_PINS_SET(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_set_mask((unsigned)(v)<<PICO_DEBUG_PIN_BASE) #define DEBUG_PINS_CLR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_clr_mask((unsigned)(v)<<PICO_DEBUG_PIN_BASE) #define DEBUG_PINS_XOR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_xor_mask((unsigned)(v)<<PICO_DEBUG_PIN_BASE) /* ... */ #endif // _GPIO_H_
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.