STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! I am trying to transfer a character using uart in stm32f030 to pc , done with initialization with uart config there is no errors but I am not able to see data sent .please help

void uartInit(){ USART_InitTypeDef uartInitStruct; GPIO_InitTypeDef gpioInitStruct; RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); gpioInitStruct.GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10; gpioIni...

ag n.1 by Associate II
  • 1403 Views
  • 7 replies
  • 0 kudos

Looking to make a microtonal music keyboard. I would like to find a STM32 lay out for a standard, midi, with velocity sensing keys (timing between two contacts per key) keyboard and with the C program that I can use as a guide to modify for my use.

Any Algorithm for scanning, timing velocity, and or to midi would help. I could do the matric lay out. I do not want to reinvent the Wheel if posable.Thank you, ƒg.

fgilm.1 by Associate II
  • 420 Views
  • 0 replies
  • 0 kudos

Resolved! Error in RM0432 Rev 9 for MCOSEL[3:0]: Microcontroller clock output ? EDIT: Sorry, no error in the manual.

In the manual P 263:Bits 27:24 MCOSEL[3:0]: Microcontroller clock output Set and cleared by software. 0000: MCO output disabled, no clock on MCO 0001: SYSCLK system clock selected 0010: MSI clock selected. 0011: HSI16 clock selected. 0100: HSE clock ...

About starting and stopping a timer by an encoder timer

Incremental encoders are known to have problems for speed measurement at low speeds. For this, period measurement at low speeds is recommended.The following statement is taken from RM0440 page 1158. What I want to do here is to start another timer in...

0693W00000LxdfeQAB.png

Resolved! STM32F4 DMA FIFO + SPI_TX = FIFO error, but work

Good afternoon! I am trying to establish the transmission of data via SPI to the display with DMA. The transmission is working, the display is completely painted over, but the FIFO error flag is set in the DMA registers.MCU: STM32F401CEU6 alignas(32)...

DVahr.1 by Associate II
  • 1627 Views
  • 4 replies
  • 0 kudos

bxCan Filtering

I've been reading several forums posts about filtering, and other resources such as:https://community.st.com/s/question/0D50X00009XkfSlSAJ/can-filtershttps://blog.csdn.net/flydream0/article/details/52317532I get the gist of this.CAN_FilterIdHigh is t...