Add hardware CRC support to STM32G4

pull/15392/head
Augusto Zanellato 2023-03-15 16:48:39 +01:00
parent 5801b1677d
commit 75513154d2
2 changed files with 4 additions and 1 deletions

View File

@ -136,6 +136,8 @@ struct qspi_s {
//#include "common_objects.h" //#include "common_objects.h"
#include "gpio_object.h" #include "gpio_object.h"
#define HAL_CRC_IS_SUPPORTED(polynomial, width) ((width) == 7 || (width) == 8 || (width) == 16 || (width) == 32)
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@ -3018,7 +3018,8 @@
"MPU", "MPU",
"SERIAL_ASYNCH", "SERIAL_ASYNCH",
"TRNG", "TRNG",
"CAN" "CAN",
"CRC"
] ]
}, },
"MCU_STM32G431xB": { "MCU_STM32G431xB": {