IRTIM Minimum Clock Frequency
Hi, is there a recommended minimum clock frequency to reliably run an RC5 transmitter with IRTIM?Thanks, Lance.
Ask questions, find answers, and share insights on STM32 products and their technical features.
Hi, is there a recommended minimum clock frequency to reliably run an RC5 transmitter with IRTIM?Thanks, Lance.
I’ve just started learning STM32 and I’m currently using the STM32F411E-Discovery board. I loaded the default code provided by the Board Selector in STM32CubeIDE and was trying to get a simple LED blink working. It works fine when using the internal ...
Hi,I have a STM32F103C8T6 configured to operate as an I2C slave device on I2C1. It operates as intended for 30-45 minutes before the I2C hangs indefinitely with a HAL I2C state code of 0x2A = HAL_I2C_STATE_BUSY_RX_LISTEN. In this state, further I2C t...
I’ve been experimenting with STM32 microcontrollers for a battery-powered IoT project. While I’ve tried different sleep modes, I’m still struggling to balance performance and battery life.Has anyone here implemented effective strategies for ultra-low...
Hi, Im new to STM32 and writing a bare metal interrupt based i2c library. For some reason addr bit clears itself automatically even though im not reading sr1 and sr2. I also have problems with debug mode, if i decide to step over the function that se...
I am trying to make a guitar loop pedal with my nucleo-l476rg board. It has 1MB of flash and I am trying to write and read from bank 2 only as it is the bank of memory I want to use for storing recorded audio. I currently have an active buffer set up...
here is the code I am trying uint8_t whoami_reg[1];whoami_reg[0] = 0x4F | 0x80; // read commanduint8_t whoami_val[1];whoami_val[0] = 0; HAL_GPIO_WritePin(GPIOA, GPIO_PIN_4, GPIO_PIN_RESET); // CS lowHAL_SPI_Transmit(&hspi1, whoami_reg, 1, HAL_MAX_DEL...
Hi everyone,I've built a STM32H745ZIT6-based board. The microcontroller uses the LDO to generate VCORE. The idea of this board was to build a standalone solution based on my Nucleo-H745ZI-Q project.I did prepare a very simple project, where I toggle ...
I am trying to erase a sector of the flash memory on my STM32H503RB. I have successfully validated that I can write to the flash, but when I attempt to erase the sector that I wrote, the contents that I wrote stay the same. I have a feeling that I ...
Hi,MasterMCU: STM32H743IIQuestion:Both FDCAN channels in the MCU are currently in use. I now intend to reset each FDCAN instance (i.e., reset all its registers) during its respective bus-off event, and then reinitialize the instance. Resetting all ...