【E1388】基于uCosIII多级体感3D鼠标

2021-10-04 10:10:17      索炜达电子      344     

项目编号:E1388

文件大小:10M

源码说明:带中文注释

开发环境:C编译器

简要概述:

基于uCosIII多级体感3D鼠标

目录│文件列表:

 └ SomatosensoryMouse

    │ Launch - 2018-9-10 204247.zip

    │ Receive - 2018-9-10 204253.zip

    │ STM32 USB-HID复合设备实现方法.doc

    │ STM32 USB-HID复合设备实现方法.wps

    │ STM32_USB_复合设备RBT6.zip

    │ USB HID to PS2 Scan Code Translation Table .pdf

    │ 参考资料.txt

    ├ Launch

    │  │ keilkilll.bat

    │  ├ CORE

    │  │  │ core_cm3.c

    │  │  │ core_cm3.h

    │  │  │ startup_stm32f10x_hd.s

    │  │  └ startup_stm32f10x_md.s

    │  ├ HARDWARE

    │  │  ├ IIC

    │  │  │  │ I2C.c

    │  │  │  └ I2C.h

    │  │  ├ KEY

    │  │  │  │ key.c

    │  │  │  └ key.h

    │  │  ├ LED

    │  │  │  │ led.c

    │  │  │  └ led.h

    │  │  ├ MPU6050

    │  │  │  │ mpu6050.c

    │  │  │  └ mpu6050.h

    │  │  ├ NRF24L01

    │  │  │  │ 24l01.c

    │  │  │  └ 24l01.h

    │  │  └ SPI

    │  │     │ spi.c

    │  │     └ spi.h

    │  ├ OBJ

    │  │  │ 24l01.crf

    │  │  │ core_cm3.crf

    │  │  │ delay.crf

    │  │  │ hw_config.crf

    │  │  │ i2c.crf

    │  │  │ key.crf

    │  │  │ Launch.axf

    │  │  │ Launch.build_log.htm

    │  │  │ Launch.htm

    │  │  │ Launch.lnp

    │  │  │ Launch.sct

    │  │  │ Launch_Launch.dep

    │  │  │ led.crf

    │  │  │ main.crf

    │  │  │ misc.crf

    │  │  │ mpu6050.crf

    │  │  │ spi.crf

    │  │  │ stm32f10x_exti.crf

    │  │  │ stm32f10x_gpio.crf

    │  │  │ stm32f10x_it.crf

    │  │  │ stm32f10x_rcc.crf

    │  │  │ stm32f10x_spi.crf

    │  │  │ stm32f10x_usart.crf

    │  │  │ sys.crf

    │  │  │ system_stm32f10x.crf

    │  │  │ usart.crf

    │  │  │ usb_core.crf

    │  │  │ usb_desc.crf

    │  │  │ usb_init.crf

    │  │  │ usb_int.crf

    │  │  │ usb_istr.crf

    │  │  │ usb_mem.crf

    │  │  │ usb_prop.crf

    │  │  │ usb_pwr.crf

    │  │  └ usb_regs.crf

    │  ├ STM32F10x_FWLib

    │  │  ├ inc

    │  │  │  │ misc.h

    │  │  │  │ stm32f10x_adc.h

    │  │  │  │ stm32f10x_bkp.h

    │  │  │  │ stm32f10x_can.h

    │  │  │  │ stm32f10x_cec.h

    │  │  │  │ stm32f10x_crc.h

    │  │  │  │ stm32f10x_dac.h

    │  │  │  │ stm32f10x_dbgmcu.h

    │  │  │  │ stm32f10x_dma.h

    │  │  │  │ stm32f10x_exti.h

    │  │  │  │ stm32f10x_flash.h

    │  │  │  │ stm32f10x_fsmc.h

    │  │  │  │ stm32f10x_gpio.h

    │  │  │  │ stm32f10x_i2c.h

    │  │  │  │ stm32f10x_iwdg.h

    │  │  │  │ stm32f10x_pwr.h

    │  │  │  │ stm32f10x_rcc.h

    │  │  │  │ stm32f10x_rtc.h

    │  │  │  │ stm32f10x_sdio.h

    │  │  │  │ stm32f10x_spi.h

    │  │  │  │ stm32f10x_tim.h

    │  │  │  │ stm32f10x_usart.h

    │  │  │  └ stm32f10x_wwdg.h

    │  │  └ src

    │  │     │ misc.c

    │  │     │ stm32f10x_adc.c

    │  │     │ stm32f10x_bkp.c

    │  │     │ stm32f10x_can.c

    │  │     │ stm32f10x_cec.c

    │  │     │ stm32f10x_crc.c

    │  │     │ stm32f10x_dac.c

    │  │     │ stm32f10x_dbgmcu.c

    │  │     │ stm32f10x_dma.c

    │  │     │ stm32f10x_exti.c

    │  │     │ stm32f10x_flash.c

    │  │     │ stm32f10x_fsmc.c

    │  │     │ stm32f10x_gpio.c

    │  │     │ stm32f10x_i2c.c

    │  │     │ stm32f10x_iwdg.c

    │  │     │ stm32f10x_pwr.c

    │  │     │ stm32f10x_rcc.c

    │  │     │ stm32f10x_rtc.c

    │  │     │ stm32f10x_sdio.c

    │  │     │ stm32f10x_spi.c

    │  │     │ stm32f10x_tim.c

    │  │     │ stm32f10x_usart.c

    │  │     └ stm32f10x_wwdg.c

    │  ├ SYSTEM

    │  │  ├ delay

    │  │  │  │ delay.c

    │  │  │  └ delay.h

    │  │  ├ sys

    │  │  │  │ sys.c

    │  │  │  └ sys.h

    │  │  └ usart

    │  │     │ usart.c

    │  │     └ usart.h

    │  ├ USB

    │  │  ├ CONFIG

    │  │  │  │ hw_config.c

    │  │  │  │ hw_config.h

    │  │  │  │ platform_config.h

    │  │  │  │ stm32f10x_it.c

    │  │  │  │ usb_conf.h

    │  │  │  │ usb_desc.c

    │  │  │  │ usb_desc.h

    │  │  │  │ usb_istr.c

    │  │  │  │ usb_istr.h

    │  │  │  │ usb_prop.c

    │  │  │  │ usb_prop.h

    │  │  │  │ usb_pwr.c

    │  │  │  └ usb_pwr.h

    │  │  └ LIB

    │  │     │ usb_core.c

    │  │     │ usb_core.h

    │  │     │ usb_def.h

    │  │     │ usb_init.c

    │  │     │ usb_init.h

    │  │     │ usb_int.c

    │  │     │ usb_int.h

    │  │     │ usb_lib.h

    │  │     │ usb_mem.c

    │  │     │ usb_mem.h

    │  │     │ usb_regs.c

    │  │     │ usb_regs.h

    │  │     └ usb_type.h

    │  └ USER

    │     │ JLink Regs CM3.txt

    │     │ JLinkLog.txt

    │     │ JLinkSettings.ini

    │     │ Launch.uvgui.HYM

    │     │ Launch.uvopt

    │     │ Launch.uvproj

    │     │ main.c

    │     │ startup_stm32f10x_md.lst

    │     │ stm32f10x.h

    │     │ stm32f10x_conf.h

    │     │ stm32f10x_it.c

    │     │ stm32f10x_it.h

    │     │ system_stm32f10x.c

    │     └ system_stm32f10x.h

    └ Receive

       │ keilkilll.bat

       ├ CORE

       │  │ core_cm3.c

       │  │ core_cm3.h

       │  │ startup_stm32f10x_hd.s

       │  └ startup_stm32f10x_md.s

       ├ HARDWARE

       │  ├ NRF24L01

       │  │  │ 24l01.c

       │  │  └ 24l01.h

       │  └ SPI

       │     │ spi.c

       │     └ spi.h

       ├ OBJ

       │  │ 24l01.crf

       │  │ core_cm3.crf

       │  │ delay.crf

       │  │ hw_config.crf

       │  │ main.crf

       │  │ misc.crf

       │  │ Receive.axf

       │  │ Receive.build_log.htm

       │  │ Receive.htm

       │  │ Receive.lnp

       │  │ Receive.sct

       │  │ Receive_Receive.dep

       │  │ spi.crf

       │  │ stm32f10x_exti.crf

       │  │ stm32f10x_gpio.crf

       │  │ stm32f10x_it.crf

       │  │ stm32f10x_rcc.crf

       │  │ stm32f10x_spi.crf

       │  │ stm32f10x_usart.crf

       │  │ sys.crf

       │  │ system_stm32f10x.crf

       │  │ usart.crf

       │  │ usb_core.crf

       │  │ usb_desc.crf

       │  │ usb_init.crf

       │  │ usb_int.crf

       │  │ usb_istr.crf

       │  │ usb_mem.crf

       │  │ usb_prop.crf

       │  │ usb_pwr.crf

       │  └ usb_regs.crf

       ├ STM32F10x_FWLib

       │  ├ inc

       │  │  │ misc.h

       │  │  │ stm32f10x_adc.h

       │  │  │ stm32f10x_bkp.h

       │  │  │ stm32f10x_can.h

       │  │  │ stm32f10x_cec.h

       │  │  │ stm32f10x_crc.h

       │  │  │ stm32f10x_dac.h

       │  │  │ stm32f10x_dbgmcu.h

       │  │  │ stm32f10x_dma.h

       │  │  │ stm32f10x_exti.h

       │  │  │ stm32f10x_flash.h

       │  │  │ stm32f10x_fsmc.h

       │  │  │ stm32f10x_gpio.h

       │  │  │ stm32f10x_i2c.h

       │  │  │ stm32f10x_iwdg.h

       │  │  │ stm32f10x_pwr.h

       │  │  │ stm32f10x_rcc.h

       │  │  │ stm32f10x_rtc.h

       │  │  │ stm32f10x_sdio.h

       │  │  │ stm32f10x_spi.h

       │  │  │ stm32f10x_tim.h

       │  │  │ stm32f10x_usart.h

       │  │  └ stm32f10x_wwdg.h

       │  └ src

       │     │ misc.c

       │     │ stm32f10x_adc.c

       │     │ stm32f10x_bkp.c

       │     │ stm32f10x_can.c

       │     │ stm32f10x_cec.c

       │     │ stm32f10x_crc.c

       │     │ stm32f10x_dac.c

       │     │ stm32f10x_dbgmcu.c

       │     │ stm32f10x_dma.c

       │     │ stm32f10x_exti.c

       │     │ stm32f10x_flash.c

       │     │ stm32f10x_fsmc.c

       │     │ stm32f10x_gpio.c

       │     │ stm32f10x_i2c.c

       │     │ stm32f10x_iwdg.c

       │     │ stm32f10x_pwr.c

       │     │ stm32f10x_rcc.c

       │     │ stm32f10x_rtc.c

       │     │ stm32f10x_sdio.c

       │     │ stm32f10x_spi.c

       │     │ stm32f10x_tim.c

       │     │ stm32f10x_usart.c

       │     └ stm32f10x_wwdg.c

       ├ SYSTEM

       │  ├ delay

       │  │  │ delay.c

       │  │  └ delay.h

       │  ├ sys

       │  │  │ sys.c

       │  │  └ sys.h

       │  └ usart

       │     │ usart.c

       │     └ usart.h

       ├ USB

       │  ├ CONFIG

       │  │  │ hw_config.c

       │  │  │ hw_config.h

       │  │  │ platform_config.h

       │  │  │ stm32f10x_it.c

       │  │  │ usb_conf.h

       │  │  │ usb_desc.c

       │  │  │ usb_desc.h

       │  │  │ usb_istr.c

       │  │  │ usb_istr.h

       │  │  │ usb_prop.c

       │  │  │ usb_prop.h

       │  │  │ usb_pwr.c

       │  │  └ usb_pwr.h

       │  └ LIB

       │     │ usb_core.c

       │     │ usb_core.h

       │     │ usb_def.h

       │     │ usb_init.c

       │     │ usb_init.h

       │     │ usb_int.c

       │     │ usb_int.h

       │     │ usb_lib.h

       │     │ usb_mem.c

       │     │ usb_mem.h

       │     │ usb_regs.c

       │     │ usb_regs.h

       │     └ usb_type.h

       └ USER

          │ JLink Regs CM3.txt

          │ JLinkLog.txt

          │ JLinkSettings.ini

          │ main.c

          │ Receive.uvgui.HYM

          │ Receive.uvopt

          │ Receive.uvproj

          │ startup_stm32f10x_md.lst

          │ stm32f10x.h

          │ stm32f10x_conf.h

          │ stm32f10x_it.c

          │ stm32f10x_it.h

          │ system_stm32f10x.c

          └ system_stm32f10x.h

TAG3D鼠标
  • 5 次
  • 1 分