User Activity

I 'am new to STM32WL & CAN protocol interfacing! I'm currently working with the STM32CubeMX platform & some examples are given for CAN interfacing for other variants of STM32 MCUs.But there is no CAN interfacing option available in STM32WL. So I'm un...
/* Flash Init */ uint32_t GetPage(uint32_t Addr) { uint32_t page = 0; if (Addr < (FLASH_BASE + FLASH_BANK_SIZE)) { /* Bank 1 */ page = (Addr - FLASH_BASE) / FLASH_PAGE_SIZE; } else { /* Bank 2 */ page = (Addr - (FLASH_BA...
Kudos from