• STM32 use of HAL library in project
    Hi guys, So I used an example of the HAL library to configure an input capture with a timer on a stm32f373vct6 microcontroller. Now I want to include this example in my project, but when I do so and...
  • stm32 HAL library for STM32105
    Hi All, I would like to start a new project with STM32F105RC and keil MDK professional. I developed many projects with STM32F407 and Keil MDK professional starting from cubeMx utilities. But...
  • stm32 HAL library
    Hi All, I see from the ST site that they released on 09-March-2015 "STM32F4xx HAL Drivers" version 1.3. In Keil.STM32F4xx_DFP.2.4.0.pack, actually used, the HAL library version is 1.1 dated June...
  • Error: L6218E: Undefined symbol
    Hi, I'm using uVision 5 to develop a firmware, however I can't get the linker to find one of my functions. When building, I get this error: Error: L6218E: Undefined symbol three() I have...
  • Linker complains Undefined Symbol
    Hi, I have a c program that looks like bellow. In my main.c file, I have included: #include "test.h" main(){ test_init(); } in my test.h file, I have a declaration static void test_init(...