Hi
I am developing an application for the ATSAM30R. I want to use USB CDC (STDIO) for debugging purposes, unfortunately I cannot get it to work reliable.
If I use ASF4, I can get it to work fine, but if I use the ASF3 libraries (USB CDC STDIO) I cannot get it to work, Windows says that the device is unrecognized.
A really strange thing is that if I flash the ASF4 "hex" and after that, I start debugging the ASF3 project, the USB works, that is until I physically restart the device by removing power. I assume this has to do something with the cache either on the microcontroller or on Windows which would suggest a USB initialization error.
Here is my clock config:
/** * \file * * \brief SAM R30 Clock configuration * * Copyright (c) 2016-2018 Microchip Technology Inc. and its subsidiaries. * * \asf_license_start * * \page License * * Subject to your compliance with these terms, you may use Microchip * software and any derivatives exclusively with Microchip products. * It is your responsibility to comply with third party license terms applicable * to your use of third party software (including open source software) that * may accompany Microchip software. * * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, * WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, * INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE * LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL * LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE * SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE * POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT * ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY * RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. * * \asf_license_stop * */ /* * Support and FAQ: visit <a href="https://www.microchip.com/support/">Microchip Support</a> */ #include <clock.h> #ifndef CONF_CLOCKS_H_INCLUDED # define CONF_CLOCKS_H_INCLUDED /* System clock bus configuration */ # define CONF_CLOCK_CPU_CLOCK_FAILURE_DETECT true # define CONF_CLOCK_FLASH_WAIT_STATES 2 # define CONF_CLOCK_CPU_DIVIDER SYSTEM_MAIN_CLOCK_DIV_1 # define CONF_CLOCK_LOW_POWER_DIVIDER SYSTEM_MAIN_CLOCK_DIV_1 # define CONF_CLOCK_BACKUP_DIVIDER SYSTEM_MAIN_CLOCK_DIV_1 /* SYSTEM_CLOCK_SOURCE_OSC16M configuration - Internal 16MHz oscillator */ # define CONF_CLOCK_OSC16M_FREQ_SEL SYSTEM_OSC16M_16M # define CONF_CLOCK_OSC16M_ON_DEMAND true # define CONF_CLOCK_OSC16M_RUN_IN_STANDBY false /* SYSTEM_CLOCK_SOURCE_XOSC configuration - External clock/oscillator */ # define CONF_CLOCK_XOSC_ENABLE false # define CONF_CLOCK_XOSC_EXTERNAL_CRYSTAL SYSTEM_CLOCK_EXTERNAL_CRYSTAL # define CONF_CLOCK_XOSC_EXTERNAL_FREQUENCY 12000000UL # define CONF_CLOCK_XOSC_STARTUP_TIME SYSTEM_XOSC_STARTUP_32768 # define CONF_CLOCK_XOSC_AUTO_GAIN_CONTROL true # define CONF_CLOCK_XOSC_ON_DEMAND true # define CONF_CLOCK_XOSC_RUN_IN_STANDBY false /* SYSTEM_CLOCK_SOURCE_XOSC32K configuration - External 32KHz crystal/clock oscillator */ # define CONF_CLOCK_XOSC32K_ENABLE false # define CONF_CLOCK_XOSC32K_EXTERNAL_CRYSTAL SYSTEM_CLOCK_EXTERNAL_CRYSTAL # define CONF_CLOCK_XOSC32K_STARTUP_TIME SYSTEM_XOSC32K_STARTUP_65536 # define CONF_CLOCK_XOSC32K_ENABLE_1KHZ_OUPUT false # define CONF_CLOCK_XOSC32K_ENABLE_32KHZ_OUTPUT true # define CONF_CLOCK_XOSC32K_ON_DEMAND false # define CONF_CLOCK_XOSC32K_RUN_IN_STANDBY true /* SYSTEM_CLOCK_SOURCE_OSC32K configuration - Internal 32KHz oscillator */ # define CONF_CLOCK_OSC32K_ENABLE true # define CONF_CLOCK_OSC32K_STARTUP_TIME SYSTEM_OSC32K_STARTUP_130 # define CONF_CLOCK_OSC32K_ENABLE_1KHZ_OUTPUT true # define CONF_CLOCK_OSC32K_ENABLE_32KHZ_OUTPUT true # define CONF_CLOCK_OSC32K_ON_DEMAND false # define CONF_CLOCK_OSC32K_RUN_IN_STANDBY true /* SYSTEM_CLOCK_SOURCE_DFLL configuration - Digital Frequency Locked Loop */ # define CONF_CLOCK_DFLL_ENABLE true # define CONF_CLOCK_DFLL_LOOP_MODE SYSTEM_CLOCK_DFLL_LOOP_MODE_CLOSED # define CONF_CLOCK_DFLL_ON_DEMAND false # define CONF_CLOCK_DFLL_RUN_IN_STANDBY true /* DFLL open loop mode configuration */ # define CONF_CLOCK_DFLL_FINE_VALUE (512) /* DFLL closed loop mode configuration */ # define CONF_CLOCK_DFLL_SOURCE_GCLK_GENERATOR GCLK_GENERATOR_1 # define CONF_CLOCK_DFLL_MULTIPLY_FACTOR 1464 # define CONF_CLOCK_DFLL_QUICK_LOCK true # define CONF_CLOCK_DFLL_TRACK_AFTER_FINE_LOCK true # define CONF_CLOCK_DFLL_KEEP_LOCK_ON_WAKEUP true # define CONF_CLOCK_DFLL_ENABLE_CHILL_CYCLE true # define CONF_CLOCK_DFLL_MAX_COARSE_STEP_SIZE (0x1f / 8) # define CONF_CLOCK_DFLL_MAX_FINE_STEP_SIZE (0xff / 8) /* SYSTEM_CLOCK_SOURCE_DPLL configuration - Digital Phase-Locked Loop */ # define CONF_CLOCK_DPLL_ENABLE false # define CONF_CLOCK_DPLL_ON_DEMAND true # define CONF_CLOCK_DPLL_RUN_IN_STANDBY false # define CONF_CLOCK_DPLL_LOCK_BYPASS false # define CONF_CLOCK_DPLL_WAKE_UP_FAST false # define CONF_CLOCK_DPLL_LOW_POWER_ENABLE false # define CONF_CLOCK_DPLL_LOCK_TIME SYSTEM_CLOCK_SOURCE_DPLL_LOCK_TIME_DEFAULT # define CONF_CLOCK_DPLL_REFERENCE_CLOCK SYSTEM_CLOCK_SOURCE_DPLL_REFERENCE_CLOCK_XOSC32K # define CONF_CLOCK_DPLL_FILTER SYSTEM_CLOCK_SOURCE_DPLL_FILTER_DEFAULT # define CONF_CLOCK_DPLL_PRESCALER SYSTEM_CLOCK_SOURCE_DPLL_DIV_1 # define CONF_CLOCK_DPLL_REFERENCE_FREQUENCY 32768 # define CONF_CLOCK_DPLL_REFERENCE_DIVIDER 1 # define CONF_CLOCK_DPLL_OUTPUT_FREQUENCY 48000000 /* DPLL GCLK reference configuration */ # define CONF_CLOCK_DPLL_REFERENCE_GCLK_GENERATOR GCLK_GENERATOR_1 /* DPLL GCLK lock timer configuration */ # define CONF_CLOCK_DPLL_LOCK_GCLK_GENERATOR GCLK_GENERATOR_1 /* Set this to true to configure the GCLK when running clocks_init. If set to * false, none of the GCLK generators will be configured in clocks_init(). */ # define CONF_CLOCK_CONFIGURE_GCLK true /* Configure GCLK generator 0 (Main Clock) */ # define CONF_CLOCK_GCLK_0_ENABLE true # define CONF_CLOCK_GCLK_0_RUN_IN_STANDBY true # define CONF_CLOCK_GCLK_0_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_DFLL # define CONF_CLOCK_GCLK_0_PRESCALER 1 # define CONF_CLOCK_GCLK_0_OUTPUT_ENABLE false /* Configure GCLK generator 1 */ # define CONF_CLOCK_GCLK_1_ENABLE true # define CONF_CLOCK_GCLK_1_RUN_IN_STANDBY false # define CONF_CLOCK_GCLK_1_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_OSC32K # define CONF_CLOCK_GCLK_1_PRESCALER 1 # define CONF_CLOCK_GCLK_1_OUTPUT_ENABLE false /* Configure GCLK generator 2 */ # define CONF_CLOCK_GCLK_2_ENABLE false # define CONF_CLOCK_GCLK_2_RUN_IN_STANDBY false # define CONF_CLOCK_GCLK_2_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_OSC16M # define CONF_CLOCK_GCLK_2_PRESCALER 1 # define CONF_CLOCK_GCLK_2_OUTPUT_ENABLE false /* Configure GCLK generator 3 */ # define CONF_CLOCK_GCLK_3_ENABLE true # define CONF_CLOCK_GCLK_3_RUN_IN_STANDBY true # define CONF_CLOCK_GCLK_3_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_DFLL # define CONF_CLOCK_GCLK_3_PRESCALER 1 # define CONF_CLOCK_GCLK_3_OUTPUT_ENABLE false /* Configure GCLK generator 4 */ # define CONF_CLOCK_GCLK_4_ENABLE false # define CONF_CLOCK_GCLK_4_RUN_IN_STANDBY false # define CONF_CLOCK_GCLK_4_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_OSC16M # define CONF_CLOCK_GCLK_4_PRESCALER 1 # define CONF_CLOCK_GCLK_4_OUTPUT_ENABLE false /* Configure GCLK generator 5 */ # define CONF_CLOCK_GCLK_5_ENABLE false # define CONF_CLOCK_GCLK_5_RUN_IN_STANDBY false # define CONF_CLOCK_GCLK_5_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_OSC16M # define CONF_CLOCK_GCLK_5_PRESCALER 1 # define CONF_CLOCK_GCLK_5_OUTPUT_ENABLE false /* Configure GCLK generator 6 */ # define CONF_CLOCK_GCLK_6_ENABLE false # define CONF_CLOCK_GCLK_6_RUN_IN_STANDBY false # define CONF_CLOCK_GCLK_6_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_OSC16M # define CONF_CLOCK_GCLK_6_PRESCALER 1 # define CONF_CLOCK_GCLK_6_OUTPUT_ENABLE false /* Configure GCLK generator 7 */ # define CONF_CLOCK_GCLK_7_ENABLE false # define CONF_CLOCK_GCLK_7_RUN_IN_STANDBY false # define CONF_CLOCK_GCLK_7_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_OSC16M # define CONF_CLOCK_GCLK_7_PRESCALER 1 # define CONF_CLOCK_GCLK_7_OUTPUT_ENABLE false /* Configure GCLK generator 8 */ # define CONF_CLOCK_GCLK_8_ENABLE false # define CONF_CLOCK_GCLK_8_RUN_IN_STANDBY false # define CONF_CLOCK_GCLK_8_CLOCK_SOURCE SYSTEM_CLOCK_SOURCE_OSC16M # define CONF_CLOCK_GCLK_8_PRESCALER 1 # define CONF_CLOCK_GCLK_8_OUTPUT_ENABLE false #endif /* CONF_CLOCKS_H_INCLUDED */
And here is my USB config.
/** * \file * * \brief USB configuration file for CDC application * * Copyright (c) 2009-2018 Microchip Technology Inc. and its subsidiaries. * * \asf_license_start * * \page License * * Subject to your compliance with these terms, you may use Microchip * software and any derivatives exclusively with Microchip products. * It is your responsibility to comply with third party license terms applicable * to your use of third party software (including open source software) that * may accompany Microchip software. * * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, * WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, * INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE * LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL * LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE * SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE * POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT * ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY * RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. * * \asf_license_stop * */ /* * Support and FAQ: visit <a href="https://www.microchip.com/support/">Microchip Support</a> */ #ifndef _CONF_USB_H_ #define _CONF_USB_H_ #include "compiler.h" #warning You must refill the following definitions with a correct values /** * USB Device Configuration * @{ */ //! Device definition (mandatory) #define USB_DEVICE_VENDOR_ID USB_VID_ATMEL #define USB_DEVICE_PRODUCT_ID USB_PID_ATMEL_ASF_CDC #define USB_DEVICE_MAJOR_VERSION 1 #define USB_DEVICE_MINOR_VERSION 0 #define USB_DEVICE_POWER 100 // Consumption on Vbus line (mA) #define USB_DEVICE_ATTR (USB_CONFIG_ATTR_BUS_POWERED) // (USB_CONFIG_ATTR_BUS_POWERED) // (USB_CONFIG_ATTR_REMOTE_WAKEUP|USB_CONFIG_ATTR_SELF_POWERED) // (USB_CONFIG_ATTR_REMOTE_WAKEUP|USB_CONFIG_ATTR_BUS_POWERED) //! USB Device string definitions (Optional) // #define USB_DEVICE_MANUFACTURE_NAME "Manufacture name" // #define USB_DEVICE_PRODUCT_NAME "Product name" // #define USB_DEVICE_SERIAL_NAME "12...EF" /** * Device speeds support * Low speed not supported by CDC * @{ */ //! To authorize the High speed #if (UC3A3||UC3A4) #define USB_DEVICE_HS_SUPPORT #endif //@} /** * USB Device Callbacks definitions (Optional) * @{ */ // #define UDC_VBUS_EVENT(b_vbus_high) user_callback_vbus_action(b_vbus_high) // extern void user_callback_vbus_action(bool b_vbus_high); // #define UDC_SOF_EVENT() user_callback_sof_action() // extern void user_callback_sof_action(void); // #define UDC_SUSPEND_EVENT() user_callback_suspend_action() // extern void user_callback_suspend_action(void); // #define UDC_RESUME_EVENT() user_callback_resume_action() // extern void user_callback_resume_action(void); // Mandatory when USB_DEVICE_ATTR authorizes remote wakeup feature // #define UDC_REMOTEWAKEUP_ENABLE() user_callback_remotewakeup_enable() // extern void user_callback_remotewakeup_enable(void); // #define UDC_REMOTEWAKEUP_DISABLE() user_callback_remotewakeup_disable() // extern void user_callback_remotewakeup_disable(void); // When a extra string descriptor must be supported // other than manufacturer, product and serial string // #define UDC_GET_EXTRA_STRING() //@} //@} /** * USB Interface Configuration * @{ */ /** * Configuration of CDC interface * @{ */ //! Number of communication port used (1 to 3) #define UDI_CDC_PORT_NB 1 //! Interface callback definition #define UDI_CDC_ENABLE_EXT(port) true #define UDI_CDC_DISABLE_EXT(port) #define UDI_CDC_RX_NOTIFY(port) #define UDI_CDC_TX_EMPTY_NOTIFY(port) #define UDI_CDC_SET_CODING_EXT(port,cfg) #define UDI_CDC_SET_DTR_EXT(port,set) #define UDI_CDC_SET_RTS_EXT(port,set) // #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_RX_NOTIFY(port) my_callback_rx_notify(port) // extern void my_callback_rx_notify(uint8_t port); // #define UDI_CDC_TX_EMPTY_NOTIFY(port) my_callback_tx_empty_notify(port) // extern void my_callback_tx_empty_notify(uint8_t port); // #define UDI_CDC_SET_CODING_EXT(port,cfg) my_callback_config(port,cfg) // extern void my_callback_config(uint8_t port, usb_cdc_line_coding_t * cfg); #define UDI_CDC_SET_DTR_EXT(port,set) my_callback_cdc_set_dtr(port,set) extern void my_callback_cdc_set_dtr(uint8_t port, bool b_enable); // #define UDI_CDC_SET_RTS_EXT(port,set) my_callback_cdc_set_rts(port,set) // extern void my_callback_cdc_set_rts(uint8_t port, bool b_enable); //! Define it when the transfer CDC Device to Host is a low rate (<512000 bauds) //! to reduce CDC buffers size #define UDI_CDC_LOW_RATE //! Default configuration of communication port #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 //@} //@} /** * USB Device Driver Configuration * @{ */ //@} //! The includes of classes and other headers must be done at the end of this file to avoid compile error #include "udi_cdc_conf.h" #endif // _CONF_USB_H_
In main I have:
system_init(); irq_initialize_vectors(); cpu_irq_enable(); sleepmgr_init(); stdio_usb_init(); stdio_usb_enable();
I would use ASF4 but unfortunately I need the MiWi libraries, which are only available in ASF3. Any hints on how to debug this issue?