STM32F207 CAN2 bootloader
in datasheet :
Boot modes At startup, boot pins are used to select one out of three boot options: Boot from user Flash memory Boot from system memory Boot from embedded SRAM The boot loader is located in system memory. It is used to reprogram the Flash memory by using USART1 (PA9/PA10), USART3 (PC10/PC11 or PB10/PB11), CAN2 (PB5/PB13), USB OTG FS in Device mode (PA11/PA12) through DFU (device firmware upgrade).
I want to use a bootloader on CAN2, but also ethernet RMII - the problem is that PB13 is used for CAN2_TX and ETH_RMII_TXD1
the solution is to use for CAN2_TX PB6 - will the bootloader work on PB5, PB6 instead of PB5, PB13?
I have a LQFP100 package and I can't remap ETH_RMII_TXD1.
