You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2022/07/29 13:09:32 UTC

[incubator-nuttx] branch master updated (4ab8f9383d -> 666c2d255a)

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

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


    from 4ab8f9383d w25qxxxjv.c: Use PRIxOFF to format off_t
     new 07c0b2844a Update stm32_mlx90614.c
     new 9851d4483b Update stm32_max6675.c
     new 7a9b434ae6 Update stm32_max31855.c
     new 666c2d255a Update stm32_ina219.c

The 4 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:
 boards/arm/stm32/common/src/stm32_ina219.c   | 2 +-
 boards/arm/stm32/common/src/stm32_max31855.c | 2 +-
 boards/arm/stm32/common/src/stm32_max6675.c  | 2 +-
 boards/arm/stm32/common/src/stm32_mlx90614.c | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)


[incubator-nuttx] 03/04: Update stm32_max31855.c

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 7a9b434ae689644e224b55d4c445230ddf268d7d
Author: simbit18 <10...@users.noreply.github.com>
AuthorDate: Fri Jul 29 11:07:37 2022 +0200

    Update stm32_max31855.c
    
    Fix mistakes in comments
---
 boards/arm/stm32/common/src/stm32_max31855.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boards/arm/stm32/common/src/stm32_max31855.c b/boards/arm/stm32/common/src/stm32_max31855.c
index 9de0424cca..cd5dac76fc 100644
--- a/boards/arm/stm32/common/src/stm32_max31855.c
+++ b/boards/arm/stm32/common/src/stm32_max31855.c
@@ -67,7 +67,7 @@ int board_max31855_initialize(int devno, int busno)
       return -ENODEV;
     }
 
-  /* Then register the barometer sensor */
+  /* Then register the temperature sensor */
 
   snprintf(devpath, 12, "/dev/temp%d", devno);
   ret = max31855_register(devpath, spi, devno);


[incubator-nuttx] 01/04: Update stm32_mlx90614.c

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 07c0b2844a6c0af8860779645d835fdcd16732a4
Author: simbit18 <10...@users.noreply.github.com>
AuthorDate: Fri Jul 29 11:00:55 2022 +0200

    Update stm32_mlx90614.c
    
    Fix mistakes in comments and snerr
---
 boards/arm/stm32/common/src/stm32_mlx90614.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/boards/arm/stm32/common/src/stm32_mlx90614.c b/boards/arm/stm32/common/src/stm32_mlx90614.c
index c33cfb2deb..f497eb4753 100644
--- a/boards/arm/stm32/common/src/stm32_mlx90614.c
+++ b/boards/arm/stm32/common/src/stm32_mlx90614.c
@@ -76,13 +76,13 @@ int board_mlx90614_initialize(int devno, int busno)
       return -ENODEV;
     }
 
-  /* Then register the light sensor */
+  /* Then register the Infrared Thermometer sensor */
 
   snprintf(devpath, 12, "/dev/therm%d", devno);
   ret = mlx90614_register(devpath, i2c, MLX90614_ADDRESS);
   if (ret < 0)
     {
-      snerr("ERROR: Error registering BM180\n");
+      snerr("ERROR: Error registering MLX90614\n");
     }
 
   return ret;


[incubator-nuttx] 02/04: Update stm32_max6675.c

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 9851d4483b10903ed825edc057dcb4690371d2d2
Author: simbit18 <10...@users.noreply.github.com>
AuthorDate: Fri Jul 29 11:05:50 2022 +0200

    Update stm32_max6675.c
    
    Fix mistakes in comments
---
 boards/arm/stm32/common/src/stm32_max6675.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boards/arm/stm32/common/src/stm32_max6675.c b/boards/arm/stm32/common/src/stm32_max6675.c
index 5124b1727c..19c7b26cd7 100644
--- a/boards/arm/stm32/common/src/stm32_max6675.c
+++ b/boards/arm/stm32/common/src/stm32_max6675.c
@@ -88,7 +88,7 @@ int board_max6675_initialize(int devno, int busno)
       return -ENODEV;
     }
 
-  /* Then register the barometer sensor */
+  /* Then register the temperature sensor */
 
   snprintf(devpath, 12, "/dev/temp%d", devno);
   ret = max6675_register(devpath, spi);


[incubator-nuttx] 04/04: Update stm32_ina219.c

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 666c2d255ac05c765fb5ee211df42b1b964e9e59
Author: simbit18 <10...@users.noreply.github.com>
AuthorDate: Fri Jul 29 11:22:50 2022 +0200

    Update stm32_ina219.c
    
    Fix mistakes in syslog
---
 boards/arm/stm32/common/src/stm32_ina219.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boards/arm/stm32/common/src/stm32_ina219.c b/boards/arm/stm32/common/src/stm32_ina219.c
index 21251fb7e4..16cddb37e6 100644
--- a/boards/arm/stm32/common/src/stm32_ina219.c
+++ b/boards/arm/stm32/common/src/stm32_ina219.c
@@ -97,7 +97,7 @@ int board_ina219_initialize(int devno, int busno)
   ret = ina219_register(devpath, i2c, 0x40, 100000, 0x00);
   if (ret < 0)
     {
-      syslog(LOG_ERR, "ERROR: Error registering hih6130\n");
+      syslog(LOG_ERR, "ERROR: Error registering INA219\n");
     }
 
   return ret;