Fixed compilation warnings

This commit is contained in:
dooku 2021-07-18 11:17:36 +02:00
parent 0f18db8c36
commit 92cbce9d4f
5 changed files with 8 additions and 7 deletions

2
.gitignore vendored
View File

@ -36,4 +36,4 @@ fp-info-cache
# #
fw/Debug fw/Debug
fw/.settings fw/.settings/language.settings.xml

View File

@ -50,6 +50,7 @@ extern "C" {
/* USER CODE BEGIN Includes */ /* USER CODE BEGIN Includes */
#include "i2c.h" #include "i2c.h"
#include "scd4x.h" #include "scd4x.h"
#include "sht4x.h"
/* USER CODE END Includes */ /* USER CODE END Includes */
/* Exported types ------------------------------------------------------------*/ /* Exported types ------------------------------------------------------------*/

View File

@ -5,8 +5,8 @@
* Author: user * Author: user
*/ */
#ifndef INC_SHT4X_H_ #ifndef INC_SCD4X_H_
#define INC_SHT4X_H_ #define INC_SCD4X_H_
#include "stdint.h" #include "stdint.h"
#include "stm32l0xx_ll_i2c.h" #include "stm32l0xx_ll_i2c.h"
@ -54,4 +54,4 @@ int8_t scd4x_perform_factory_reset( void );
int8_t scd4x_read_measurement(int * co2, int *temperature, int *relative_humidity); int8_t scd4x_read_measurement(int * co2, int *temperature, int *relative_humidity);
#endif /* INC_SHT4X_H_ */ #endif /* INC_SCD4X_H_ */

View File

@ -25,7 +25,7 @@ int8_t scd4x_send_cmd(scd4x_cmd_t cmd)
int8_t scd4x_read_data(uint8_t *buffer, int len) int8_t scd4x_read_data(uint8_t *buffer, int len)
{ {
return SCD4X_OK;
} }
int8_t scd4x_start_periodic_measurement( void ) int8_t scd4x_start_periodic_measurement( void )

View File

@ -9,12 +9,12 @@
int8_t sht4x_send_cmd(sht4x_cmd_t cmd) int8_t sht4x_send_cmd(sht4x_cmd_t cmd)
{ {
return SHT4X_OK;
} }
int8_t sht4x_read_data(uint8_t *buffer, int len) int8_t sht4x_read_data(uint8_t *buffer, int len)
{ {
return SHT4X_OK;
} }
int8_t sht4x_measure(int *temperature, int *relative_humidity) int8_t sht4x_measure(int *temperature, int *relative_humidity)