Skip to content

Planet911/m-stack

 
 

M-Stack: USB Stack for USB-FS PIC MCUs

About

A USB device stack is the software necessary to drive the USB device peripheral hardware on a microcontroller (MCU) or other device. Typically a USB peripheral only supports the transaction level and below of the USB protocol. Enumeration and transfers are left to the firmware to implement. The Microchip PIC line of microcontrollers work exactly this way.

M-Stack is a functional, well-documented, open source implementation of a USB stack for Microchip PICs which have the full-speed (12Mbit/s) USB peripheral. That includes numerous PIC 16F, 18F, 24F, and 32MX/MK/MM Microcontrollers.

M-Stack performs the following operations:

  • USB device hardware initialization
  • USB interrupt handling
  • Management of the serial interface engine SIE
  • Management of endpoints
  • Fragmentation and reassembly of control transfers
  • Handling and sending standard setup requests
  • Enumeration

The following device classes are supported:

  • HID - Human Interface Device
  • Mass Storage Class (MSC) with MMC/SD card support
  • Vendor WCID - Silent install plug & play USB FS comms via WinUSB / libusb
  • CDC-ACM - Communication Device Class - Abstract Control Model

Other features include:

  • Clean, well-documented examples for both device and PC-host (libusb)
  • Fast bootloader for PIC24 and PIC32MX

While having a working USB stack is of great benefit when starting a USB project, know that there is no substitute for actually knowing the details of how USB works. The USB specification should be consulted frequently when creating a USB device.

Home

This project was forked from: http://www.signal11.us/oss/m-stack/

License

This software is dual-licensed under the GNU Lesser General Public License (LGPL) version 3.0 and the Apache License, version 2.0. It may be used under the terms of either one of these licenses as seen fit. It may be used in commercial and open hardware projects so long as the conditions of one of these licenses can be met.

Some files under a different license, see LICENSE-3rdParty.txt

Supported hardware

M-Stack has currently been tested on PIC16F, PIC18F, PIC24F and PIC32MX devices. Microchip has obviously made a conscious effort to make the register-level interfaces to their USB peripherals as similar as possible across MCUs and even across MCU families. While many devices should be able to be easily supported with this software, there are often times small differences which need to be worked out, the biggest of which being buffer descriptor and data buffer locations with respect to the DMA capabilities of the microcontroller being used.

The following MCU's and configurations have been tested:

  • PIC32MX460F512L - PIC32 USB Starter Board
  • PIC24FJ64GB002
  • PIC24FJ256DA206
  • PIC18F46J50 - PIC18F Starter Kit
  • PIC16F1459
  • PIC16F1454 - similar to PIC16F1459

If your hardware is not supported, and it's in the PIC16F/18F/24F/32MX family, you can probably make a port without much trouble.

Supported Software

The USB stack is supported by the following software:

  • Microchip XC8 compiler
  • Microchip XC16 compiler
  • Microchip XC32 compiler
  • Microchip MPLAB X IDE

Building the Unit Test Firmware

Open the MPLAB.X project in apps/unit_test in the MPLAB X IDE. Select a configuration and build. Make sure a supported compiler is installed.

Building the Test Software

The host_test/ directory contains Libusb-based test programs for testing the functionality of a USB device running the unit test firmware. Currently the Libusb test software has only been tested Linux, but since its only dependency is the cross-platform Libusb library, it is easily portable to other operating systems on which Libusb is supported.

With Libusb installed, run "make" in the host_test/ directory to build the test software.

Running the Test Software

./control_transfer_in [number_of_bytes]

  • Execute an IN control transfer requesting number_of_bytes bytes from the device. The data returned will be printed. The unit test firmware supports control transfers up to 512 bytes.

./control_transfer_out [number_of_bytes]

  • Execute an OUT control transfer sending number_of_bytes bytes to the device. A message will be printed. The unit test firmware supports control transfers up to 512 bytes.

./test [number_of_bytes]

  • Send and then ask for number_of_bytes bytes on EP 1 OUT and EP 1 IN, respectively. The data is printed out. The unit test firmware will support up to 128-bytes of this kind of operation.

