Posted on August 29, 2017 at 21:07Hello, I'am trying to use the TIM5 in Slave-(and Master-)Mode to drive another Timer (TIM1 to Trigger a DMA-Request on each Period).When I configure TIM5 in Triggermode TI2FP2 on Stm32F4Discovery Board (PA1 and this...
Posted on August 26, 2016 at 19:39Hardware / Configuration: STM32F407vgt6 @168MHz USB3300 ULPI (waveshare) @24MHz USB HS + DMA Bulk Transfer (IN-Transfer) Modified cdc-Example (STM32_USB-Host-Device_Lib_V2.1.0) libusb-1.0.19-10903 Hello , I tr...
Posted on May 13, 2016 at 15:49
Hello,
I tried to use the TIM2/3/4/5 Input-Capture with DMA (''TIM_DMA_CC1'') to trigger a DMA-Transfer (this writes to a GPIO-Port for parallel Data-transmission) but it just Work with DMA2, not DMA1.
...
Posted on August 30, 2017 at 14:07OK Solved : HAL_TIM_OnePulse_ConfigChannel() needs to be Called , because the Input-pin is neither configured as Output or Input.CCMR1->CC2S was on '00' instead of '01' which is TI2FP2-Configuration
Posted on August 30, 2017 at 11:10 Initialization-Code : HAL_Init(); SystemClock_Config(); MX_GPIO_Init(); MX_TIM5_Init(); MX_TIM1_Init(); HAL_TIM_IC_Start_IT(&htim1,TIM_CHANNEL_1);// this line takes no difference in problem HAL_TIM_I...
Posted on August 08, 2017 at 19:55Thanks for that.I Had a similar Problem with STM32F429 + ULPI + USB2.0 in Device-Mode.With CubeF4 1.13.1 all works Fine. After upgrade to 1.16.0 a new VCP-Project on the STM32429I-EVAL with DMA was not Working. I ...
Posted on August 29, 2016 at 18:37Eclipse didn't find ''make'' (that was the second error in your error-list) loacte your compiler and check if a there is a ''Make'' avaliable (may be its ''cs-make'' so you just need to change the build-command in t...
Posted on August 29, 2016 at 10:18 Thanks, the Problem is solved. When I use the ''DCD_EP_Tx()'' Function for a larger Block (3*1024) no Errors occur on the Bus.