Forum Posts
NUCLEO-L452RE-P problem with PC6
Hi, I have problem with NUCLEO-L452RE-P, the PC6 pin does not respond to HAL commands, other pins on Port C works, is there any way how to check what the problem might be?
Is there a way to read the vendor ID in STM32F103 series?
If you read the unique ID (96bits), you'll see 12 bytes, but you won't know if the vendor is distinguishable or not. Also, DBGMCU_IDCODE is not known as 0xFFFF. Please let me know how to check the Vendor ID.
Is it possible that you change „asm“ to „__asm“ in generated code?
That way it would compile with compiler setting -std=c99.Currently when I generate Code for STM32L451 with MX in STM32CubeIDE 1.6.0, syscalls.c containsregister char * stack_ptr asm("sp");This does not work with c99. Changing it toregister char * sta...
FFT and ZCD algorithm implementation
Hello,I am using STM32L072xx, Core: Arm® 32-bit Cortex®-M0+ with MPU– From 32 kHz up to 32 MHz max.– 0.95 DMIPS/MHzI have the following questionCan I implement FFT algorithms to read ADC values?How can I implement ZCD(zero crossing detection) algorit...
Can you please update RM0394 (mismatches regarding DMA configuration)?
There are some mismatches between Figure 25/26 and Table 41/42 of RM0394, rev 4.For instance, UART4_RX is DMA2, channel 4 according to figure 26 but DMA2, channel 5 according to Table 42. Or DFSDM1_FLT1 is DMA1, channel 5 (figure 25) vs. DMA1, channe...
C++ and linker script
Hello All,I am using an STM32f767ZI device. I wrote a c++ program that has a base io class in which a gpio peripheral class inherits from the base io class. I call HAL_GPIO_TogglePin, HAL_GPIO_Init and HAL_GPIO_WritePin in the gpio class methods a...
How to check the GPRS HTTP commands in stm32 using UART
Hi, May I know how to check the GPRS HTTP commands are continuously working or not in stm32f103c8T6 using UART and How to put those HTTP commands in while loop. Plz help me how to do this.Thank you
STM32H7 SPI question - what is SPI1 CS on NUCLEO-H743ZI2 ?
User manual of NUCLEO-H743ZI2 says that SPI1_CS pin is pin 16 on CN7 (D10) which is PD14 of the MCU.But in CubeMX, pin PD14 does not have any function related to SPI1.What does it mean? Should this pin be set up as GPIO output and driven manually?So...