File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ impl<MODE> Pin<MODE> {
88
88
w. pull ( ) . disabled ( ) ;
89
89
w. drive ( ) . s0s1 ( ) ;
90
90
w. sense ( ) . disabled ( ) ;
91
+ w
91
92
} ) ;
92
93
93
94
Pin {
@@ -121,6 +122,7 @@ impl<MODE> Pin<MODE> {
121
122
w. pull ( ) . pullup ( ) ;
122
123
w. drive ( ) . s0s1 ( ) ;
123
124
w. sense ( ) . disabled ( ) ;
125
+ w
124
126
} ) ;
125
127
126
128
Pin {
@@ -154,6 +156,7 @@ impl<MODE> Pin<MODE> {
154
156
w. pull ( ) . pulldown ( ) ;
155
157
w. drive ( ) . s0s1 ( ) ;
156
158
w. sense ( ) . disabled ( ) ;
159
+ w
157
160
} ) ;
158
161
159
162
Pin {
@@ -201,6 +204,7 @@ impl<MODE> Pin<MODE> {
201
204
w. pull ( ) . disabled ( ) ;
202
205
w. drive ( ) . s0s1 ( ) ;
203
206
w. sense ( ) . disabled ( ) ;
207
+ w
204
208
} ) ;
205
209
206
210
pin
@@ -252,6 +256,7 @@ impl<MODE> Pin<MODE> {
252
256
w. pull ( ) . disabled ( ) ;
253
257
w. drive ( ) . variant ( config. variant ( ) ) ;
254
258
w. sense ( ) . disabled ( ) ;
259
+ w
255
260
} ) ;
256
261
257
262
pin
@@ -480,6 +485,7 @@ macro_rules! gpio {
480
485
w. pull( ) . disabled( ) ;
481
486
w. drive( ) . s0s1( ) ;
482
487
w. sense( ) . disabled( ) ;
488
+ w
483
489
} ) ;
484
490
485
491
$PXi {
@@ -493,6 +499,7 @@ macro_rules! gpio {
493
499
w. pull( ) . pulldown( ) ;
494
500
w. drive( ) . s0s1( ) ;
495
501
w. sense( ) . disabled( ) ;
502
+ w
496
503
} ) ;
497
504
498
505
$PXi {
@@ -506,6 +513,7 @@ macro_rules! gpio {
506
513
w. pull( ) . pullup( ) ;
507
514
w. drive( ) . s0s1( ) ;
508
515
w. sense( ) . disabled( ) ;
516
+ w
509
517
} ) ;
510
518
511
519
$PXi {
@@ -532,6 +540,7 @@ macro_rules! gpio {
532
540
w. pull( ) . disabled( ) ;
533
541
w. drive( ) . s0s1( ) ;
534
542
w. sense( ) . disabled( ) ;
543
+ w
535
544
} ) ;
536
545
537
546
pin
@@ -567,6 +576,7 @@ macro_rules! gpio {
567
576
w. pull( ) . disabled( ) ;
568
577
w. drive( ) . variant( config. variant( ) ) ;
569
578
w. sense( ) . disabled( ) ;
579
+ w
570
580
} ) ;
571
581
572
582
pin
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ impl Saadc {
51
51
w. resp ( ) . variant ( resistor) ;
52
52
w. resn ( ) . bypass ( ) ;
53
53
w. burst ( ) . enabled ( ) ;
54
+ w
54
55
} ) ;
55
56
saadc. ch [ 0 ] . pseln . write ( |w| w. pseln ( ) . nc ( ) ) ;
56
57
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ where
141
141
w. cpol ( ) . active_low ( ) ;
142
142
w. cpha ( ) . trailing ( ) ;
143
143
}
144
+ w
144
145
} ) ;
145
146
146
147
// Configure frequency
You can’t perform that action at this time.
0 commit comments