This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

uVision & include path (newbie)

Hi,

I just downloaded the STM32F10x_StdPeriph_Lib_V3.3.0 from ST and want to include it in the uVisions include-path section.

uVision have a 'stm32f10x.h' file associated and the entry point to the downloaded C-library also goes by the name 'stm32f10x.h' but is newer.

How do I ensure that uVision uses the most recent stm32f10x.h file I added myself?

sorry for the trivial question

Thanks
Thomas

Parents
  • Its not a trivial question. Dealing with the 'new' STM library can be a pain.

    Since I don't rely on IDE include paths, I localize all routines and headers right into my project directory so I use #include "STM_file.h" and not #include <STM_file.h>.

    I'm sure others out there might help you though.

    --Cpt. Vince Foster
    2nd Cannon Place
    Fort Marcy Park, VA

Reply
  • Its not a trivial question. Dealing with the 'new' STM library can be a pain.

    Since I don't rely on IDE include paths, I localize all routines and headers right into my project directory so I use #include "STM_file.h" and not #include <STM_file.h>.

    I'm sure others out there might help you though.

    --Cpt. Vince Foster
    2nd Cannon Place
    Fort Marcy Park, VA

Children