/* * Test code that just sends the letters 'a' to 'z' over and * over again using USART2. * * Toggles the BLUE LED slowly and the RED LED for every * character sent. */ #include "stm32f4xx_hal.h" #include "stm-init.h" #include "stm-led.h" #include "stm-uart.h" void test_for_shorts(char port, GPIO_TypeDef* GPIOx, uint16_t GPIO_Test_Pins); //------------------------------------------------------------------------------ // Defines //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ // Macros //------------------------------------------------------------------------------ /* These are all the pins used by the FMC interface */ #define GPIOB_PINS (GPIO_PIN_7) #define GPIOD_PINS (GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_11 \ |GPIO_PIN_12|GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15 \ |GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_3|GPIO_PIN_4 \ |GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7) #define GPIOE_PINS (GPIO_PIN_3|GPIO_PIN_4|GPIO_PIN_5|GPIO_PIN_7 \ |GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_11 \ |GPIO_PIN_12|GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15) #define GPIOF_PINS (GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3 \ |GPIO_PIN_4|GPIO_PIN_5|GPIO_PIN_12|GPIO_PIN_13 \ |GPIO_PIN_14|GPIO_PIN_15) #define GPIOG_PINS (GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3 \ |GPIO_PIN_4|GPIO_PIN_5) #define GPIOH_PINS (GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_11 \ |GPIO_PIN_12|GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15) #define GPIOI_PINS (GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_0|GPIO_PIN_1 \ |GPIO_PIN_2|GPIO_PIN_3|GPIO_PIN_6|GPIO_PIN_7) int main() { stm_init(); // enable gpio clocks __GPIOA_CLK_ENABLE(); __GPIOB_CLK_ENABLE(); __GPIOD_CLK_ENABLE(); __GPIOE_CLK_ENABLE(); __GPIOF_CLK_ENABLE(); __GPIOG_CLK_ENABLE(); __GPIOH_CLK_ENABLE(); __GPIOI_CLK_ENABLE(); while (1) { HAL_GPIO_TogglePin(LED_PORT, LED_GREEN); uart_send_string("\r\n\r\n\r\n\r\n\r\n"); test_for_shorts('B', GPIOB, GPIOB_PINS); test_for_shorts('D', GPIOD, GPIOD_PINS); test_for_shorts('E', GPIOE, GPIOE_PINS); test_for_shorts('F', GPIOF, GPIOF_PINS); test_for_shorts('G', GPIOG, GPIOG_PINS); test_for_shorts('H', GPIOH, GPIOH_PINS); test_for_shorts('I', GPIOI, GPIOI_PINS); led_toggle(LED_BLUE); HAL_Delay(2000); } } void configure_all_as_input(GPIO_TypeDef* GPIOx, uint16_t GPIO_Test_Pins) { GPIO_InitTypeDef GPIO_InitStruct; /* Configure all pins as input. XXX do all pins (0xffff) instead of just GPIO_Test_Pins? */ GPIO_InitStruct.Pin = GPIO_Test_Pins; GPIO_InitStruct.Mode = GPIO_MODE_INPUT; GPIO_InitStruct.Pull = GPIO_PULLDOWN; GPIO_InitStruct.Speed = GPIO_SPEED_LOW; HAL_GPIO_Init(GPIOx, &GPIO_InitStruct); } uint8_t check_no_input(char port, GPIO_TypeDef* GPIOx, uint16_t GPIO_Test_Pins, char wrote_port, uint16_t wrote_value) { uint16_t read; /* Read all pins from port at once. XXX check all pins, not just GPIO_Test_Pins? */ read = (GPIOx->IDR & GPIO_Test_Pins); if (! read) { /* No unexpected pins read as HIGH */ return 0; } led_on(LED_RED); uart_send_string("Wrote "); uart_send_binary(wrote_value, 16); uart_send_string(" to port GPIO"); uart_send_char(wrote_port); uart_send_string(", read "); uart_send_binary(read, 16); uart_send_string(" from GPIO"); uart_send_char(port); uart_send_string("\r\n"); return 1; } void test_for_shorts(char port, GPIO_TypeDef* GPIOx, uint16_t GPIO_Test_Pins) { GPIO_InitTypeDef GPIO_InitStruct; uint16_t i, fail = 0, Test_Pin, read; configure_all_as_input(GPIOB, GPIOB_PINS); configure_all_as_input(GPIOD, GPIOD_PINS); configure_all_as_input(GPIOE, GPIOE_PINS); configure_all_as_input(GPIOF, GPIOF_PINS); configure_all_as_input(GPIOG, GPIOG_PINS); configure_all_as_input(GPIOH, GPIOH_PINS); configure_all_as_input(GPIOI, GPIOI_PINS); check_no_input('B', GPIOB, GPIOB_PINS, 'x', 0); check_no_input('D', GPIOD, GPIOD_PINS, 'x', 0); check_no_input('E', GPIOE, GPIOE_PINS, 'x', 0); check_no_input('F', GPIOF, GPIOF_PINS, 'x', 0); check_no_input('G', GPIOG, GPIOG_PINS, 'x', 0); check_no_input('H', GPIOH, GPIOH_PINS, 'x', 0); check_no_input('I', GPIOI, GPIOI_PINS, 'x', 0); for (i = 0; i < 31; i++) { Test_Pin = 1 << i; if (! (GPIO_Test_Pins & Test_Pin)) continue; configure_all_as_input(GPIOx, GPIO_Test_Pins); /* Change one pin to output */ GPIO_InitStruct.Pin = Test_Pin; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; GPIO_InitStruct.Pull = GPIO_PULLDOWN; GPIO_InitStruct.Speed = GPIO_SPEED_LOW; HAL_GPIO_Init(GPIOx, &GPIO_InitStruct); HAL_GPIO_WritePin(GPIOx, Test_Pin, GPIO_PIN_SET); /* Slight delay after setting the output pin. Without this, the Test_Pin bit might read as zero, as it is only sampled once every AHB1 clock cycle. Reference manual DM00031020 section 8.3.1. */ HAL_Delay(1); /* Read all input GPIOs from port at once. XXX check all pins, not just GPIO_Test_Pins? */ read = GPIOx->IDR & GPIO_Test_Pins; if (read == Test_Pin) { /* No unexpected pins read as HIGH */ led_toggle(LED_GREEN); } else { led_on(LED_RED); uart_send_string("GPIO"); uart_send_char(port); uart_send_string(" exp "); uart_send_binary(Test_Pin, 16); uart_send_string(" got "); uart_send_binary(read, 16); uart_send_string(" diff "); uart_send_binary(read ^ Test_Pin, 16); uart_send_string("\r\n"); fail++; } /* Check there is no input on any of the other GPIO ports (adjacent pins might live on different ports) */ if (port != 'B') fail += check_no_input('B', GPIOB, GPIOB_PINS, port, Test_Pin); if (port != 'D') fail += check_no_input('D', GPIOD, GPIOD_PINS, port, Test_Pin); if (port != 'E') fail += check_no_input('E', GPIOE, GPIOE_PINS, port, Test_Pin); if (port != 'F') fail += check_no_input('F', GPIOF, GPIOF_PINS, port, Test_Pin); if (port != 'G') fail += check_no_input('G', GPIOG, GPIOG_PINS, port, Test_Pin); if (port != 'H') fail += check_no_input('H', GPIOH, GPIOH_PINS, port, Test_Pin); if (port != 'I') fail += check_no_input('I', GPIOI, GPIOI_PINS, port, Test_Pin); HAL_GPIO_WritePin(GPIOx, Test_Pin, GPIO_PIN_RESET); } if (fail) { uart_send_string("\r\n"); } } div class='alt'>
abef232

















