STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Option bytes in firmware

Hello,Device: STM32L443CCUI am trying set option bytes values in firmware as a ROM constants. The idea is firmware will have option bytes embedded, and when firmware hex will be flashed, it will also flash new option bytes.So I did following implemen...

STM32 stack and heap

Hello I want to understand allocating stack and heap size, I am using stm32f767zi with 512Kbyte RAM memory (0x80000 bytes) so what I understand is this memory should be split between only the stack and heap (if there is something else please tell me)...

STM32F37x/STM32F0x I2C Timing Configuration Tool

Posted on April 29, 2013 at 18:43Hello everyone, I'm writing to ask if anyone could provide a valid link to the STM32F37x/STM32F0x I2C Timing Configuration Tool which application note AN4235 refers to.  I've looked everywhere I know of on the site a...

gregg by Associate II
  • 1498 Views
  • 5 replies
  • 0 kudos

On what address do the Option Bytes on STM32F446 reside on?

I want to read the Option Bytes values from my STM32F446 in order to debug strange behavior. On what addresses do they reside? According to the Reference Manual they reside on addresses 0x1FFFC000 and 0x1FFFC008, but when I look at the implementation...

arnold_w by Senior II
  • 2793 Views
  • 19 replies
  • 0 kudos

Timer Update Interrupt not working

I use timer 6 with stm32F7 MCU. The project is generated with CubeMx.Here are the initialize function:static void MX_TIM7_Init(void) { TIM_MasterConfigTypeDef sMasterConfig = {0}; htim7.Instance = TIM7; htim7.Init.Prescaler = 0; htim7.Init.Co...

vtran1 by Associate II
  • 463 Views
  • 2 replies
  • 0 kudos

[SOLVED] -- very simple encoder ---

Here my simple code to use the encoder on STM32F746.I have used the PI2 and PI3 of the STM32F746G-DISCO for input and volume control on an external DAC.Probably someone could reduce the lines of code and obtain the same result.unsigned int Enc_dir;...