Search Results

Search results 1-2 of 2.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Sorry for late reply, I have successfully built libopencm3. Here is my solution (it's not perfect, but it seems to work): XML Source Code (84 lines)It only works for STM32F1 now and needs to be modified to build for other targets. Quote from awneil: “I thought Segger just uses the GCC Compiler ? ” SES comes bundled with both GCC and Clang, but as far as I know it doesn't provide GCC-compatible frontend. gcc/arm-none-eabi/bin/cc1 is indeed GNU C17 (GCC) version 8.3.1 20190703 (release) [gcc-8-bra…

  • I'm trying to build a simple blinker hello world project using libopencm3. It is a big complicated project and it's using Makefile to build. So far I tried compiling it with SEGGER compiler as CC parameter for the Makefile and creating a Library project in SES importing all the code that I need, but couldn't get it built. My target microcontroller is STM32F103C8T6 and the code is based on this example: C Source Code (18 lines)What would be the correct approach to compile this in SES using libope…