62b6700



1ba71b2
abef232

62b6700



abef232
1ba71b2
abef232
1ba71b2
62b6700
abef232



f4fc164
abef232
f4fc164
abef232

687521d



abef232
687521d

abef232


































abef232



62b6700
1ba71b2
abef232




62b6700

687521d
62b6700


abef232

62b6700

687521d
62b6700


abef232

687521d



62b6700
abef232
a315223
abef232










f4fc164



687521d


f4fc164






abef232


1ba71b2

abef232
f4fc164

abef232
687521d


abef232

5775903
abef232



1ba71b2



687521d


1ba71b2



1ba71b2
abef232

62b6700



abef232
62b6700





















abef232

62b6700
abef232





62b6700
a315223
62b6700



abef232


62b6700

abef232

62b6700

1ba71b2


abef232
1ba71b2
abef232



1ba71b2



abef232


1ba71b2

abef232


1ba71b2



abef232

1ba71b2

abef232















f4fc164
abef232


f4fc164
abef232




f4fc164
abef232


f4fc164
abef232

1ba71b2
abef232












f4fc164
abef232
f4fc164
abef232


62b6700


abef232
62b6700
687521d
5775903
abef232
62b6700
abef232


abef232
5775903
abef232




5775903

abef232




5775903

abef232













687521d

abef232


687521d
abef232

687521d
abef232

687521d
abef232




62b6700
abef232




































f4fc164
abef232

















62b6700

abef232




62b6700

abef232



f4fc164
abef232
62b6700


abef232




62b6700

abef232




f4fc164
abef232
62b6700


abef232




62b6700

abef232




f4fc164
abef232

62b6700
abef232




62b6700

abef232
1ba71b2

abef232

62b6700
abef232





62b6700
abef232



a315223
f4fc164

abef232

























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