This is an automated email from the ASF dual-hosted git repository.

jerzy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.


    from 71bc0c3  Merge pull request #2144 from nkaje/HWID_BLE
     new 63a182f  Add package to handle USB stack from tinyusb project
     new 532734c  tinyusb: Add hardware initialization for NRF5x
     new 4012a75  tinyusb: Add hardware initialization for STM32F1xx
     new fb9576c  tinyusb: Add hardware initialization for STM32F4xx STM32L4xx
     new 371c3d0  tinyusb: Add package for standard descriptors CDC,HID
     new d2b4b3c  console: Add console over USB CDC
     new 88d9df7  Update LICENSE file with TinyUSB content

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 LICENSE                                            |   4 +
 {sys/console => hw/usb/tinyusb}/README.md          |  42 +++-
 .../usb/tinyusb/cdc_console}/pkg.yml               |  11 +-
 hw/usb/tinyusb/cdc_console/src/cdc_console.c       | 147 ++++++++++++
 .../usb/tinyusb/cdc_console}/syscfg.yml            |  10 +-
 .../usb/tinyusb/include/tinyusb/tinyusb.h          |  26 +-
 hw/usb/tinyusb/nrf5x/include/tusb_hw.h             |  75 ++++++
 hw/{drivers/lora => usb/tinyusb/nrf5x}/pkg.yml     |  11 +-
 hw/usb/tinyusb/nrf5x/src/nrf5x.c                   |  98 ++++++++
 {sys/shell => hw/usb/tinyusb}/pkg.yml              |  36 +--
 hw/usb/tinyusb/src/tinyusb.c                       |  65 +++++
 .../tinyusb/std_descriptors/include/tusb_config.h  |  91 +++++++
 .../usb/tinyusb/std_descriptors}/pkg.yml           |  10 +-
 .../tinyusb/std_descriptors/src/std_descriptors.c  | 261 +++++++++++++++++++++
 hw/usb/tinyusb/std_descriptors/syscfg.yml          | 121 ++++++++++
 hw/usb/tinyusb/stm32_fsdev/include/tusb_hw.h       |  75 ++++++
 .../lora => usb/tinyusb/stm32_fsdev}/pkg.yml       |  11 +-
 hw/usb/tinyusb/stm32_fsdev/src/stm32_fsdev.c       |  66 ++++++
 .../usb/tinyusb/stm32_fsdev}/syscfg.yml            |  11 +-
 hw/usb/tinyusb/synopsys/include/tusb_hw.h          |  79 +++++++
 hw/{drivers/lora => usb/tinyusb/synopsys}/pkg.yml  |  11 +-
 hw/usb/tinyusb/synopsys/src/synopsys.c             |  71 ++++++
 .../tinyusb/synopsys}/syscfg.yml                   |  23 +-
 {mgmt/oicmgr => hw/usb/tinyusb}/syscfg.yml         |  32 +--
 sys/console/full/pkg.yml                           |   2 +
 sys/console/full/syscfg.yml                        |   3 +
 26 files changed, 1301 insertions(+), 91 deletions(-)
 copy {sys/console => hw/usb/tinyusb}/README.md (53%)
 copy {sys/console/full/history_log => hw/usb/tinyusb/cdc_console}/pkg.yml (80%)
 mode change 100644 => 100755
 create mode 100755 hw/usb/tinyusb/cdc_console/src/cdc_console.c
 copy {apps/hash_test => hw/usb/tinyusb/cdc_console}/syscfg.yml (84%)
 mode change 100644 => 100755
 copy apps/ocf_sample/src/ocf_sample.h => 
hw/usb/tinyusb/include/tinyusb/tinyusb.h (81%)
 mode change 100644 => 100755
 create mode 100755 hw/usb/tinyusb/nrf5x/include/tusb_hw.h
 copy hw/{drivers/lora => usb/tinyusb/nrf5x}/pkg.yml (85%)
 create mode 100755 hw/usb/tinyusb/nrf5x/src/nrf5x.c
 copy {sys/shell => hw/usb/tinyusb}/pkg.yml (57%)
 create mode 100755 hw/usb/tinyusb/src/tinyusb.c
 create mode 100755 hw/usb/tinyusb/std_descriptors/include/tusb_config.h
 copy {sys/sysdown => hw/usb/tinyusb/std_descriptors}/pkg.yml (83%)
 create mode 100755 hw/usb/tinyusb/std_descriptors/src/std_descriptors.c
 create mode 100644 hw/usb/tinyusb/std_descriptors/syscfg.yml
 create mode 100755 hw/usb/tinyusb/stm32_fsdev/include/tusb_hw.h
 copy hw/{drivers/lora => usb/tinyusb/stm32_fsdev}/pkg.yml (84%)
 create mode 100755 hw/usb/tinyusb/stm32_fsdev/src/stm32_fsdev.c
 copy {apps/loraping => hw/usb/tinyusb/stm32_fsdev}/syscfg.yml (79%)
 create mode 100755 hw/usb/tinyusb/synopsys/include/tusb_hw.h
 copy hw/{drivers/lora => usb/tinyusb/synopsys}/pkg.yml (84%)
 create mode 100755 hw/usb/tinyusb/synopsys/src/synopsys.c
 copy hw/{charge-control => usb/tinyusb/synopsys}/syscfg.yml (61%)
 copy {mgmt/oicmgr => hw/usb/tinyusb}/syscfg.yml (64%)

Reply via email to