Skip to content

Provides a set of applications for STM32C0xx series based on the STM32 Classic Core Middleware libraries.

License

Notifications You must be signed in to change notification settings

STMicroelectronics/stm32c0-classic-coremw-apps

Repository files navigation

STM32C0 Classic Core Middleware (CoreMW) MCU Firmware Package

latest tag

freertos usb_device usb_host

Description

STM32Cube is an STMicroelectronics original initiative to ease developers' life by reducing efforts, time and cost.

Classic CoreMW is a collection of middleware stacks and associated applications allowing RTOS management, File System operations and connectivity through USB and Ethernet. It is based on:

  • ST's proprietary stacks: ST USB Device and ST USB Host
  • Third parties' stacks: FreeRTOS, FatFS, FatFS and LwIP

Note

  • FreeRTOS Middleware and examples are delivered on STM32C0 in the form of X-CUBE-FREERTOS that is available from st.com, from GitHub and from STM32CubeMX.

  • FatFS and LwIP examples are not provided in this package.

This package is exclusively published on GitHub (and is neither available in STM32CubeC0, STM32CubeMX nor STM32CubeIDE available on www.st.com). It contains the integration of the Classic CoreMW stacks with STM32C0 devices, allowing users to get quick access to pre-built projects integrating them.

Note

  • The repository containing this package has been created using the git submodule command. Please refer to the "How to use" section explaining how to clone this repository and how to get the latest updates.

List of applications

The STM32C0 Classic CoreMW package contains the following applications:

Middleware Application Short Description
ST USB Device CDC_Standalone Shows how to use USB device application based on the Device Communication Class (CDC) following the PSTN subprotocol
ST USB Device HID_Standalone Shows a typical application where the STM32 MCU is enumerated as a HID device
ST USB Host CDC_Standalone Shows how to use USB host application based on the Communication Class (CDC) to send/receive data to/from host from/to device
ST USB Host HID_Standalone Shows how to use USB host application based on the Human Interface Class (HID) to connect a mouse or a keyboard

Note

  • All examples are provided only with pre-configured projects for EWARM toolchain.
  • Projects in this package have not been generated with STM32CubeMX (i.e., no .ioc files are delivered).

Boards available

  • STM32C0
    • [NUCLEO-C071RB]

Development Toolchains and Compilers

  • IAR Embedded Workbench for ARM (EWARM) toolchain 9.20.1 + ST-LINK, patch available here
    • This patch supports NUCLEO-C071RB devices

Dependencies

This package has been developed and tested using the list of components detailed in the table below.

Name Version
Cortex-M CMSIS V5.9.0
STM32C0xx CMSIS V1.2.0
STM32C0xx HAL V1.2.0
BSP STM32C0xx NUCLEO V1.1.0
BSP Common V7.3.0
STM32 USB Device Library V2.11.3
STM32 USB Host Library V3.5.2

How to use

This repository intrinsically contains the applications (projects and source files) located under folder ./Projects. It also contains the CMSIS Core files under folder ./Drivers/CMSIS/Include for size optimization reason. Other dependencies such as the HAL and BSP drivers, or the middleware libraries themselves are linked using the git submodule command. Please check the instructions below for a proper use.


Note


  • To clone this repository along with the linked submodules, option --recursive has to be specified as shown below.
git clone --recursive https://github.com/STMicroelectronics/stm32c0-classic-coremw-apps.git
  • To get the latest updates, issue the following two commands (with the repository stm32c0-classic-coremw-apps as the current working directory).
git pull
git submodule update --init --recursive

Note

  • If GitHub "Download ZIP" option is used instead of the git clone command, then the required components have to be collected manually by the user.

Known Limitations

  • None

Troubleshooting

Please refer to the CONTRIBUTING.md guide.