Merge pull request #15392 from augustozanellato/stm32g4_hw_crc

Add hardware CRC support to STM32G4
pull/15400/head
Martin Kojtal 2023-04-11 14:55:43 +01:00 committed by GitHub
commit ce13e1cb6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

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

View File

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