User Activity

 /* Enable write access to Backup domain */ PWR->CR1 |= PWR_CR1_DBP; while((PWR->CR1 & PWR_CR1_DBP) == RESET) { } /*Enable BKPRAM clock*/ __HAL_RCC_BKPRAM_CLK_ENABLE();   *(__IO uint32_t*)(0x38800000+36) = 12345678;run to here, DATA 12345678 is writt...
void ADC3_config(void){ AdcHandle.Instance     = ADC3;   if (HAL_ADC_DeInit(&AdcHandle) != HAL_OK) {  /* ADC de-initialization Error */  //Error_Handler(); } AdcHandle.Init.ClockPrescaler      = ADC_CLOCK_SYNC_PCLK_DIV4;   /* Synchronous clock mode,...
I can't the way in Demo samples.
Used to make source code for USB FS Virtual Com, the computer can't connect the device。Same way on STM32F407 chip, it is OK.Is there somebody can help me? Thanks!​