./feature <clear>

  • Set the Endpoint halt feature on Endpoint 1 IN. Passing the "clear" parameter clears endpoint halt.

Source Tree Structure

(root)
 |
 +- usb/                   <- USB stack software
 |   +- include/           <- API include file directory
 |   +- src/               <- Source files
 +- storage/               <- MMC/SD card implementation
     +- include/           <- API include files
     +- src/               <- Source files
 +- apps/                  <- Firmware USB device applications,
     |                        examples, and tests
     +- unit_test/         <- Unit test firmware
     +- hid_mouse/         <- HID Mouse example
     +- cdc_acm/           <- CDC/ACM virtual COM port example
     +- msc_test/          <- Mass Storage Class example
     +- bootloader/        <- USB bootloader firmware and software
 +- host_test/             <- Software applications to run from a PC Host

USB Stack Source Files

usb/src/usb.c         - The implementation of the USB stack.
usb/src/usb_hal.h     - Hardware abstraction layer (HAL) containing
                        differences specific to each platform.
usb/src/usb_hid.c     - Implementation of the HID class.
usb/include/usb.h     - The API header for the USB stack. Applications should
                        #include this file.
usb/include/usb_ch9.h - Enums and structs from Chapter 9 of the USB
                        specification which deals with control transfers and
                        enumeration.  An application should #include this
                        file from their usb_descriptors.c and from any file
                        which deals with control transfers.
usb/src/usb_hid.h     - Enums, structs, and callbacks for the HID class

Application Source Files (Unit Test Example)

apps/unit_test/main.c            - Main program file
apps/unit_test/usb_config.h      - USB stack configuration file. The USB
                                   stack will include this file and use it
                                   for configuration.  The application
                                   should set the #defines in this file to
                                   suit the application's needs.
apps/unit_test/usb_descriptors.c - The application's descriptors. The
                                   application should set the descriptors in
                                   this file as desired to suit the
                                   application's needs.
apps/hid_mouse/*                 - HID mouse example (same files as above)

Making Your Own Project

The easiest way to create a project using M-Stack is to simply copy one of the examples and modify it accordingly. Sometimes it's better though to do things the hard way in order to understand better.

To create a new project, perform the following steps:

  1. Create a new project with MPLAB X.
  2. Copy and add the usb/ directory as a subdirectory of your project.
  3. Add the usb/include directory to the include path of your project. (Note that the include paths are relative to the Makefile. If you set up your project like the examples, with an MPLAB.X/ subdirectory, you'll need to add an additional ../ to the beginning of the include path).
  4. Add . to the include path of your project (same note from #3 applies).
  5. Copy ausb_config.h and a usb_descriptors.c file from one of the example projects into your main project directory.
  6. Modify usb_config.h to match your desired device configuration.
  7. Modify usb_descriptors.c to match your device configuration.
  8. If you're using a PIC16F/18F platform, add an interrupt handler similar to one of the examples.
  9. Reference main.c in one of the examples, and the Doxygen-generated documentation to add your application logic.
  10. Make sure to configure the MCU for your board (__CONFIG registers, etc.).

Limitations

Nothing's perfect. Here are the known limitations:

  • Control transfers are supported on endpoint 0 only.
  • Isochronous transfers are not supported.
  • Remote wake-up is not supported.

References

USB

USB Implementers Forum: http://www.usb.org

USB Specification, 2.0: http://www.usb.org/developers/docs

Jan Axelson's "USB Complete," 4th Edition: http://www.lvr.com/usbc.htm

Jan Axelson's online USB resources: http://www.lvr.com/usb.htm

Microchip PIC

Microchip MPLAB X: http://www.microchip.com/mplabx

About

Free USB Stack for PIC 16F, 18F, 24F, and 32MX Microcontrollers

Resources

License

Unknown and 2 other licenses found

Licenses found

Apache-2.0
LICENSE-Apache2.txt
GPL-3.0
LICENSE-GPL3.txt
LGPL-3.0
LICENSE-LGPL3.txt

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 94.9%
  • Makefile 4.3%
  • Other 0.8%