Select one of the symbols to view example projects that use it.
 
Outline
#include "stm324xg_eval.h"
#include "stm324xg_eval_io.h"
LCD_CONTROLLER_TypeDef
#define __STM324xG_EVAL_BSP_VERSION_MAIN
#define __STM324xG_EVAL_BSP_VERSION_SUB1
#define __STM324xG_EVAL_BSP_VERSION_SUB2
#define __STM324xG_EVAL_BSP_VERSION_RC
#define FMC_BANK3_BASE
#define FMC_BANK3
#define I2C_TIMEOUT
GPIO_PORT
GPIO_PIN
BUTTON_PORT
BUTTON_PIN
BUTTON_IRQn
COM_USART
COM_TX_PORT
COM_RX_PORT
COM_TX_PIN
COM_RX_PIN
COM_TX_AF
COM_RX_AF
heval_I2c
Is_LCD_IO_Initialized
BSP_GetVersion()
BSP_LED_Init(Led_TypeDef)
BSP_LED_On(Led_TypeDef)
BSP_LED_Off(Led_TypeDef)
BSP_LED_Toggle(Led_TypeDef)
BSP_PB_Init(Button_TypeDef, ButtonMode_TypeDef)
BSP_PB_GetState(Button_TypeDef)
BSP_COM_Init(COM_TypeDef, UART_HandleTypeDef *)
BSP_JOY_Init(JOYMode_TypeDef)
BSP_JOY_GetState()
I2C Routines
I2Cx_MspInit()
I2Cx_Init()
I2Cx_ITConfig()
I2Cx_Read(uint8_t, uint8_t)
I2Cx_Write(uint8_t, uint8_t, uint8_t)
I2Cx_ReadMultiple(uint8_t, uint16_t, uint16_t, uint8_t *, uint16_t)
I2Cx_WriteMultiple(uint8_t, uint16_t, uint16_t, uint8_t *, uint16_t)
I2Cx_IsDeviceReady(uint16_t, uint32_t)
I2Cx_Error(uint8_t)
FSMC Routines
FSMC_BANK3_MspInit()
FSMC_BANK3_Init()
FSMC_BANK3_WriteData(uint16_t)
FSMC_BANK3_WriteReg(uint8_t)
FSMC_BANK3_ReadData()
LINK IOE
IOE_Init()
IOE_ITConfig()
IOE_Write(uint8_t, uint8_t, uint8_t)
IOE_Read(uint8_t, uint8_t)
IOE_ReadMultiple(uint8_t, uint8_t, uint8_t *, uint16_t)
IOE_Delay(uint32_t)
LINK LCD
LCD_IO_Init()
LCD_IO_WriteData(uint16_t)
LCD_IO_WriteMultipleData(uint8_t *, uint32_t)
LCD_IO_WriteReg(uint8_t)
LCD_IO_ReadData(uint16_t)
LINK AUDIO
AUDIO_IO_Init()
AUDIO_IO_DeInit()
AUDIO_IO_Write(uint8_t, uint8_t, uint8_t)
AUDIO_IO_Read(uint8_t, uint8_t)
LINK CAMERA
CAMERA_IO_Init()
CAMERA_IO_Write(uint8_t, uint8_t, uint8_t)
CAMERA_IO_Read(uint8_t, uint8_t)
CAMERA_Delay(uint32_t)
EEPROM_IO_Init()
EEPROM_IO_WriteData(uint16_t, uint16_t, uint8_t *, uint32_t)
EEPROM_IO_ReadData(uint16_t, uint16_t, uint8_t *, uint32_t)
EEPROM_IO_IsDeviceReady(uint16_t, uint32_t)
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTM324xG_EVALstm324xg_eval.c
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file stm324xg_eval.c * @author MCD Application Team * @brief This file provides a set of firmware functions to manage LEDs, * push-buttons and COM ports available on STM324xG-EVAL evaluation * board(MB786) RevB from STMicroelectronics. ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* File Info: ------------------------------------------------------------------ User NOTE This driver requires the stm324xG_eval_io.c driver to manage the joystick ------------------------------------------------------------------------------*//* ... */ /* Includes ------------------------------------------------------------------*/ #include "stm324xg_eval.h" #include "stm324xg_eval_io.h" /** @defgroup BSP BSP * @{ *//* ... */ /** @defgroup STM324xG_EVAL STM324xG EVAL * @{ *//* ... */ /** @defgroup STM324xG_EVAL_LOW_LEVEL STM324xG EVAL LOW LEVEL * @{ *//* ... */ /** @defgroup STM324xG_EVAL_LOW_LEVEL_Private_TypesDefinitions STM324xG EVAL LOW LEVEL Private TypesDefinitions * @{ *//* ... */ typedef struct { __IO uint16_t REG; __IO uint16_t RAM; ...}LCD_CONTROLLER_TypeDef; /** * @} *//* ... */ /** @defgroup STM324xG_EVAL_LOW_LEVEL_Private_Defines STM324xG EVAL LOW LEVEL Private Defines * @{ *//* ... */ /** * @brief STM324xG EVAL BSP Driver version number V3.0.4 *//* ... */ #define __STM324xG_EVAL_BSP_VERSION_MAIN (0x03) /*!< [31:24] main version */ #define __STM324xG_EVAL_BSP_VERSION_SUB1 (0x00) /*!< [23:16] sub1 version */ #define __STM324xG_EVAL_BSP_VERSION_SUB2 (0x04) /*!< [15:8] sub2 version */ #define __STM324xG_EVAL_BSP_VERSION_RC (0x00) /*!< [7:0] release candidate */ #define __STM324xG_EVAL_BSP_VERSION ((__STM324xG_EVAL_BSP_VERSION_MAIN << 24)\ |(__STM324xG_EVAL_BSP_VERSION_SUB1 << 16)\ |(__STM324xG_EVAL_BSP_VERSION_SUB2 << 8 )\ |(__STM324xG_EVAL_BSP_VERSION_RC))... #define FMC_BANK3_BASE ((uint32_t)(0x60000000 | 0x08000000)) #define FMC_BANK3 ((LCD_CONTROLLER_TypeDef *) FMC_BANK3_BASE) #define I2C_TIMEOUT 100 /*<! Value of Timeout when I2C communication fails */ 8 defines /** * @} *//* ... */ /** @defgroup STM324xG_EVAL_LOW_LEVEL_Private_Variables STM324xG EVAL LOW LEVEL Private Variables * @{ *//* ... */ GPIO_TypeDef* GPIO_PORT[LEDn] = {LED1_GPIO_PORT, LED2_GPIO_PORT, LED3_GPIO_PORT, LED4_GPIO_PORT...}; const uint16_t GPIO_PIN[LEDn] = {LED1_PIN, LED2_PIN, LED3_PIN, LED4_PIN...}; GPIO_TypeDef* BUTTON_PORT[BUTTONn] = {WAKEUP_BUTTON_GPIO_PORT, TAMPER_BUTTON_GPIO_PORT, KEY_BUTTON_GPIO_PORT...}; const uint16_t BUTTON_PIN[BUTTONn] = {WAKEUP_BUTTON_PIN, TAMPER_BUTTON_PIN, KEY_BUTTON_PIN...}; const uint16_t BUTTON_IRQn[BUTTONn] = {WAKEUP_BUTTON_EXTI_IRQn, TAMPER_BUTTON_EXTI_IRQn, KEY_BUTTON_EXTI_IRQn...}; USART_TypeDef* COM_USART[COMn] = {EVAL_COM1}; GPIO_TypeDef* COM_TX_PORT[COMn] = {EVAL_COM1_TX_GPIO_PORT}; GPIO_TypeDef* COM_RX_PORT[COMn] = {EVAL_COM1_RX_GPIO_PORT}; const uint16_t COM_TX_PIN[COMn] = {EVAL_COM1_TX_PIN}; const uint16_t COM_RX_PIN[COMn] = {EVAL_COM1_RX_PIN}; const uint16_t COM_TX_AF[COMn] = {EVAL_COM1_TX_AF}; const uint16_t COM_RX_AF[COMn] = {EVAL_COM1_RX_AF}; I2C_HandleTypeDef heval_I2c; static uint8_t Is_LCD_IO_Initialized = 0; /** * @} *//* ... */ /** @defgroup STM324xG_EVAL_LOW_LEVEL_Private_FunctionPrototypes STM324xG EVAL LOW LEVEL Private FunctionPrototypes * @{ *//* ... */ static void I2Cx_Init(void); static void I2Cx_ITConfig(void); static void I2Cx_Write(uint8_t Addr, uint8_t Reg, uint8_t Value); static uint8_t I2Cx_Read(uint8_t Addr, uint8_t Reg); static HAL_StatusTypeDef I2Cx_WriteMultiple(uint8_t Addr, uint16_t Reg, uint16_t MemAddress, uint8_t *Buffer, uint16_t Length); static HAL_StatusTypeDef I2Cx_ReadMultiple(uint8_t Addr, uint16_t Reg, uint16_t MemAddress, uint8_t *Buffer, uint16_t Length); static HAL_StatusTypeDef I2Cx_IsDeviceReady(uint16_t DevAddress, uint32_t Trials); static void I2Cx_Error(uint8_t Addr); static void I2Cx_MspInit(void); static void FSMC_BANK3_WriteData(uint16_t Data); static void FSMC_BANK3_WriteReg(uint8_t Reg); static uint16_t FSMC_BANK3_ReadData(void); static void FSMC_BANK3_Init(void); static void FSMC_BANK3_MspInit(void); /* IOExpander IO functions */ void IOE_Init(void); void IOE_ITConfig(void); void IOE_Delay(uint32_t Delay); void IOE_Write(uint8_t Addr, uint8_t Reg, uint8_t Value); uint8_t IOE_Read(uint8_t Addr, uint8_t Reg); uint16_t IOE_ReadMultiple(uint8_t Addr, uint8_t Reg, uint8_t *Buffer, uint16_t Length); /* LCD IO functions */ void LCD_IO_Init(void); void LCD_IO_WriteData(uint16_t Data); void LCD_IO_WriteMultipleData(uint8_t *pData, uint32_t Size); void LCD_IO_WriteReg(uint8_t Reg); uint16_t LCD_IO_ReadData(uint16_t Reg); /* AUDIO IO functions */ void AUDIO_IO_Init(void); void AUDIO_IO_DeInit(void); void AUDIO_IO_Write(uint8_t Addr, uint8_t Reg, uint8_t Value); uint8_t AUDIO_IO_Read(uint8_t Addr, uint8_t Reg); /* Camera IO functions */ void CAMERA_IO_Init(void); void CAMERA_IO_Write(uint8_t Addr, uint8_t Reg, uint8_t Value); uint8_t CAMERA_IO_Read(uint8_t Addr, uint8_t Reg); void CAMERA_Delay(uint32_t Delay); /* I2C EEPROM IO function */ void EEPROM_IO_Init(void); HAL_StatusTypeDef EEPROM_IO_WriteData(uint16_t DevAddress, uint16_t MemAddress, uint8_t* pBuffer, uint32_t BufferSize); HAL_StatusTypeDef EEPROM_IO_ReadData(uint16_t DevAddress, uint16_t MemAddress, uint8_t* pBuffer, uint32_t BufferSize); HAL_StatusTypeDef EEPROM_IO_IsDeviceReady(uint16_t DevAddress, uint32_t Trials); /** * @} *//* ... */ /** @defgroup STM324xG_EVAL_LOW_LEVEL_Private_Functions STM324xG EVAL LOW LEVEL Private Functions * @{ *//* ... */ /** * @brief This method returns the STM324xG EVAL BSP Driver revision * @retval version: 0xXYZR (8bits for each decimal, R for RC) *//* ... */ uint32_t BSP_GetVersion(void) { return __STM324xG_EVAL_BSP_VERSION; }{ ... } /** * @brief Configures LED GPIO. * @param Led: LED to be configured. * This parameter can be one of the following values: * @arg LED1 * @arg LED2 * @arg LED3 * @arg LED4 *//* ... */ void BSP_LED_Init(Led_TypeDef Led) { GPIO_InitTypeDef GPIO_InitStruct; /* Enable the GPIO_LED clock */ LEDx_GPIO_CLK_ENABLE(Led); /* Configure the GPIO_LED pin */ GPIO_InitStruct.Pin = GPIO_PIN[Led]; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; GPIO_InitStruct.Pull = GPIO_PULLUP; GPIO_InitStruct.Speed = GPIO_SPEED_FAST; HAL_GPIO_Init(GPIO_PORT[Led], &GPIO_InitStruct); }{ ... } /** * @brief Turns selected LED On. * @param Led: LED to be set on * This parameter can be one of the following values: * @arg LED1 * @arg LED2 * @arg LED3 * @arg LED4 *//* ... */ void BSP_LED_On(Led_TypeDef Led) { HAL_GPIO_WritePin(GPIO_PORT[Led], GPIO_PIN[Led], GPIO_PIN_SET); }{ ... } /** * @brief Turns selected LED Off. * @param Led: LED to be set off * This parameter can be one of the following values: * @arg LED1 * @arg LED2 * @arg LED3 * @arg LED4 *//* ... */ void BSP_LED_Off(Led_TypeDef Led) { HAL_GPIO_WritePin(GPIO_PORT[Led], GPIO_PIN[Led], GPIO_PIN_RESET); }{ ... } /** * @brief Toggles the selected LED. * @param Led: LED to be toggled * This parameter can be one of the following values: * @arg LED1 * @arg LED2 * @arg LED3 * @arg LED4 *//* ... */ void BSP_LED_Toggle(Led_TypeDef Led) { HAL_GPIO_TogglePin(GPIO_PORT[Led], GPIO_PIN[Led]); }{ ... } /** * @brief Configures button GPIO and EXTI Line. * @param Button: Button to be configured * This parameter can be one of the following values: * @arg BUTTON_WAKEUP: Wakeup Push Button * @arg BUTTON_TAMPER: Tamper Push Button * @arg BUTTON_KEY: Key Push Button * @arg BUTTON_RIGHT: Joystick Right Push Button * @arg BUTTON_LEFT: Joystick Left Push Button * @arg BUTTON_UP: Joystick Up Push Button * @arg BUTTON_DOWN: Joystick Down Push Button * @arg BUTTON_SEL: Joystick Sel Push Button * @param Button_Mode: Button mode * This parameter can be one of the following values: * @arg BUTTON_MODE_GPIO: Button will be used as simple IO * @arg BUTTON_MODE_EXTI: Button will be connected to EXTI line * with interrupt generation capability *//* ... */ void BSP_PB_Init(Button_TypeDef Button, ButtonMode_TypeDef Button_Mode) { GPIO_InitTypeDef GPIO_InitStruct; /* Enable the BUTTON clock */ BUTTONx_GPIO_CLK_ENABLE(Button); if(Button_Mode == BUTTON_MODE_GPIO) { /* Configure Button pin as input */ GPIO_InitStruct.Pin = BUTTON_PIN[Button]; GPIO_InitStruct.Mode = GPIO_MODE_INPUT; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FAST; HAL_GPIO_Init(BUTTON_PORT[Button], &GPIO_InitStruct); }if (Button_Mode == BUTTON_MODE_GPIO) { ... } if(Button_Mode == BUTTON_MODE_EXTI) { /* Configure Button pin as input with External interrupt */ GPIO_InitStruct.Pin = BUTTON_PIN[Button]; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FAST; if(Button != BUTTON_WAKEUP) { GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; }if (Button != BUTTON_WAKEUP) { ... } else { GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING; }else { ... } HAL_GPIO_Init(BUTTON_PORT[Button], &GPIO_InitStruct); /* Enable and set Button EXTI Interrupt to the lowest priority */ HAL_NVIC_SetPriority((IRQn_Type)(BUTTON_IRQn[Button]), 0x0F, 0x0); HAL_NVIC_EnableIRQ((IRQn_Type)(BUTTON_IRQn[Button])); }if (Button_Mode == BUTTON_MODE_EXTI) { ... } }{ ... } /** * @brief Returns the selected button state. * @param Button: Button to be checked * This parameter can be one of the following values: * @arg BUTTON_WAKEUP: Wakeup Push Button * @arg BUTTON_TAMPER: Tamper Push Button * @arg BUTTON_KEY: Key Push Button * @arg BUTTON_RIGHT: Joystick Right Push Button * @arg BUTTON_LEFT: Joystick Left Push Button * @arg BUTTON_UP: Joystick Up Push Button * @arg BUTTON_DOWN: Joystick Down Push Button * @arg BUTTON_SEL: Joystick Sel Push Button * @retval The Button GPIO pin value *//* ... */ uint32_t BSP_PB_GetState(Button_TypeDef Button) { return HAL_GPIO_ReadPin(BUTTON_PORT[Button], BUTTON_PIN[Button]); }{ ... } /** * @brief Configures COM port. * @param COM: COM port to be configured. * This parameter can be one of the following values: * @arg COM1 * @arg COM2 * @param huart: Pointer to a UART_HandleTypeDef structure that contains the * configuration information for the specified USART peripheral. *//* ... */ void BSP_COM_Init(COM_TypeDef COM, UART_HandleTypeDef *huart) { GPIO_InitTypeDef GPIO_InitStruct; /* Enable GPIO clock */ EVAL_COMx_TX_GPIO_CLK_ENABLE(COM); EVAL_COMx_RX_GPIO_CLK_ENABLE(COM); /* Enable USART clock */ EVAL_COMx_CLK_ENABLE(COM); /* Configure USART Tx as alternate function */ GPIO_InitStruct.Pin = COM_TX_PIN[COM]; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; GPIO_InitStruct.Speed = GPIO_SPEED_FAST; GPIO_InitStruct.Pull = GPIO_PULLUP; GPIO_InitStruct.Alternate = COM_TX_AF[COM]; HAL_GPIO_Init(COM_TX_PORT[COM], &GPIO_InitStruct); /* Configure USART Rx as alternate function */ GPIO_InitStruct.Pin = COM_RX_PIN[COM]; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; GPIO_InitStruct.Alternate = COM_RX_AF[COM]; HAL_GPIO_Init(COM_RX_PORT[COM], &GPIO_InitStruct); /* USART configuration */ huart->Instance = COM_USART[COM]; HAL_UART_Init(huart); }{ ... } /** * @brief Configures joystick GPIO and EXTI modes. * @param Joy_Mode: Button mode. * This parameter can be one of the following values: * @arg JOY_MODE_GPIO: Joystick pins will be used as simple IOs * @arg JOY_MODE_EXTI: Joystick pins will be connected to EXTI line * with interrupt generation capability * @retval IO_OK: if all initializations are OK. Other value if error. *//* ... */ uint8_t BSP_JOY_Init(JOYMode_TypeDef Joy_Mode) { uint8_t ret = 0; /* Initialize the IO functionalities */ ret = BSP_IO_Init(); /* Configure joystick pins in IT mode */ if(Joy_Mode == JOY_MODE_EXTI) { /* Configure joystick pins in IT mode */ BSP_IO_ConfigPin(JOY_ALL_PINS, IO_MODE_IT_FALLING_EDGE); }if (Joy_Mode == JOY_MODE_EXTI) { ... } return ret; }{ ... } /** * @brief Returns the current joystick status. * @retval Code of the joystick key pressed * This code can be one of the following values: * @arg JOY_NONE * @arg JOY_SEL * @arg JOY_DOWN * @arg JOY_LEFT * @arg JOY_RIGHT * @arg JOY_UP *//* ... */ JOYState_TypeDef BSP_JOY_GetState(void) { uint8_t tmp = 0; /* Read the status joystick pins */ tmp = (uint8_t)BSP_IO_ReadPin(JOY_ALL_PINS); /* Check the pressed keys */ if((tmp & JOY_NONE_PIN) == JOY_NONE) { return(JOYState_TypeDef) JOY_NONE; }if ((tmp & JOY_NONE_PIN) == JOY_NONE) { ... } else if(!(tmp & JOY_SEL_PIN)) { return(JOYState_TypeDef) JOY_SEL; }else if (!(tmp & JOY_SEL_PIN)) { ... } else if(!(tmp & JOY_DOWN_PIN)) { return(JOYState_TypeDef) JOY_DOWN; }else if (!(tmp & JOY_DOWN_PIN)) { ... } else if(!(tmp & JOY_LEFT_PIN)) { return(JOYState_TypeDef) JOY_LEFT; }else if (!(tmp & JOY_LEFT_PIN)) { ... } else if(!(tmp & JOY_RIGHT_PIN)) { return(JOYState_TypeDef) JOY_RIGHT; }else if (!(tmp & JOY_RIGHT_PIN)) { ... } else if(!(tmp & JOY_UP_PIN)) { return(JOYState_TypeDef) JOY_UP; }else if (!(tmp & JOY_UP_PIN)) { ... } else { return(JOYState_TypeDef) JOY_NONE; }else { ... } }{ ... } /******************************************************************************* BUS OPERATIONS *******************************************************************************//* ... */ /**************************** I2C Routines ************************************/ /** * @brief Initializes I2C MSP. *//* ... */ static void I2Cx_MspInit(void) { GPIO_InitTypeDef GPIO_InitStruct; /*** Configure the GPIOs ***/ /* Enable GPIO clock */ EVAL_I2Cx_SCL_SDA_GPIO_CLK_ENABLE(); /* Configure I2C Tx as alternate function */ GPIO_InitStruct.Pin = EVAL_I2Cx_SCL_PIN; GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FAST; GPIO_InitStruct.Alternate = EVAL_I2Cx_SCL_SDA_AF; HAL_GPIO_Init(EVAL_I2Cx_SCL_SDA_GPIO_PORT, &GPIO_InitStruct); /* Configure I2C Rx as alternate function */ GPIO_InitStruct.Pin = EVAL_I2Cx_SDA_PIN; HAL_GPIO_Init(EVAL_I2Cx_SCL_SDA_GPIO_PORT, &GPIO_InitStruct); /*** Configure the I2C peripheral ***/ /* Enable I2C clock */ EVAL_I2Cx_CLK_ENABLE(); /* Force the I2C peripheral clock reset */ EVAL_I2Cx_FORCE_RESET(); /* Release the I2C peripheral clock reset */ EVAL_I2Cx_RELEASE_RESET(); /* Set priority and enable I2Cx event Interrupt */ HAL_NVIC_SetPriority(EVAL_I2Cx_EV_IRQn, 0x0F, 0); HAL_NVIC_EnableIRQ(EVAL_I2Cx_EV_IRQn); /* Set priority and enable I2Cx error Interrupt */ HAL_NVIC_SetPriority(EVAL_I2Cx_ER_IRQn, 0x0F, 0); HAL_NVIC_EnableIRQ(EVAL_I2Cx_ER_IRQn); }{ ... } /** * @brief Initializes I2C HAL. *//* ... */ static void I2Cx_Init(void) { if(HAL_I2C_GetState(&heval_I2c) == HAL_I2C_STATE_RESET) { heval_I2c.Instance = EVAL_I2Cx; heval_I2c.Init.ClockSpeed = BSP_I2C_SPEED; heval_I2c.Init.DutyCycle = I2C_DUTYCYCLE_2; heval_I2c.Init.OwnAddress1 = 0; heval_I2c.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; heval_I2c.Init.DualAddressMode = I2C_DUALADDRESS_DISABLED; heval_I2c.Init.OwnAddress2 = 0; heval_I2c.Init.GeneralCallMode = I2C_GENERALCALL_DISABLED; heval_I2c.Init.NoStretchMode = I2C_NOSTRETCH_DISABLED; /* Init the I2C */ I2Cx_MspInit(); HAL_I2C_Init(&heval_I2c); }if (HAL_I2C_GetState(&heval_I2c) == HAL_I2C_STATE_RESET) { ... } }{ ... } /** * @brief Configures I2C Interrupt. *//* ... */ static void I2Cx_ITConfig(void) { static uint8_t I2C_IT_Enabled = 0; GPIO_InitTypeDef GPIO_InitStruct; if(I2C_IT_Enabled == 0) { I2C_IT_Enabled = 1; /* Enable the GPIO EXTI clock */ __GPIOI_CLK_ENABLE(); __SYSCFG_CLK_ENABLE(); GPIO_InitStruct.Pin = GPIO_PIN_2; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FAST; GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; HAL_GPIO_Init(GPIOI, &GPIO_InitStruct); /* Set priority and Enable GPIO EXTI Interrupt */ HAL_NVIC_SetPriority((IRQn_Type)(EXTI2_IRQn), 0x0F, 0); HAL_NVIC_EnableIRQ((IRQn_Type)(EXTI2_IRQn)); }if (I2C_IT_Enabled == 0) { ... } }{ ... } /** * @brief Reads a single data. * @param Addr: I2C address * @param Reg: Reg address * @retval Data to be read *//* ... */ static uint8_t I2Cx_Read(uint8_t Addr, uint8_t Reg) { HAL_StatusTypeDef status = HAL_OK; uint8_t Value = 0; status = HAL_I2C_Mem_Read(&heval_I2c, Addr, Reg, I2C_MEMADD_SIZE_8BIT, &Value, 1, I2C_TIMEOUT); /* Check the communication status */ if(status != HAL_OK) { /* Execute user timeout callback */ I2Cx_Error(Addr); }if (status != HAL_OK) { ... } return Value; }{ ... } /** * @brief Writes a single data. * @param Addr: I2C address * @param Reg: Reg address * @param Value: Data to be written *//* ... */ static void I2Cx_Write(uint8_t Addr, uint8_t Reg, uint8_t Value) { HAL_StatusTypeDef status = HAL_OK; status = HAL_I2C_Mem_Write(&heval_I2c, Addr, (uint16_t)Reg, I2C_MEMADD_SIZE_8BIT, &Value, 1, I2C_TIMEOUT); /* Check the communication status */ if(status != HAL_OK) { /* I2C error occurred */ I2Cx_Error(Addr); }if (status != HAL_OK) { ... } }{ ... } /** * @brief Reads multiple data. * @param Addr: I2C address * @param Reg: Reg address * @param MemAddress Internal memory address * @param Buffer: Pointer to data buffer * @param Length: Length of the data * @retval Number of read data *//* ... */ static HAL_StatusTypeDef I2Cx_ReadMultiple(uint8_t Addr, uint16_t Reg, uint16_t MemAddress, uint8_t *Buffer, uint16_t Length) { HAL_StatusTypeDef status = HAL_OK; status = HAL_I2C_Mem_Read(&heval_I2c, Addr, (uint16_t)Reg, MemAddress, Buffer, Length, I2C_TIMEOUT); /* Check the communication status */ if(status != HAL_OK) { /* I2C error occurred */ I2Cx_Error(Addr); }if (status != HAL_OK) { ... } return status; }{ ... } /** * @brief Write a value in a register of the device through BUS in using DMA mode * @param Addr: Device address on BUS Bus. * @param Reg: The target register address to write * @param MemAddress Internal memory address * @param Buffer: The target register value to be written * @param Length: buffer size to be written * @retval HAL status *//* ... */ static HAL_StatusTypeDef I2Cx_WriteMultiple(uint8_t Addr, uint16_t Reg, uint16_t MemAddress, uint8_t *Buffer, uint16_t Length) { HAL_StatusTypeDef status = HAL_OK; status = HAL_I2C_Mem_Write(&heval_I2c, Addr, (uint16_t)Reg, MemAddress, Buffer, Length, I2C_TIMEOUT); /* Check the communication status */ if(status != HAL_OK) { /* Re-Initiaize the I2C Bus */ I2Cx_Error(Addr); }if (status != HAL_OK) { ... } return status; }{ ... } /** * @brief Checks if target device is ready for communication. * @note This function is used with Memory devices * @param DevAddress: Target device address * @param Trials: Number of trials * @retval HAL status *//* ... */ static HAL_StatusTypeDef I2Cx_IsDeviceReady(uint16_t DevAddress, uint32_t Trials) { return (HAL_I2C_IsDeviceReady(&heval_I2c, DevAddress, Trials, I2C_TIMEOUT)); }{ ... } /** * @brief Manages error callback by re-initializing I2C. * @param Addr: I2C Address *//* ... */ static void I2Cx_Error(uint8_t Addr) { /* De-initialize the IOE communication BUS */ HAL_I2C_DeInit(&heval_I2c); /* Re-Initiaize the IOE communication BUS */ I2Cx_Init(); }{ ... } I2C Routines /*************************** FSMC Routines ************************************/ /** * @brief Initializes FSMC_BANK3 MSP. *//* ... */ static void FSMC_BANK3_MspInit(void) { GPIO_InitTypeDef GPIO_Init_Structure; /* Enable FSMC clock */ __FSMC_CLK_ENABLE(); /* Enable GPIOs clock */ __GPIOD_CLK_ENABLE(); __GPIOE_CLK_ENABLE(); __GPIOF_CLK_ENABLE(); __GPIOG_CLK_ENABLE(); /* Common GPIO configuration */ GPIO_Init_Structure.Mode = GPIO_MODE_AF_PP; GPIO_Init_Structure.Pull = GPIO_PULLUP; GPIO_Init_Structure.Speed = GPIO_SPEED_HIGH; GPIO_Init_Structure.Alternate = GPIO_AF12_FSMC; /* GPIOD configuration */ GPIO_Init_Structure.Pin = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_8 |\ GPIO_PIN_9 | GPIO_PIN_10 | GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13 |\ GPIO_PIN_14 | GPIO_PIN_15; HAL_GPIO_Init(GPIOD, &GPIO_Init_Structure); /* GPIOE configuration */ GPIO_Init_Structure.Pin = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_3| GPIO_PIN_4 | 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; HAL_GPIO_Init(GPIOE, &GPIO_Init_Structure); /* GPIOF configuration */ GPIO_Init_Structure.Pin = 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; HAL_GPIO_Init(GPIOF, &GPIO_Init_Structure); /* GPIOG configuration */ GPIO_Init_Structure.Pin = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2| GPIO_PIN_3 | GPIO_PIN_4 |\ GPIO_PIN_5 | GPIO_PIN_10; HAL_GPIO_Init(GPIOG, &GPIO_Init_Structure); }{ ... } /** * @brief Initializes LCD IO. *//* ... */ static void FSMC_BANK3_Init(void) { SRAM_HandleTypeDef hsram; FSMC_NORSRAM_TimingTypeDef SRAM_Timing; /*** Configure the SRAM Bank 3 ***/ /* Configure IPs */ hsram.Instance = FMC_NORSRAM_DEVICE; hsram.Extended = FMC_NORSRAM_EXTENDED_DEVICE; SRAM_Timing.AddressSetupTime = 5; SRAM_Timing.AddressHoldTime = 1; SRAM_Timing.DataSetupTime = 9; SRAM_Timing.BusTurnAroundDuration = 0; SRAM_Timing.CLKDivision = 2; SRAM_Timing.DataLatency = 2; SRAM_Timing.AccessMode = FSMC_ACCESS_MODE_A; hsram.Init.NSBank = FSMC_NORSRAM_BANK3; hsram.Init.DataAddressMux = FSMC_DATA_ADDRESS_MUX_DISABLE; hsram.Init.MemoryType = FSMC_MEMORY_TYPE_SRAM; hsram.Init.MemoryDataWidth = FSMC_NORSRAM_MEM_BUS_WIDTH_16; hsram.Init.BurstAccessMode = FSMC_BURST_ACCESS_MODE_DISABLE; hsram.Init.WaitSignalPolarity = FSMC_WAIT_SIGNAL_POLARITY_LOW; hsram.Init.WrapMode = FSMC_WRAP_MODE_DISABLE; hsram.Init.WaitSignalActive = FSMC_WAIT_TIMING_BEFORE_WS; hsram.Init.WriteOperation = FSMC_WRITE_OPERATION_ENABLE; hsram.Init.WaitSignal = FSMC_WAIT_SIGNAL_DISABLE; hsram.Init.ExtendedMode = FSMC_EXTENDED_MODE_DISABLE; hsram.Init.AsynchronousWait = FSMC_ASYNCHRONOUS_WAIT_DISABLE; hsram.Init.WriteBurst = FSMC_WRITE_BURST_DISABLE; hsram.Init.PageSize = FSMC_PAGE_SIZE_NONE; /* Initialize the SRAM controller */ FSMC_BANK3_MspInit(); HAL_SRAM_Init(&hsram, &SRAM_Timing, &SRAM_Timing); }{ ... } /** * @brief Writes register value. * @param Data: Data to be written *//* ... */ static void FSMC_BANK3_WriteData(uint16_t Data) { /* Write 16-bit Reg */ FMC_BANK3->RAM = Data; }{ ... } /** * @brief Writes register address. * @param Reg: Register to be written *//* ... */ static void FSMC_BANK3_WriteReg(uint8_t Reg) { /* Write 16-bit Index, then write register */ FMC_BANK3->REG = Reg; }{ ... } /** * @brief Reads register value. * @retval Read value *//* ... */ static uint16_t FSMC_BANK3_ReadData(void) { return FMC_BANK3->RAM; }{ ... } /******************************************************************************* LINK OPERATIONS *******************************************************************************//* ... */ FSMC Routines /***************************** LINK IOE ***************************************/ /** * @brief Initializes IOE low level. *//* ... */ void IOE_Init(void) { I2Cx_Init(); }{ ... } /** * @brief Configures IOE low level Interrupt. *//* ... */ void IOE_ITConfig(void) { I2Cx_ITConfig(); }{ ... } /** * @brief IOE writes single data. * @param Addr: I2C address * @param Reg: Reg address * @param Value: Data to be written *//* ... */ void IOE_Write(uint8_t Addr, uint8_t Reg, uint8_t Value) { I2Cx_Write(Addr, Reg, Value); }{ ... } /** * @brief IOE reads single data. * @param Addr: I2C address * @param Reg: Reg address * @retval Read data *//* ... */ uint8_t IOE_Read(uint8_t Addr, uint8_t Reg) { return I2Cx_Read(Addr, Reg); }{ ... } /** * @brief IOE reads multiple data. * @param Addr: I2C address * @param Reg: Reg address * @param Buffer: Pointer to data buffer * @param Length: Length of the data * @retval Number of read data *//* ... */ uint16_t IOE_ReadMultiple(uint8_t Addr, uint8_t Reg, uint8_t *Buffer, uint16_t Length) { return I2Cx_ReadMultiple(Addr, Reg, I2C_MEMADD_SIZE_8BIT, Buffer, Length); }{ ... } /** * @brief IOE delay. * @param Delay: Delay in ms *//* ... */ void IOE_Delay(uint32_t Delay) { HAL_Delay(Delay); }{ ... } LINK IOE /********************************* LINK LCD ***********************************/ /** * @brief Initializes LCD low level. *//* ... */ void LCD_IO_Init(void) { if(Is_LCD_IO_Initialized == 0) { Is_LCD_IO_Initialized = 1; FSMC_BANK3_Init(); }if (Is_LCD_IO_Initialized == 0) { ... } }{ ... } /** * @brief Writes data on LCD data register. * @param Data: Data to be written *//* ... */ void LCD_IO_WriteData(uint16_t Data) { /* Write 16-bit Reg */ FSMC_BANK3_WriteData(Data); }{ ... } /** * @brief Write register value. * @param pData Pointer on the register value * @param Size Size of byte to transmit to the register *//* ... */ void LCD_IO_WriteMultipleData(uint8_t *pData, uint32_t Size) { uint32_t counter; uint16_t *ptr = (uint16_t *) pData; for (counter = 0; counter < Size; counter+=2) { /* Write 16-bit Reg */ FSMC_BANK3_WriteData(*ptr); ptr++; }for (counter = 0; counter < Size; counter+=2) { ... } }{ ... } /** * @brief Writes register on LCD register. * @param Reg: Register to be written *//* ... */ void LCD_IO_WriteReg(uint8_t Reg) { /* Write 16-bit Index, then Write Reg */ FSMC_BANK3_WriteReg(Reg); }{ ... } /** * @brief Reads data from LCD data register. * @param Reg: Register to be read * @retval Read data. *//* ... */ uint16_t LCD_IO_ReadData(uint16_t Reg) { FSMC_BANK3_WriteReg(Reg); /* Read 16-bit Reg */ return FSMC_BANK3_ReadData(); }{ ... } LINK LCD /********************************* LINK AUDIO *********************************/ /** * @brief Initializes Audio low level. *//* ... */ void AUDIO_IO_Init(void) { I2Cx_Init(); }{ ... } /** * @brief DeInitializes Audio low level. * @note This function is intentionally kept empty, user should define it. *//* ... */ void AUDIO_IO_DeInit(void) { }{ ... } /** * @brief Writes a single data. * @param Addr: I2C address * @param Reg: Reg address * @param Value: Data to be written *//* ... */ void AUDIO_IO_Write(uint8_t Addr, uint8_t Reg, uint8_t Value) { I2Cx_Write(Addr, Reg, Value); }{ ... } /** * @brief Reads a single data. * @param Addr: I2C address * @param Reg: Reg address * @retval Data to be read *//* ... */ uint8_t AUDIO_IO_Read(uint8_t Addr, uint8_t Reg) { return I2Cx_Read(Addr, Reg); }{ ... } LINK AUDIO /***************************** LINK CAMERA ************************************/ /** * @brief Initializes Camera low level. *//* ... */ void CAMERA_IO_Init(void) { I2Cx_Init(); }{ ... } /** * @brief Camera writes single data. * @param Addr: I2C address * @param Reg: Reg address * @param Value: Data to be written *//* ... */ void CAMERA_IO_Write(uint8_t Addr, uint8_t Reg, uint8_t Value) { I2Cx_Write(Addr, Reg, Value); }{ ... } /** * @brief Camera reads single data. * @param Addr: I2C address * @param Reg: Reg address * @retval Read data *//* ... */ uint8_t CAMERA_IO_Read(uint8_t Addr, uint8_t Reg) { return I2Cx_Read(Addr, Reg); }{ ... } /** * @brief Camera delay. * @param Delay: Delay in ms *//* ... */ void CAMERA_Delay(uint32_t Delay) { HAL_Delay(Delay); }{ ... } LINK CAMERA /******************************** LINK I2C EEPROM *****************************/ /** * @brief Initializes peripherals used by the I2C EEPROM driver. *//* ... */ void EEPROM_IO_Init(void) { I2Cx_Init(); }{ ... } /** * @brief Write data to I2C EEPROM driver in using DMA channel * @param DevAddress: Target device address * @param MemAddress: Internal memory address * @param pBuffer: Pointer to data buffer * @param BufferSize: Amount of data to be sent * @retval HAL status *//* ... */ HAL_StatusTypeDef EEPROM_IO_WriteData(uint16_t DevAddress, uint16_t MemAddress, uint8_t* pBuffer, uint32_t BufferSize) { return (I2Cx_WriteMultiple(DevAddress, MemAddress, I2C_MEMADD_SIZE_16BIT, pBuffer, BufferSize)); }{ ... } /** * @brief Reads data from I2C EEPROM driver in using DMA channel. * @param DevAddress: Target device address * @param MemAddress: Internal memory address * @param pBuffer: Pointer to data buffer * @param BufferSize: Amount of data to be read * @retval HAL status *//* ... */ HAL_StatusTypeDef EEPROM_IO_ReadData(uint16_t DevAddress, uint16_t MemAddress, uint8_t* pBuffer, uint32_t BufferSize) { return (I2Cx_ReadMultiple(DevAddress, MemAddress, I2C_MEMADD_SIZE_16BIT, pBuffer, BufferSize)); }{ ... } /** * @brief Checks if target device is ready for communication. * @note This function is used with Memory devices * @param DevAddress: Target device address * @param Trials: Number of trials * @retval HAL status *//* ... */ HAL_StatusTypeDef EEPROM_IO_IsDeviceReady(uint16_t DevAddress, uint32_t Trials) { return (I2Cx_IsDeviceReady(DevAddress, Trials)); }{ ... } /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */