Skip to content
View elmot's full-sized avatar

Organizations

@JetBrains
Block or Report

Block or report elmot

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. barologger barologger Public

    C 1 1

  2. stm32f3-cpp-example stm32f3-cpp-example Public

    C++ example for embedded development

    C 7 1

  3. l4-thereminvox l4-thereminvox Public

    Digital Thereminvox - contactless musical instrument - made of STM32 MCU and VL53L1X range sensors

    C 1

  4. CMakeLists.txt template for ARM GCC ... CMakeLists.txt template for ARM GCC projects
    1
    cmake_minimum_required(VERSION 3.17)
    2
    set(CMAKE_SYSTEM_NAME Generic)
    3
    set(CMAKE_SYSTEM_VERSION 1)
    4
    # specify cross compilers and tools
    5
    set(CMAKE_C_COMPILER arm-none-eabi-gcc)
  5. CMake template for dual-core STM32 MCU CMake template for dual-core STM32 MCU
    1
    # CMakeLists.txt for dual-core STM32H7xx MCUs and CLion IDE
    2
    #
    3
    # DISCLAIMER: Experimental version, based on undocumented assumptions how STM32CubeMX works
    4
    # DISCLAIMER: THIS FILE IS PROVIDED UNDER "The Unlicense" LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND
    5
    #