I have one of the newer STM32H743 Nucleo development boards and I'm having issues getting the VCP enumerating. I know I'll need to add some code to transmit and recieve data, but is there anything that I should need to change with the initialization ...
Posted on September 27, 2016 at 15:54I'm using System Workbench for STM32 and working with an STM32F7 with the HAL libraries.I'm working with a VCP and I'm looking at capturing the input buffer in the usbd_cdc_if.c and sending it to a parsing routin...
Posted on September 26, 2016 at 23:52I'm looking at bringing up a VCP on an STM32F7 using the Nulceo-F746ZG development board.Now, after running the CubeMX tools it seems all the magic is happening in the CDC_Receive_FS and CDC_Transmit_FS functions...
Posted on November 11, 2015 at 22:54
My end goal is that I want to count pulses that occur on one of the inputs on the STM32F4 Discovery dev board and I'm having issues.
I found this post that seems to be doing what I want, but it's not q...
Posted on August 19, 2015 at 21:34Is there a general programmer reference available for the STM32? For example, basic functions like Delays, Timers, GPIO, PWM, etc?
Posted on September 27, 2016 at 19:22 The original post was too long to process during our migration. Please click on the provided URL to read the original post. https://st--c.eu10.content.force.com/sfc/dist/version/download/?oid=00Db0000000YtG6&i...
Posted on November 12, 2015 at 15:37After adding in: TIM_TIxExternalClockConfig(TIM4, TIM_TIxExternalCLK1Source_TI1, TIM_ICPolarity_Rising, 0);It seems to be working properly. If this is the incorrect way of trying to count the number of posedge pul...
Posted on August 24, 2015 at 16:41Clive, Revisiting this again, I changed up the timing on how this is working and I managed to expose something but I'm not entirely sure how to handle it. The way the timing works:!Reset is high and both BOOT0 and B...
Posted on August 19, 2015 at 21:28So, after the BOOT pins are set in the proper states a reset needs to be called in order to ensure it goes into DFU mode?Would the most appropriate method be to just call the ''Reset_Handler();'' function, or do I n...