Open
Description
Lots of warnings: compound assignment with 'volatile'-qualified left operand is deprecated [-Wvolatile]
Fixes like:
/src/rp2_common/cmsis/stub/CMSIS/Core/Include/mpu_armv7.h#L210
- MPU->CTRL &= ~MPU_CTRL_ENABLE_Msk;
+ MPU->CTRL = MPU->CTRL & ~MPU_CTRL_ENABLE_Msk;