2020-05-13 12:56:26 -06:00
2020-05-13 11:58:01 -06:00
2020-05-12 17:00:55 -06:00
2020-05-11 09:03:23 -06:00
2020-05-11 09:03:23 -06:00
2020-05-12 17:00:55 -06:00
2020-05-11 09:03:23 -06:00
2020-05-11 09:03:23 -06:00
2020-05-12 16:51:54 -06:00
2020-05-13 12:56:26 -06:00
2020-05-11 09:03:23 -06:00
2020-05-11 09:03:23 -06:00
2020-05-13 11:58:01 -06:00

Azure RTOS UsbX

A high-performance USB host, device, and on-the-go (OTG) embedded stack, Azure RTOS USBX is fully integrated with Azure RTOS ThreadX and available for all Azure RTOS ThreadXsupported processors. Like Azure RTOS ThreadX, Azure RTOS USBX is designed to have a small footprint and high performance, making it ideal for deeply embedded applications that require an interface with USB devices.

Documentation

Documentation for this library can be found here: http://docs.microsoft.com/azure/rtos/usbx

Building and using the library

Prerequisites

Install the following tools:

Cloning the repo

$ git clone https://github.com/azure-rtos/usbx.git

Building the threadx static library

Each component of Azure RTOS comes with a composible CMake-based build system that supports many different MCUs and host systems. Integrating any of these components into your device app code is as simple as adding a git submodule and then including it in your build using the CMake command add_subdirectory().

While the typical usage pattern is to include threadx into your device code source tree to be built & linked with your code, you can compile threadx as a standalone static library to confirm your build is set up correctly.

$ cmake -Bbuild -DCMAKE_TOOLCHAIN_FILE=cmake/cortex_m4.cmake -GNinja .

$ cmake --build ./build

Repository Structure and Usage

Branches & Releases

The master branch has the most recent code with all new features and bug fixes. It does not represent the latest General Availability (GA) release of the library.

Releases

Each official release (preview or GA) will be tagged to mark the commit and push it into the Github releases tab, e.g. v6.0-rel.

Directory layout

- cmake
- common
  - inc
  - src
- ports
  - cortex_m0/gnu
    - inc
    - src
  - cortex_m3/gnu
    - inc
    - src
  - cortex_m4/gnu
    - inc
    - src
  - cortex_m7/gnu
    - inc
    - src
- samples

Contribution, feedback and issues

If you encounter any bugs, have suggestions for new features or if you would like to become an active contributor to this project please follow the instructions provided in the contribution guideline for the corresponding repo.

For general support, please post a question to Stack Overflow using the threadx and azure-rtos tags.

Description
No description provided
Readme 8.5 MiB
Languages
C 99.4%
CMake 0.6%