angle2 2.0.0.0
angle2.h
Go to the documentation of this file.
1/*
2 * MikroSDK - MikroE Software Development Kit
3 * Copyright© 2020 MikroElektronika d.o.o.
4 *
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without restriction,
8 * including without limitation the rights to use, copy, modify, merge,
9 * publish, distribute, sublicense, and/or sell copies of the Software,
10 * and to permit persons to whom the Software is furnished to do so,
11 * subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22 * OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
33// ----------------------------------------------------------------------------
34
35#ifndef ANGLE2_H
36#define ANGLE2_H
37
42#ifdef PREINIT_SUPPORTED
43#include "preinit.h"
44#endif
45
46#ifdef MikroCCoreVersion
47 #if MikroCCoreVersion >= 1
48 #include "delays.h"
49 #endif
50#endif
51
52#include "drv_digital_out.h"
53#include "drv_digital_in.h"
54#include "drv_spi_master.h"
55
56// -------------------------------------------------------------- PUBLIC MACROS
67#define ANGLE2_MAP_MIKROBUS( cfg, mikrobus ) \
68 cfg.miso = MIKROBUS( mikrobus, MIKROBUS_MISO ); \
69 cfg.mosi = MIKROBUS( mikrobus, MIKROBUS_MOSI ); \
70 cfg.sck = MIKROBUS( mikrobus, MIKROBUS_SCK ); \
71 cfg.cs = MIKROBUS( mikrobus, MIKROBUS_CS )
78#define ANGLE2_RETVAL uint8_t
79
80#define ANGLE2_OK 0x00
81#define ANGLE2_INIT_ERROR 0xFF
88#define ANGLE2_WRITE_CMD 0x20
89#define ANGLE2_READ_CMD 0x10
90#define ANGLE2_DUMMY_BYTE 0x00
91#define ANGLE2_REG_ADDR_MASK 0x0F
92
93#define ANGLE2_BIAS_CURR_TRIMM_REG_3 0x03
94#define ANGLE2_ZERO_POS_MSB_REG_4 0x04
95#define ANGLE2_AXIS_TRIMM_AND_ZERO_LSB_REG_5 0x05
96#define ANGLE2_FLASH_N_REG_9 0x09
97
98#define ANGLE2_X_AXIS_TRIMM_EN 0x10
99#define ANGLE2_Y_AXIS_TRIMM_EN 0x20
100#define ANGLE2_AXIS_TRIMM_DIS 0x00
101
102#define ANGLE2_FLASH_REG_3 0x08
103#define ANGLE2_FLASH_REG_4 0x10
104#define ANGLE2_FLASH_REG_5 0x20
105#define ANGLE2_NO_FLASH 0x00
106
107#define ANGLE2_DEG_LSB 0.08789
108#define ANGLE2_MAX_SCALE_359_91_DEG 359.91211
109#define ANGLE2_MIN_SCALE_0_DEG 0
112 // End group macro
113// --------------------------------------------------------------- PUBLIC TYPES
122typedef struct
123{
124 // Output pins
125
126 digital_out_t cs;
127
128 // Modules
129
130 spi_master_t spi;
131 pin_name_t chip_select;
132
133} angle2_t;
134
138typedef struct
139{
140 // Communication gpio pins
141
142 pin_name_t miso;
143 pin_name_t mosi;
144 pin_name_t sck;
145 pin_name_t cs;
146
147 // static variable
148
149 uint32_t spi_speed;
150 spi_master_mode_t spi_mode;
151 spi_master_chip_select_polarity_t cs_polarity;
152
154
155 // End types group
156// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
157
162#ifdef __cplusplus
163extern "C"{
164#endif
165
175
185
194
206void angle2_generic_transfer ( angle2_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len );
207
217double angle2_write_reg ( angle2_t *ctx, uint8_t addr, uint8_t input );
218
228double angle2_read_reg ( angle2_t *ctx, uint8_t addr, uint8_t *output );
229
238
246double angle2_get_angle_with_time_index ( angle2_t *ctx, uint8_t *time_index );
247
256void angle2_set_zero_scale ( angle2_t *ctx, double zero_deg );
257
266void angle2_enable_trimming ( angle2_t *ctx, uint8_t state );
267
276void angle2_flash_reg ( angle2_t *ctx, uint8_t reg_sel );
277
278#ifdef __cplusplus
279}
280#endif
281#endif // _ANGLE2_H_
282
283 // End public_function group
285
286// ------------------------------------------------------------------------- END
#define ANGLE2_RETVAL
Definition angle2.h:78
double angle2_get_angle(angle2_t *ctx)
Angle read function.
double angle2_get_angle_with_time_index(angle2_t *ctx, uint8_t *time_index)
Angle with time index read function.
void angle2_cfg_setup(angle2_cfg_t *cfg)
Config Object Initialization function.
void angle2_default_cfg(angle2_t *ctx)
Click Default Configuration function.
void angle2_enable_trimming(angle2_t *ctx, uint8_t state)
Enable trimming function.
void angle2_flash_reg(angle2_t *ctx, uint8_t reg_sel)
Flash register function.
void angle2_set_zero_scale(angle2_t *ctx, double zero_deg)
Set zero scale function.
ANGLE2_RETVAL angle2_init(angle2_t *ctx, angle2_cfg_t *cfg)
Initialization function.
void angle2_generic_transfer(angle2_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len)
Generic transfer function.
double angle2_write_reg(angle2_t *ctx, uint8_t addr, uint8_t input)
Register write function.
double angle2_read_reg(angle2_t *ctx, uint8_t addr, uint8_t *output)
Register read function.
Click configuration structure definition.
Definition angle2.h:139
spi_master_chip_select_polarity_t cs_polarity
Definition angle2.h:151
pin_name_t sck
Definition angle2.h:144
spi_master_mode_t spi_mode
Definition angle2.h:150
pin_name_t mosi
Definition angle2.h:143
uint32_t spi_speed
Definition angle2.h:149
pin_name_t miso
Definition angle2.h:142
pin_name_t cs
Definition angle2.h:145
Click ctx object definition.
Definition angle2.h:123
digital_out_t cs
Definition angle2.h:126
spi_master_t spi
Definition angle2.h:130
pin_name_t chip_select
Definition angle2.h:131