STM32 MCUs products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32:YCbCr to RGB565

Posted on March 09, 2017 at 06:01Hi I am working on STM32F769i-Eval board.I am connecting analog camera with CVBS output to ADV7180 chip.Output of ADV7180 is YCbCr and provided to MCU as input.MCU accepts YCbCr data but to display on the LCD i need ...

question about RCC_CCIPR of STM32L431

Posted on March 09, 2017 at 04:08HI,i found that some peripheral can select clock source  by  change RCC_CCIPR.but both ADC and CLK48M,default clock source is ''No clock selected'',it can work normal also.why?

0690X00000606TeQAI.png
cai.bai by Associate II
  • 112 Views
  • 0 replies
  • 1 kudos

No QFP32 Parts with > 64 kiByte in the wild

Posted on March 07, 2017 at 11:40When looking for  QFP32 part with > 64 kiB, the MCU Finder brings up STM32L0[7|8]2KZT. However the web page of these parts shows no distributor availability. Can we expect these parts available anytime (soon)?

Resolved! DCMI + FMC on STM32F7

Posted on March 08, 2017 at 17:57Hello!From a cursory glance at the datasheet it seems like there are many pin conflicts between DCMI and FMC on the F7. Does that mean they cannot be used at the same time?Isn't that a bit of an oversight, considerin...

USART missing characters stm32f10x

Posted on March 07, 2017 at 21:16Hi,Here is my transmission code:void USART1_IRQHandler(void){  if (USART_GetITStatus(USART1, USART_IT_TXE) != RESET){        if(Counter<=65 && TX==1){            if(MESSAGE[Counter]=='\0'){            USART_ITConfig(...

0690X00000606UzQAI.png
parisa by Senior
  • 232 Views
  • 4 replies
  • 0 kudos

hard fault handler (main load)

Posted on March 06, 2017 at 18:38Hi, I have a problem when I try to load my program. I use the arm compiler (armcc) with a stm32l073.When I use my debugger I have an Hard Fault handler every times before the main.I use a standard statup file (startu...

SDcard used like FIFO its possible ?

Posted on March 08, 2017 at 12:11Hi,i have a little project working on stm32f415, with a task producer and a task consumer, between i want put a SdCard ( with fat ) like cache, because if something going wrong during trasmission or consumer is busy ...

Marco1 by Associate II
  • 130 Views
  • 2 replies
  • 0 kudos

3 USART DMA on STM32F405

Posted on March 07, 2017 at 02:29Hi,I'd like to use 3 USART DMAs on STM32F405.If I use only 1 USART DMA, it works well.But if I initialize 3 USART DMA in 1 workspace, only the last one works.Below are my configurations.#define USARTx USART2#define U...