stepdown7 2.1.0.0
stepdown7.h
Go to the documentation of this file.
1/****************************************************************************
2** Copyright (C) 2020 MikroElektronika d.o.o.
3** Contact: https://www.mikroe.com/contact
4**
5** Permission is hereby granted, free of charge, to any person obtaining a copy
6** of this software and associated documentation files (the "Software"), to deal
7** in the Software without restriction, including without limitation the rights
8** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9** copies of the Software, and to permit persons to whom the Software is
10** furnished to do so, subject to the following conditions:
11** The above copyright notice and this permission notice shall be
12** included in all copies or substantial portions of the Software.
13**
14** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
16** OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
19** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20** USE OR OTHER DEALINGS IN THE SOFTWARE.
21****************************************************************************/
22
28#ifndef STEPDOWN7_H
29#define STEPDOWN7_H
30
31#ifdef __cplusplus
32extern "C"{
33#endif
34
39#ifdef PREINIT_SUPPORTED
40#include "preinit.h"
41#endif
42
43#ifdef MikroCCoreVersion
44 #if MikroCCoreVersion >= 1
45 #include "delays.h"
46 #endif
47#endif
48
49#include "drv_digital_out.h"
50#include "drv_digital_in.h"
51#include "drv_i2c_master.h"
52
73#define STEPDOWN7_PFM_PWM_MODE 0x00
74#define STEPDOWN7_FORCED_PWM_MODE 0x01
75#define STEPDOWN7_R1_RPROG_ADDRESS 0x00
76
81#define STEPDOWN7_PIN_STATE_HIGH 0x01
82#define STEPDOWN7_PIN_STATE_LOW 0x00
83
88#define STEPDOWN7_DIGIPOT_MAX_VALUE 100000ul
89#define STEPDOWN7_DIGIPOT_RESOLUTION 257
90#define STEPDOWN7_ROUND_TO_NEAREST_INT 0.5
91#define STEPDOWN7_R8_VALUE 15000u
92#define STEPDOWN7_1V5_RESISTANCE 17500u
93#define STEPDOWN7_2V5_RESISTANCE 42500u
94#define STEPDOWN7_3V3_RESISTANCE 62500u
95
96
101#define STEPDOWN7_OUTPUT_1V5 0
102#define STEPDOWN7_OUTPUT_2V5 1
103#define STEPDOWN7_OUTPUT_3V3 2
104
110#define STEPDOWN7_ADDR_A2A1A0_000 0x28
111#define STEPDOWN7_ADDR_A2A1A0_001 0x29
112#define STEPDOWN7_ADDR_A2A1A0_010 0x2A
113#define STEPDOWN7_ADDR_A2A1A0_011 0x2B
114#define STEPDOWN7_ADDR_A2A1A0_100 0x2C
115#define STEPDOWN7_ADDR_A2A1A0_101 0x2D
116#define STEPDOWN7_ADDR_A2A1A0_110 0x2E
117#define STEPDOWN7_ADDR_A2A1A0_111 0x2F
118
119 // stepdown7_set
120
135#define STEPDOWN7_MAP_MIKROBUS( cfg, mikrobus ) \
136 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
137 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
138 cfg.en = MIKROBUS( mikrobus, MIKROBUS_RST ); \
139 cfg.md = MIKROBUS( mikrobus, MIKROBUS_PWM ); \
140 cfg.pg = MIKROBUS( mikrobus, MIKROBUS_INT )
141
142 // stepdown7_map
143 // stepdown7
144
149typedef struct
150{
151 // Output pins
152 digital_out_t en ;
153 digital_out_t md;
155 // Input pins
156 digital_in_t pg;
158 // Modules
159 i2c_master_t i2c;
161 // I2C slave address
165
170typedef struct
171{
172 pin_name_t scl;
173 pin_name_t sda;
175 pin_name_t en ;
176 pin_name_t md;
177 pin_name_t pg;
179 uint32_t i2c_speed;
180 uint8_t i2c_address;
183
194
211
226
240
255err_t stepdown7_generic_write ( stepdown7_t *ctx, uint8_t reg, uint8_t *data_in, uint8_t len );
256
271err_t stepdown7_generic_read ( stepdown7_t *ctx, uint8_t reg, uint8_t *data_out, uint8_t len );
272
282void stepdown7_set_mode ( stepdown7_t *ctx, uint8_t mode );
283
293void stepdown7_set_en ( stepdown7_t *ctx, uint8_t en_state );
294
304
316err_t stepdown7_set_wiper_pos ( stepdown7_t *ctx, uint16_t wiper_pos );
317
329err_t stepdown7_set_r1_resistance ( stepdown7_t *ctx, uint32_t resistance );
330
342err_t stepdown7_set_output ( stepdown7_t *ctx, uint8_t voltage );
343
344
345#ifdef __cplusplus
346}
347#endif
348#endif // STEPDOWN7_H
349
350 // stepdown7
351
352// ------------------------------------------------------------------------ END
void stepdown7_set_mode(stepdown7_t *ctx, uint8_t mode)
Step Down 5 mode selection function.
err_t stepdown7_set_r1_resistance(stepdown7_t *ctx, uint32_t resistance)
Step Down 7 set potentiometer resistance.
err_t stepdown7_generic_read(stepdown7_t *ctx, uint8_t reg, uint8_t *data_out, uint8_t len)
Step Down 7 I2C reading function.
err_t stepdown7_set_output(stepdown7_t *ctx, uint8_t voltage)
Step Down 7 set output voltage.
err_t stepdown7_generic_write(stepdown7_t *ctx, uint8_t reg, uint8_t *data_in, uint8_t len)
Step Down 7 I2C writing function.
err_t stepdown7_init(stepdown7_t *ctx, stepdown7_cfg_t *cfg)
Step Down 7 initialization function.
void stepdown7_set_en(stepdown7_t *ctx, uint8_t en_state)
Step Down 5 set EN pin state function.
uint8_t stepdown7_get_pg_state(stepdown7_t *ctx)
Step Down 5 get PG pin state function.
err_t stepdown7_set_wiper_pos(stepdown7_t *ctx, uint16_t wiper_pos)
Step Down 5 set wiper 1 position.
err_t stepdown7_default_cfg(stepdown7_t *ctx)
Step Down 7 default configuration function.
void stepdown7_cfg_setup(stepdown7_cfg_t *cfg)
Step Down 7 configuration object setup function.
stepdown7_return_value_t
Step Down 7 Click return value data.
Definition stepdown7.h:189
@ STEPDOWN7_OK
Definition stepdown7.h:190
@ STEPDOWN7_ERROR
Definition stepdown7.h:191
Step Down 7 Click configuration object.
Definition stepdown7.h:171
uint32_t i2c_speed
Definition stepdown7.h:179
pin_name_t md
Definition stepdown7.h:176
pin_name_t scl
Definition stepdown7.h:172
pin_name_t en
Definition stepdown7.h:175
pin_name_t sda
Definition stepdown7.h:173
pin_name_t pg
Definition stepdown7.h:177
uint8_t i2c_address
Definition stepdown7.h:180
Step Down 7 Click context object.
Definition stepdown7.h:150
digital_out_t md
Definition stepdown7.h:153
i2c_master_t i2c
Definition stepdown7.h:159
digital_out_t en
Definition stepdown7.h:152
uint8_t slave_address
Definition stepdown7.h:162
digital_in_t pg
Definition stepdown7.h:156