1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

drivers/opt3001 : Add CONFIG_

Add CONFIG_ prefix to compile time configurations
This commit is contained in:
Akshai M 2020-04-23 23:02:05 +05:30
parent ca43957e9e
commit 80534dfc36
3 changed files with 7 additions and 7 deletions

View File

@ -69,8 +69,8 @@ extern "C" {
* If set to 0x45 the ADDR PIN should be connected to VDD.
* For more information on SerialBus Address, refer section 7.3.4.1 in datasheet.
*/
#ifndef OPT3001_I2C_ADDRESS
#define OPT3001_I2C_ADDRESS (0x45)
#ifndef CONFIG_OPT3001_I2C_ADDRESS
#define CONFIG_OPT3001_I2C_ADDRESS (0x45)
#endif
/**
@ -79,8 +79,8 @@ extern "C" {
* If set to 0x0000, the conversion time will be 100ms.
* If set to 0x0800, the conversion time will be 800ms
*/
#ifndef OPT3001_CONVERSION_TIME
#define OPT3001_CONVERSION_TIME OPT3001_CONVERSION_TIME_800_MS
#ifndef CONFIG_OPT3001_CONVERSION_TIME
#define CONFIG_OPT3001_CONVERSION_TIME OPT3001_CONVERSION_TIME_800_MS
#endif
/** @} */

View File

@ -36,7 +36,7 @@ extern "C" {
#define OPT3001_PARAM_I2C_DEV I2C_DEV(0)
#endif
#ifndef OPT3001_PARAM_I2C_ADDR
#define OPT3001_PARAM_I2C_ADDR (OPT3001_I2C_ADDRESS)
#define OPT3001_PARAM_I2C_ADDR (CONFIG_OPT3001_I2C_ADDRESS)
#endif
#ifndef OPT3001_PARAMS

View File

@ -58,7 +58,7 @@ int opt3001_init(opt3001_t *dev, const opt3001_params_t *params)
/* Set range number, mode of conversion and conversion time */
reg = OPT3001_CONFIG_RN_FSR;
reg |= OPT3001_REGS_CONFIG_MOC(OPT3001_CONFIG_M_SHUTDOWN);
reg |= OPT3001_REGS_CONFIG_CT(OPT3001_CONVERSION_TIME);
reg |= OPT3001_REGS_CONFIG_CT(CONFIG_OPT3001_CONVERSION_TIME);
/* Configure for latched window-style comparison operation */
reg |= OPT3001_REGS_CONFIG_L;
@ -81,7 +81,7 @@ int opt3001_init(opt3001_t *dev, const opt3001_params_t *params)
int opt3001_reset(const opt3001_t *dev)
{
uint16_t reg = OPT3001_CONFIG_RESET;
reg &= (0xF0FF | OPT3001_REGS_CONFIG_CT(OPT3001_CONVERSION_TIME));
reg &= (0xF0FF | OPT3001_REGS_CONFIG_CT(CONFIG_OPT3001_CONVERSION_TIME));
reg = htons(reg);
/* Acquire exclusive access to the bus. */