rename cdc_msc_hid to cdc_msc, hid has its own example hid_composite now
This commit is contained in:
@@ -0,0 +1,405 @@
|
||||
/*********************************************************************
|
||||
* SEGGER Microcontroller GmbH *
|
||||
* The Embedded Experts *
|
||||
**********************************************************************
|
||||
* *
|
||||
* (c) 2014 - 2018 SEGGER Microcontroller GmbH *
|
||||
* *
|
||||
* www.segger.com Support: support@segger.com *
|
||||
* *
|
||||
**********************************************************************
|
||||
* *
|
||||
* All rights reserved. *
|
||||
* *
|
||||
* Redistribution and use in source and binary forms, with or *
|
||||
* without modification, are permitted provided that the following *
|
||||
* conditions are met: *
|
||||
* *
|
||||
* - Redistributions of source code must retain the above copyright *
|
||||
* notice, this list of conditions and the following disclaimer. *
|
||||
* *
|
||||
* - Neither the name of SEGGER Microcontroller GmbH *
|
||||
* nor the names of its contributors may be used to endorse or *
|
||||
* promote products derived from this software without specific *
|
||||
* prior written permission. *
|
||||
* *
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND *
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, *
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF *
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE *
|
||||
* DISCLAIMED. *
|
||||
* IN NO EVENT SHALL SEGGER Microcontroller GmbH BE LIABLE FOR *
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR *
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT *
|
||||
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; *
|
||||
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
|
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE *
|
||||
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH *
|
||||
* DAMAGE. *
|
||||
* *
|
||||
*********************************************************************/
|
||||
|
||||
/*****************************************************************************
|
||||
* Preprocessor Definitions *
|
||||
* ------------------------ *
|
||||
* VECTORS_IN_RAM *
|
||||
* *
|
||||
* If defined, an area of RAM will large enough to store the vector table *
|
||||
* will be reserved. *
|
||||
* *
|
||||
*****************************************************************************/
|
||||
|
||||
.syntax unified
|
||||
.code 16
|
||||
|
||||
.section .init, "ax"
|
||||
.align 2
|
||||
|
||||
/*****************************************************************************
|
||||
* Default Exception Handlers *
|
||||
*****************************************************************************/
|
||||
|
||||
.thumb_func
|
||||
.weak NMI_Handler
|
||||
NMI_Handler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak HardFault_Handler
|
||||
HardFault_Handler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak SVC_Handler
|
||||
SVC_Handler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PendSV_Handler
|
||||
PendSV_Handler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak SysTick_Handler
|
||||
SysTick_Handler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
Dummy_Handler:
|
||||
b .
|
||||
|
||||
#if defined(__OPTIMIZATION_SMALL)
|
||||
|
||||
.weak PIN_INT0_IRQHandler
|
||||
.thumb_set PIN_INT0_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak PIN_INT1_IRQHandler
|
||||
.thumb_set PIN_INT1_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak PIN_INT2_IRQHandler
|
||||
.thumb_set PIN_INT2_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak PIN_INT3_IRQHandler
|
||||
.thumb_set PIN_INT3_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak PIN_INT4_IRQHandler
|
||||
.thumb_set PIN_INT4_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak PIN_INT5_IRQHandler
|
||||
.thumb_set PIN_INT5_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak PIN_INT6_IRQHandler
|
||||
.thumb_set PIN_INT6_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak PIN_INT7_IRQHandler
|
||||
.thumb_set PIN_INT7_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak GINT0_IRQHandler
|
||||
.thumb_set GINT0_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak GINT1_IRQHandler
|
||||
.thumb_set GINT1_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak I2C1_IRQHandler
|
||||
.thumb_set I2C1_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak USART1_4_IRQHandler
|
||||
.thumb_set USART1_4_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak USART2_3_IRQHandler
|
||||
.thumb_set USART2_3_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak SCT0_1_IRQHandler
|
||||
.thumb_set SCT0_1_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak SSP1_IRQHandler
|
||||
.thumb_set SSP1_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak I2C0_IRQHandler
|
||||
.thumb_set I2C0_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak CT16B0_IRQHandler
|
||||
.thumb_set CT16B0_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak CT16B1_IRQHandler
|
||||
.thumb_set CT16B1_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak CT32B0_IRQHandler
|
||||
.thumb_set CT32B0_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak CT32B1_IRQHandler
|
||||
.thumb_set CT32B1_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak SSP0_IRQHandler
|
||||
.thumb_set SSP0_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak USART_IRQHandler
|
||||
.thumb_set USART_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak USB_IRQHandler
|
||||
.thumb_set USB_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak USB_FIQ_IRQHandler
|
||||
.thumb_set USB_FIQ_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak ADC_A_IRQHandler
|
||||
.thumb_set ADC_A_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak RTC_IRQHandler
|
||||
.thumb_set RTC_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak BOD_WDT_IRQHandler
|
||||
.thumb_set BOD_WDT_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak FLASH_IRQHandler
|
||||
.thumb_set FLASH_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak DMA_IRQHandler
|
||||
.thumb_set DMA_IRQHandler,Dummy_Handler
|
||||
|
||||
.weak USBWAKEUP_IRQHandler
|
||||
.thumb_set USBWAKEUP_IRQHandler,Dummy_Handler
|
||||
|
||||
#else
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT0_IRQHandler
|
||||
PIN_INT0_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT1_IRQHandler
|
||||
PIN_INT1_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT2_IRQHandler
|
||||
PIN_INT2_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT3_IRQHandler
|
||||
PIN_INT3_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT4_IRQHandler
|
||||
PIN_INT4_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT5_IRQHandler
|
||||
PIN_INT5_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT6_IRQHandler
|
||||
PIN_INT6_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak PIN_INT7_IRQHandler
|
||||
PIN_INT7_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak GINT0_IRQHandler
|
||||
GINT0_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak GINT1_IRQHandler
|
||||
GINT1_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak I2C1_IRQHandler
|
||||
I2C1_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak USART1_4_IRQHandler
|
||||
USART1_4_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak USART2_3_IRQHandler
|
||||
USART2_3_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak SCT0_1_IRQHandler
|
||||
SCT0_1_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak SSP1_IRQHandler
|
||||
SSP1_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak I2C0_IRQHandler
|
||||
I2C0_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak CT16B0_IRQHandler
|
||||
CT16B0_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak CT16B1_IRQHandler
|
||||
CT16B1_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak CT32B0_IRQHandler
|
||||
CT32B0_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak CT32B1_IRQHandler
|
||||
CT32B1_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak SSP0_IRQHandler
|
||||
SSP0_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak USART_IRQHandler
|
||||
USART_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak USB_IRQHandler
|
||||
USB_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak USB_FIQ_IRQHandler
|
||||
USB_FIQ_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak ADC_A_IRQHandler
|
||||
ADC_A_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak RTC_IRQHandler
|
||||
RTC_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak BOD_WDT_IRQHandler
|
||||
BOD_WDT_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak FLASH_IRQHandler
|
||||
FLASH_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak DMA_IRQHandler
|
||||
DMA_IRQHandler:
|
||||
b .
|
||||
|
||||
.thumb_func
|
||||
.weak USBWAKEUP_IRQHandler
|
||||
USBWAKEUP_IRQHandler:
|
||||
b .
|
||||
|
||||
#endif
|
||||
|
||||
/*****************************************************************************
|
||||
* Vector Table *
|
||||
*****************************************************************************/
|
||||
|
||||
.section .vectors, "ax"
|
||||
.align 2
|
||||
.global _vectors
|
||||
.extern __stack_end__
|
||||
.extern Reset_Handler
|
||||
|
||||
_vectors:
|
||||
.word __stack_end__
|
||||
.word Reset_Handler
|
||||
.word NMI_Handler
|
||||
.word HardFault_Handler
|
||||
.word 0 /* Reserved */
|
||||
.word 0 /* Reserved */
|
||||
.word 0 /* Reserved */
|
||||
.word 0 /* Reserved */
|
||||
.word 0 /* Reserved */
|
||||
.word 0 /* Reserved */
|
||||
.word 0 /* Reserved */
|
||||
.word SVC_Handler
|
||||
.word 0 /* Reserved */
|
||||
.word 0 /* Reserved */
|
||||
.word PendSV_Handler
|
||||
.word SysTick_Handler
|
||||
.word PIN_INT0_IRQHandler
|
||||
.word PIN_INT1_IRQHandler
|
||||
.word PIN_INT2_IRQHandler
|
||||
.word PIN_INT3_IRQHandler
|
||||
.word PIN_INT4_IRQHandler
|
||||
.word PIN_INT5_IRQHandler
|
||||
.word PIN_INT6_IRQHandler
|
||||
.word PIN_INT7_IRQHandler
|
||||
.word GINT0_IRQHandler
|
||||
.word GINT1_IRQHandler
|
||||
.word I2C1_IRQHandler
|
||||
.word USART1_4_IRQHandler
|
||||
.word USART2_3_IRQHandler
|
||||
.word SCT0_1_IRQHandler
|
||||
.word SSP1_IRQHandler
|
||||
.word I2C0_IRQHandler
|
||||
.word CT16B0_IRQHandler
|
||||
.word CT16B1_IRQHandler
|
||||
.word CT32B0_IRQHandler
|
||||
.word CT32B1_IRQHandler
|
||||
.word SSP0_IRQHandler
|
||||
.word USART_IRQHandler
|
||||
.word USB_IRQHandler
|
||||
.word USB_FIQ_IRQHandler
|
||||
.word ADC_A_IRQHandler
|
||||
.word RTC_IRQHandler
|
||||
.word BOD_WDT_IRQHandler
|
||||
.word FLASH_IRQHandler
|
||||
.word DMA_IRQHandler
|
||||
.word Dummy_Handler /* Reserved */
|
||||
.word USBWAKEUP_IRQHandler
|
||||
_vectors_end:
|
||||
|
||||
#ifdef VECTORS_IN_RAM
|
||||
.section .vectors_ram, "ax"
|
||||
.align 2
|
||||
.global _vectors_ram
|
||||
|
||||
_vectors_ram:
|
||||
.space _vectors_end - _vectors, 0
|
||||
#endif
|
||||
Reference in New Issue
Block a user