STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Atollic C++ implementation

Hello Mr./Ms.I need to implement some libraries e.g. Arduino or other open source code.So I tried to import in Atollic a C++ librarie but returns an error when I instance a class.It's possible to do that or only C moddules are supported?I generate co...

Resolved! Installation problem Openocd on linux for STM32 processors

I installed openocd for debugging STM processors according to this blog: https://www.carminenoviello.com/2015/07/13/started-stm32f746g-disco/(Building OpenOCD). It worked fine on my old workstation, as it did on my laptop. On my new workstation I can...

MMett by Associate III
  • 895 Views
  • 2 replies
  • 1 kudos

Stm32f0 IAP Bootloader

Hi guys,Bootloader program is doing jump. But my application code interrupts don't work.HAL_Delay () does not work.HAL_GPIO_TogglePin (GPIOA, PA0_LED_Pin);HAL_Delay (1000); // IS NOT WORKwhile (i ++ <1500000) {} // THIS WORKi = 0;So the led is blinki...

Hi world! by Associate III
  • 901 Views
  • 8 replies
  • 0 kudos

Fail to find target for NUCLEO-L412KB in Keil

I am using NUCLEO-L412KB dev board. It is said online that Keil can be used as the IDE for this board. However, when I download KEIL5 and also download the package for stmL4 series, I failed to find a suitable target for my board when I tried to crea...

0690X000006CCwJQAW.png
ZYang by Associate
  • 516 Views
  • 4 replies
  • 0 kudos

Resolved! Flash Size of STM32F765VGT6

I am using the MCU STM32F765VGT6 for my product. The FLASHSIZE_BASE tells me the size of the flash is 1024 kBytes. However, in the IAR workbench linker script (.icf) files, generated through STM32 Cube, the flash address spreads across 2 MBytes. Can ...

JSing by Associate
  • 622 Views
  • 3 replies
  • 0 kudos

CAN Filter

I set on a slave CAN_FilterInitStructure.CAN_FilterNumber = 0; CAN_FilterInitStructure.CAN_FilterMode = CAN_FilterMode_IdMask; CAN_FilterInitStructure.CAN_FilterScale = CAN_FilterScale_32bit; CAN_FilterInitStructure.CAN_FilterIdHigh = ...

Bug in HAL_SPI F3 V1.5 Library HAL_SPI_Receive_DMA

Posted on August 05, 2016 at 05:17The implementation of HAL_SPI_Receive_DMA() assumes that the Transmit is also DMA and uses HAL_SPI_TransmitReceive_DMA() internally which tries to write to a non-existent Tx DMA transfer complete callback (line 1622...