You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2022/01/24 02:24:53 UTC

[incubator-nuttx] branch master updated (48c7fa6 -> 31b1fd5)

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

xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from 48c7fa6  boards/arm/samv7/common: add HSMCI0 boot mount configuration option
     add d664385  Move MS58xx CRC-4 to include/ it will be used by other sensors
     add d816380  sensors: Add support to MS5611 Barometer
     add eb39b3a  esp32-devkitc: Add support to MS5611
     add 31b1fd5  stm32f4discovery: Add support to MS5611

No new revisions were added by this update.

Summary of changes:
 .../include/{stm32_lm75.h => stm32_ms5611.h}       |  24 +-
 boards/arm/stm32/common/src/Make.defs              |   4 +
 .../common/src/{stm32_bh1750.c => stm32_ms5611.c}  |  48 +-
 .../arm/stm32/stm32f4discovery/src/stm32_bringup.c |  15 +
 .../xtensa/esp32/common/include/esp32_ms5611.h     |  27 +-
 boards/xtensa/esp32/common/src/Make.defs           |   4 +
 .../esp32/common/src/esp32_ms5611.c}               |  54 +-
 .../configs/{module => ms5611}/defconfig           |  27 +-
 .../xtensa/esp32/esp32-devkitc/src/esp32_bringup.c |  16 +
 drivers/sensors/Kconfig                            |  40 ++
 drivers/sensors/Make.defs                          |   4 +
 drivers/sensors/ms5611.c                           | 705 +++++++++++++++++++++
 drivers/sensors/ms58xx.c                           |  59 +-
 include/nuttx/sensors/{mb7040.h => ms5611.h}       |  46 +-
 .../nuttx/sensors/msxxxx_crc4.h                    |  57 +-
 15 files changed, 939 insertions(+), 191 deletions(-)
 copy boards/arm/stm32/common/include/{stm32_lm75.h => stm32_ms5611.h} (86%)
 copy boards/arm/stm32/common/src/{stm32_bh1750.c => stm32_ms5611.c} (70%)
 copy arch/arm/src/cxd56xx/cxd56_geofence.h => boards/xtensa/esp32/common/include/esp32_ms5611.h (77%)
 copy boards/{arm/stm32/common/src/stm32_mpl115a.c => xtensa/esp32/common/src/esp32_ms5611.c} (67%)
 copy boards/xtensa/esp32/esp32-devkitc/configs/{module => ms5611}/defconfig (77%)
 create mode 100644 drivers/sensors/ms5611.c
 copy include/nuttx/sensors/{mb7040.h => ms5611.h} (70%)
 copy libs/libc/queue/sq_rem.c => include/nuttx/sensors/msxxxx_crc4.h (62%)