Month: August 2021

  • How to add CMSIS DSP Library to STM32 Cube IDE Project for stm32l476vg

    To add CMSIS DSP library in you stm32cube project. You can follow the steps written on ST’s website Configuring DSP libraries on STM32CubeIDE I have also made a video. In this video. I have shown steps to add the arm_math.h header file. You need to configure the stm32 cube ide.

  • How to write german umlauts in MS Word

    To write umlauts ä – a Ä – A ü – u Ü – U To write ess tset ß Write umlaut using ALT codes Umlaut Alt + code Ü Alt + 0220 ü alt + 0252 ä alt + 0228 Ä alt + 0196 Ö alt + 0214 ö alt + 0246 ß alt…

  • How to use LCD Driver of STM32L476VGT on STM32L476 Discovery

    To use the internal LCD driver of stm32l476; the best way is to use the LCD driver provided in the BSP. It is located inside the STM32Cube_FW_L4_V1.16.0 repository. Go to the..\STM32Cube\Repository\STM32Cube_FW_L4_V1.16.0\Drivers\BSP\STM32L476G-Discovery Copy the stm32l476g_discovery.c, stm32l476g_discovery.h, stm32l476g_discovery_glass_lcd.c and stm32l476g_discovery_glass_lcd.h Paste the files in your project. Include the header file in your project.#include “stm32l476g_discovery_glass_lcd.h” After this you…