mirror of https://github.com/ARMmbed/mbed-os.git
Add hardware CRC support to STM32G4
parent
5801b1677d
commit
75513154d2
|
@ -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
|
||||||
|
|
|
@ -3018,7 +3018,8 @@
|
||||||
"MPU",
|
"MPU",
|
||||||
"SERIAL_ASYNCH",
|
"SERIAL_ASYNCH",
|
||||||
"TRNG",
|
"TRNG",
|
||||||
"CAN"
|
"CAN",
|
||||||
|
"CRC"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"MCU_STM32G431xB": {
|
"MCU_STM32G431xB": {
|
||||||
|
|
Loading…
Reference in New Issue