You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by vi...@apache.org on 2020/05/21 18:09:21 UTC

[mynewt-core] branch master updated (aabe520 -> 8541539)

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

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


    from aabe520  compiler: Set -fno-common for all compilers
     new 851da2d  hw/drivers/temp: Add generic temperature sensor interface
     new bb379ec  hw/drivers/temp/temp_nrf52: Add driver for nRF52 temperature sensor
     new decf861  hw/mcu/nordic/nrf52xxx: Create temperature driver if enabled in syscfg
     new 8541539  Merge pull request #2293 from caspermeijn/temp_nrf52

The 9635 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:
 hw/drivers/temp/include/temp/temp.h                | 107 +++++++++++++++++++++
 hw/drivers/{pwm => temp}/pkg.yml                   |   6 +-
 hw/drivers/temp/src/temp.c                         |  46 +++++++++
 .../temp_nrf52/include/temp_nrf52/temp_nrf52.h     |  19 ++++
 .../{adc/adc_nrf51 => temp/temp_nrf52}/pkg.yml     |  10 +-
 hw/drivers/temp/temp_nrf52/src/temp_nrf52.c        |  64 ++++++++++++
 hw/mcu/nordic/nrf52xxx/pkg.yml                     |   3 +
 hw/mcu/nordic/nrf52xxx/src/nrf52_periph.c          |  24 +++++
 hw/mcu/nordic/nrf52xxx/syscfg.yml                  |   4 +
 9 files changed, 276 insertions(+), 7 deletions(-)
 create mode 100644 hw/drivers/temp/include/temp/temp.h
 copy hw/drivers/{pwm => temp}/pkg.yml (90%)
 create mode 100644 hw/drivers/temp/src/temp.c
 create mode 100644 hw/drivers/temp/temp_nrf52/include/temp_nrf52/temp_nrf52.h
 copy hw/drivers/{adc/adc_nrf51 => temp/temp_nrf52}/pkg.yml (84%)
 create mode 100644 hw/drivers/temp/temp_nrf52/src/temp_nrf52.c