[libopenstm32-commits] libopenstm32 branch, master, updated. 6e090ccee16582f0c152c95238753562732788
Status: Inactive
Brought to you by:
uh1763
From: Uwe H. <uh...@us...> - 2010-11-02 01:03:50
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "libopenstm32". The branch, master has been updated via 6e090ccee16582f0c152c95238753562732788e3 (commit) from 1621fde1f47c5b5f86942562b955bebfb45683df (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6e090ccee16582f0c152c95238753562732788e3 Author: Uwe Hermann <uw...@he...> Date: Tue Nov 2 02:02:21 2010 +0100 Initial USB device stack for STM32. Patch provided by Gareth McMullin <ga...@bl...>, thanks a lot! ----------------------------------------------------------------------- Summary of changes: examples/other/Makefile | 22 ++- .../other/{dma_mem2mem => usb_cdcacm}/Makefile | 4 +- examples/other/{systick => usb_cdcacm}/README | 4 +- examples/other/usb_cdcacm/cdc.h | 128 +++++++++ examples/other/usb_cdcacm/cdcacm.c | 255 +++++++++++++++++ .../adc.ld => usb_cdcacm/cdcacm.ld} | 4 +- examples/other/{dma_mem2mem => usb_dfu}/Makefile | 8 +- examples/other/{systick => usb_dfu}/README | 4 +- examples/other/usb_dfu/dfu.h | 81 ++++++ examples/other/usb_dfu/usbdfu.c | 298 ++++++++++++++++++++ .../adc.ld => usb_dfu/usbdfu.ld} | 6 +- examples/other/{dma_mem2mem => usb_hid}/Makefile | 10 +- examples/other/{systick => usb_hid}/README | 4 +- .../adc.ld => usb_hid/hid.h} | 27 ++- examples/other/usb_hid/usbhid.c | 267 ++++++++++++++++++ .../adc.ld => usb_hid/usbhid.ld} | 4 +- include/libopenstm32/rcc.h | 2 + include/libopenstm32/scb.h | 3 + include/libopenstm32/tools.h | 4 +- include/libopenstm32/usb.h | 6 +- include/usbd.h | 73 +++++ include/usbstd.h | 198 +++++++++++++ lib/Makefile | 5 +- lib/rcc.c | 61 ++++- .../adc_temperature_sensor/adc.ld => lib/scb.c | 16 +- lib/usb/usb.c | 95 +++++++ lib/usb/usb_control.c | 280 ++++++++++++++++++ lib/usb/usb_f103.c | 223 +++++++++++++++ lib/usb/usb_private.h | 84 ++++++ lib/usb/usb_standard.c | 268 ++++++++++++++++++ 30 files changed, 2389 insertions(+), 55 deletions(-) copy examples/other/{dma_mem2mem => usb_cdcacm}/Makefile (98%) copy examples/other/{systick => usb_cdcacm}/README (87%) create mode 100644 examples/other/usb_cdcacm/cdc.h create mode 100644 examples/other/usb_cdcacm/cdcacm.c copy examples/other/{adc_temperature_sensor/adc.ld => usb_cdcacm/cdcacm.ld} (88%) copy examples/other/{dma_mem2mem => usb_dfu}/Makefile (95%) copy examples/other/{systick => usb_dfu}/README (87%) create mode 100644 examples/other/usb_dfu/dfu.h create mode 100644 examples/other/usb_dfu/usbdfu.c copy examples/other/{adc_temperature_sensor/adc.ld => usb_dfu/usbdfu.ld} (84%) copy examples/other/{dma_mem2mem => usb_hid}/Makefile (93%) copy examples/other/{systick => usb_hid}/README (87%) copy examples/other/{adc_temperature_sensor/adc.ld => usb_hid/hid.h} (65%) create mode 100644 examples/other/usb_hid/usbhid.c copy examples/other/{adc_temperature_sensor/adc.ld => usb_hid/usbhid.ld} (88%) create mode 100644 include/usbd.h create mode 100644 include/usbstd.h copy examples/other/adc_temperature_sensor/adc.ld => lib/scb.c (68%) create mode 100644 lib/usb/usb.c create mode 100644 lib/usb/usb_control.c create mode 100644 lib/usb/usb_f103.c create mode 100644 lib/usb/usb_private.h create mode 100644 lib/usb/usb_standard.c hooks/post-receive -- libopenstm32 |