User Activity

There isn't any PC14 PC15. Is it really inaxessible on this MCU and I'm have to find suitable HSE crystal in order to get high-presition RTC?
My timer config:  RCC_APB1ENR = RCC_APB1ENR_TIM3EN;  TIM3_CR1 = (uint32_t)(TIM_CR1_CKD_CK_INT | TIM_CR1_CMS_CENTER_3);  TIM3_CR1 &= ~TIM_CR1_UDIS;  TIM3_CR2 &= ~TIM_CR2_CCDS;  TIM3_ARR = (uint32_t)10000;  TIM3_DIER = (uint32_t)(TIM_DIER_CC1DE | TIM_D...