Quick start guide for USB device Communication Class Device module (UDI CDC)

This is the quick start guide for the USB device interface CDC module (UDI CDC) with step-by-step instructions on how to configure and use the modules in a selection of use cases.

The use cases contain several code fragments. The code fragments in the steps for setup can be copied into a custom initialization function, while the steps for usage can be copied into, e.g., the main application function.

Basic use case

In this basic use case, the "USB CDC (Single Interface Device)" module is used with only one communication port. The "USB CDC (Composite Device)" module usage is described in Advanced use cases.

Setup steps

Prerequisites

Common prerequisites for all USB devices.

This module is based on USB device stack full interrupt driven, and supporting Sleep manager sleepmgr. For AVR and SAM3/4 devices the Clock Management clock services is supported. For SAMD devices the asfdoc_sam0_system_clock_group clock driver is supported.

The following procedure must be executed to setup the project correctly:

The usage of Sleep manager sleepmgr service is optional, but recommended to reduce power consumption:

conf_clock.h examples with USB support.

for AVR and SAM3/4 devices, add to the initialization code:

For SAMD devices, add to the initialization code:

system_init();
sleepmgr_init(); // Optional

Add to the main IDLE loop:

sleepmgr_enter_sleep(); // Optional

Example code

Common example code for all USB devices.

Content of conf_usb.h:

#define USB_DEVICE_VENDOR_ID 0x03EB
#define USB_DEVICE_PRODUCT_ID 0xXXXX
#define USB_DEVICE_MAJOR_VERSION 1
#define USB_DEVICE_MINOR_VERSION 0
#define USB_DEVICE_POWER 100
#define USB_DEVICE_ATTR USB_CONFIG_ATTR_BUS_POWERED

Add to application C-file:

void usb_init(void)
{
}

Workflow

Common workflow for all USB devices.

  1. Ensure that conf_usb.h is available and contains the following configuration which is the main USB device configuration:
    • // Vendor ID provided by USB org (ATMEL 0x03EB)
      #define USB_DEVICE_VENDOR_ID 0x03EB // Type Word
      // Product ID (Atmel PID referenced in usb_atmel.h)
      #define USB_DEVICE_PRODUCT_ID 0xXXXX // Type Word
      // Major version of the device
      #define USB_DEVICE_MAJOR_VERSION 1 // Type Byte
      // Minor version of the device
      #define USB_DEVICE_MINOR_VERSION 0 // Type Byte
      // Maximum device power (mA)
      #define USB_DEVICE_POWER 100 // Type 9-bits
      // USB attributes to enable features
      #define USB_DEVICE_ATTR USB_CONFIG_ATTR_BUS_POWERED // Flags
  2. Call the USB device stack start function to enable stack and start USB:
    • Note
      In case of USB dual roles (Device and Host) managed through USB OTG connector (USB ID pin), the call of udc_start() must be removed and replaced by uhc_start(). SeRefer to "AVR4950 section 6.1 Dual roles" for further information about dual roles.

Usage steps

Example code

Content of conf_usb.h:

#define UDI_CDC_ENABLE_EXT(port) my_callback_cdc_enable()
extern bool my_callback_cdc_enable(void);
#define UDI_CDC_DISABLE_EXT(port) my_callback_cdc_disable()
extern void my_callback_cdc_disable(void);
#define UDI_CDC_LOW_RATE
#define UDI_CDC_DEFAULT_RATE 115200
#define UDI_CDC_DEFAULT_STOPBITS CDC_STOP_BITS_1
#define UDI_CDC_DEFAULT_PARITY CDC_PAR_NONE
#define UDI_CDC_DEFAULT_DATABITS 8
#include "udi_cdc_conf.h" // At the end of conf_usb.h file

Add to application C-file:

static bool my_flag_autorize_cdc_transfert = false;
bool my_callback_cdc_enable(void)
{
my_flag_autorize_cdc_transfert = true;
return true;
}
void my_callback_cdc_disable(void)
{
my_flag_autorize_cdc_transfert = false;
}
void task(void)
{
if (my_flag_autorize_cdc_transfert) {
}
}

Workflow

  1. Ensure that conf_usb.h is available and contains the following configuration, which is the USB device CDC configuration:
    • #define USB_DEVICE_SERIAL_NAME "12...EF" // Disk SN for CDC
      Note
      The USB serial number is mandatory when a CDC interface is used.
    • #define UDI_CDC_ENABLE_EXT(port) my_callback_cdc_enable()
      extern bool my_callback_cdc_enable(void);
      Note
      After the device enumeration (detecting and identifying USB devices), the USB host starts the device configuration. When the USB CDC interface from the device is accepted by the host, the USB host enables this interface and the UDI_CDC_ENABLE_EXT() callback function is called and return true. Thus, when this event is received, the data transfer on CDC interface are authorized.
    • #define UDI_CDC_DISABLE_EXT(port) my_callback_cdc_disable()
      extern void my_callback_cdc_disable(void);
      Note
      When the USB device is unplugged or is reset by the USB host, the USB interface is disabled and the UDI_CDC_DISABLE_EXT() callback function is called. Thus, the data transfer must be stopped on CDC interface.
    • #define UDI_CDC_LOW_RATE
      Note
      Define it when the transfer CDC Device to Host is a low rate (<512000 bauds) to reduce CDC buffers size.
    • #define UDI_CDC_DEFAULT_RATE 115200
      #define UDI_CDC_DEFAULT_STOPBITS CDC_STOP_BITS_1
      #define UDI_CDC_DEFAULT_PARITY CDC_PAR_NONE
      #define UDI_CDC_DEFAULT_DATABITS 8
      Note
      Default configuration of communication port at startup.
  2. Send or wait data on CDC line:

Advanced use cases

For more advanced use of the UDI CDC module, see the following use cases:



inertial_sense_ros
Author(s):
autogenerated on Sun Feb 28 2021 03:18:00