You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2018/05/28 10:03:17 UTC

[mynewt-core] branch master updated (883e8f6 -> 6b95314)

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

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


    from 883e8f6  Merge pull request #1121 from JuulLabs/fix/extrajtagcmds
     add cc90254  sysview: Refactor os_trace APIs
     add 9db8cd7  sysview: Improve OS APIs tracing
     add 40e3f2d  sysview: Improve task activity tracing
     add 9f7f12a  sysview: Add tracing for few more ISRs for Cortex-M0/M4
     add 8963c38  sysview: Add tracing for few more ISRs for nRF51/nRF52
     add 454cdc1  sysview: Make sysview API traces configurable
     add cdf16be  sysview: Add tracing of os_mempool and os_mbuf APIs
     add 351779e  sysview: Use proper priorities order in description file
     add 04c1e51  sysview: Refactor sys/sysview package
     add 550d346  sysview: Add API to trace non-OS modules
     add dc470c3  sysview: Move syscfg to main package
     add 976edbe  sysview: Add option to use hal_timer for timestamping
     add 39f7545  hw/drivers/pwm: Add ISR tracing for nRF52 PWM driver
     add 62f2e49  hw/drivers/adc: Add ISR tracing for nRF52 ADC driver
     add e7a0391  hw/drivers/trng: Add ISR tracing for nRF52 TRNG driver
     add 6b95314  Merge pull request #1107 from andrzej-kaczmarek/systemview

No new revisions were added by this update.

Summary of changes:
 hw/drivers/adc/adc_nrf52/src/adc_nrf52.c           |  13 +
 hw/drivers/pwm/pwm_nrf52/src/pwm_nrf52.c           |  65 ++++-
 hw/drivers/trng/trng_nrf52/src/trng_nrf52.c        |   4 +
 hw/mcu/ambiq/apollo2/src/hal_gpio.c                |   4 +-
 hw/mcu/ambiq/apollo2/src/hal_uart.c                |   4 +-
 hw/mcu/arc/snps/src/hal_os_tick.c                  |   4 +-
 hw/mcu/nordic/nrf51xxx/include/mcu/mcu.h           |   7 +
 hw/mcu/nordic/nrf51xxx/src/hal_timer.c             |   8 +
 hw/mcu/nordic/nrf52xxx/include/mcu/mcu.h           |  29 ++
 hw/mcu/nordic/nrf52xxx/src/hal_gpio.c              |   4 +-
 hw/mcu/nordic/nrf52xxx/src/hal_os_tick.c           |   4 +-
 hw/mcu/nordic/nrf52xxx/src/hal_spi.c               |  12 +-
 hw/mcu/nordic/nrf52xxx/src/hal_timer.c             |   8 +-
 hw/mcu/nordic/nrf52xxx/src/hal_uart.c              |   4 +-
 hw/mcu/nordic/nrf52xxx/src/hal_watchdog.c          |   4 +-
 kernel/os/include/os/os_trace_api.h                | 302 +++++++++++++++++----
 kernel/os/src/arch/cortex_m0/m0/HAL_CM0.s          |  46 +++-
 kernel/os/src/arch/cortex_m3/m3/HAL_CM3.s          |   9 +
 kernel/os/src/arch/cortex_m4/m4/HAL_CM4.s          |  44 +++
 kernel/os/src/arch/cortex_m7/m7/HAL_CM7.s          |   9 +
 kernel/os/src/os_callout.c                         |  29 +-
 kernel/os/src/os_eventq.c                          |  36 ++-
 kernel/os/src/os_mbuf.c                            |  46 +++-
 kernel/os/src/os_mempool.c                         |  31 ++-
 kernel/os/src/os_mutex.c                           |  72 +++--
 kernel/os/src/os_sched.c                           |   6 +-
 kernel/os/src/os_sem.c                             |  58 ++--
 kernel/os/src/os_task.c                            |   1 +
 kernel/os/syscfg.yml                               |  25 ++
 sys/sysview/SYSVIEW_Apache Mynewt.txt              |  30 ++
 sys/sysview/SYSVIEW_Mynewt.txt                     |   5 -
 .../include/sysview/SEGGER_SYSVIEW_Mynewt.h        |  28 --
 sys/sysview/src/SEGGER_SYSVIEW_Config_Mynewt.c     | 133 ---------
 sys/sysview/src/SEGGER_SYSVIEW_Mynewt.c            | 173 ------------
 sys/sysview/src/sysview_mynewt.c                   | 144 ++++++++++
 sys/sysview/{vendor => }/syscfg.yml                |  14 +
 36 files changed, 925 insertions(+), 490 deletions(-)
 create mode 100644 sys/sysview/SYSVIEW_Apache Mynewt.txt
 delete mode 100644 sys/sysview/SYSVIEW_Mynewt.txt
 delete mode 100644 sys/sysview/include/sysview/SEGGER_SYSVIEW_Mynewt.h
 delete mode 100644 sys/sysview/src/SEGGER_SYSVIEW_Config_Mynewt.c
 delete mode 100644 sys/sysview/src/SEGGER_SYSVIEW_Mynewt.c
 create mode 100644 sys/sysview/src/sysview_mynewt.c
 rename sys/sysview/{vendor => }/syscfg.yml (66%)

-- 
To stop receiving notification emails like this one, please contact
andk@apache.org.