@@ -70,6 +70,8 @@ extern "C" {
70
70
#define HAL_OPAMP_MODULE_ENABLED
71
71
#define HAL_OSPI_MODULE_ENABLED
72
72
#define HAL_PCD_MODULE_ENABLED
73
+ #define HAL_PKA_MODULE_ENABLED
74
+ #define HAL_PSSI_MODULE_ENABLED
73
75
#define HAL_PWR_MODULE_ENABLED
74
76
#define HAL_QSPI_MODULE_ENABLED
75
77
#define HAL_RCC_MODULE_ENABLED
@@ -396,6 +398,14 @@ in voltage and temperature.*/
396
398
#include "stm32l4xx_hal_pcd.h"
397
399
#endif /* HAL_PCD_MODULE_ENABLED */
398
400
401
+ #ifdef HAL_PKA_MODULE_ENABLED
402
+ #include "stm32l4xx_hal_pka.h"
403
+ #endif /* HAL_PKA_MODULE_ENABLED */
404
+
405
+ #ifdef HAL_PSSI_MODULE_ENABLED
406
+ #include "stm32l4xx_hal_pssi.h"
407
+ #endif /* HAL_PSSI_MODULE_ENABLED */
408
+
399
409
#ifdef HAL_PWR_MODULE_ENABLED
400
410
#include "stm32l4xx_hal_pwr.h"
401
411
#endif /* HAL_PWR_MODULE_ENABLED */
@@ -464,7 +474,7 @@ in voltage and temperature.*/
464
474
#ifdef USE_FULL_ASSERT
465
475
/**
466
476
* @brief The assert_param macro is used for function's parameters check.
467
- * @param expr: If expr is false, it calls assert_failed function
477
+ * @param expr If expr is false, it calls assert_failed function
468
478
* which reports the name of the source file and the source
469
479
* line number of the call that failed.
470
480
* If expr is true, it returns no value.
0 commit comments