2015-09-22 07:28:58 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Intel Corporation.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-09-22 07:28:58 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file Header file for the PCA9685 PWM driver.
|
|
|
|
*/
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_DRIVERS_PWM_PWM_PCA9685_H_
|
|
|
|
#define ZEPHYR_DRIVERS_PWM_PWM_PCA9685_H_
|
2015-09-22 07:28:58 +08:00
|
|
|
|
|
|
|
#include <gpio.h>
|
|
|
|
#include <i2c.h>
|
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-09-22 07:28:58 +08:00
|
|
|
/**
|
|
|
|
* @brief Initialization function for PCA9685
|
|
|
|
*
|
|
|
|
* @param dev Device struct
|
2016-03-10 01:01:20 +08:00
|
|
|
* @return 0 if successful, failed otherwise
|
2015-09-22 07:28:58 +08:00
|
|
|
*/
|
|
|
|
extern int pwm_pca9685_init(struct device *dev);
|
|
|
|
|
|
|
|
/** Configuration data */
|
|
|
|
struct pwm_pca9685_config {
|
|
|
|
/** The master I2C device's name */
|
|
|
|
const char * const i2c_master_dev_name;
|
|
|
|
|
|
|
|
/** The slave address of the chip */
|
2017-04-21 23:03:20 +08:00
|
|
|
u16_t i2c_slave_addr;
|
|
|
|
u8_t stride[2];
|
2015-09-22 07:28:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Runtime driver data */
|
|
|
|
struct pwm_pca9685_drv_data {
|
|
|
|
/** Master I2C device */
|
|
|
|
struct device *i2c_master;
|
|
|
|
};
|
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#endif /* ZEPHYR_DRIVERS_PWM_PWM_PCA9685_H_ */
|