rotaryy 2.0.0.0
rotaryy.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 ROTARYY_H
29#define ROTARYY_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_spi_master.h"
52
68#define ROTARYY_ONE_LED 0x0001
69#define ROTARYY_TWO_LED 0x0101
70#define ROTARYY_FOUR_LED 0x1111
71#define ROTARYY_EIGHT_LED 0x5555
72#define ROTARYY_RESET_LED 0x0000
73
74 // rotaryy_led
75
90#define ROTARYY_MAP_MIKROBUS( cfg, mikrobus ) \
91 cfg.miso = MIKROBUS( mikrobus, MIKROBUS_MISO ); \
92 cfg.mosi = MIKROBUS( mikrobus, MIKROBUS_MOSI ); \
93 cfg.sck = MIKROBUS( mikrobus, MIKROBUS_SCK ); \
94 cfg.cs = MIKROBUS( mikrobus, MIKROBUS_CS ); \
95 cfg.ecb = MIKROBUS( mikrobus, MIKROBUS_AN ); \
96 cfg.rst = MIKROBUS( mikrobus, MIKROBUS_RST ); \
97 cfg.eca = MIKROBUS( mikrobus, MIKROBUS_PWM ); \
98 cfg.sw = MIKROBUS( mikrobus, MIKROBUS_INT )
99
100 // rotaryy_map
101 // rotaryy
102
107typedef struct
108{
109 // Output pins
110
111 digital_out_t rst;
112 digital_out_t cs;
113
114 // Input pins
115
116 digital_in_t ecb;
117 digital_in_t eca;
118 digital_in_t sw;
119
120 // Modules
121
122 spi_master_t spi;
124 pin_name_t chip_select;
126} rotaryy_t;
127
132typedef struct
133{
134 // Communication gpio pins
135
136 pin_name_t miso;
137 pin_name_t mosi;
138 pin_name_t sck;
139 pin_name_t cs;
141 // Additional gpio pins
142
143 pin_name_t ecb;
144 pin_name_t rst;
145 pin_name_t eca;
146 pin_name_t sw;
147
148 // static variable
149
150 uint32_t spi_speed;
151 spi_master_mode_t spi_mode;
152 spi_master_chip_select_polarity_t cs_polarity;
155
160typedef enum
161{
163 ROTARYY_ERROR = -1
164
166
183
199
214void rotaryy_generic_transfer ( rotaryy_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len );
215
226void rotaryy_turn_on_led_by_data ( rotaryy_t *ctx, uint16_t write_data );
227
238void rotaryy_turn_on_led_by_position ( rotaryy_t *ctx, uint8_t led_position );
239
251
260uint16_t rotaryy_get_led_data ( uint8_t current_led_state );
261
272
283
294
295#ifdef __cplusplus
296}
297#endif
298#endif // ROTARYY_H
299
300 // rotaryy
301
302// ------------------------------------------------------------------------ END
uint16_t rotaryy_get_led_data(uint8_t current_led_state)
Get led data state.
uint8_t rotaryy_get_eca_state(rotaryy_t *ctx)
State eca pin.
uint8_t rotaryy_get_ecb_state(rotaryy_t *ctx)
State ecb pin.
uint8_t rotaryy_button_push(rotaryy_t *ctx)
Button push state.
void rotaryy_generic_transfer(rotaryy_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len)
ROTARY Y data transfer function.
err_t rotaryy_init(rotaryy_t *ctx, rotaryy_cfg_t *cfg)
ROTARY Y initialization function.
void rotaryy_reset_led(rotaryy_t *ctx)
Reset led.
void rotaryy_turn_on_led_by_data(rotaryy_t *ctx, uint16_t write_data)
ROTARY Y generic data write function.
void rotaryy_cfg_setup(rotaryy_cfg_t *cfg)
ROTARY Y configuration object setup function.
void rotaryy_turn_on_led_by_position(rotaryy_t *ctx, uint8_t led_position)
ROTARY Y turn on led by position function.
rotaryy_return_value_t
ROTARY Y Click return value data.
Definition rotaryy.h:161
@ ROTARYY_OK
Definition rotaryy.h:162
@ ROTARYY_ERROR
Definition rotaryy.h:163
ROTARY Y Click configuration object.
Definition rotaryy.h:133
spi_master_chip_select_polarity_t cs_polarity
Definition rotaryy.h:152
pin_name_t eca
Definition rotaryy.h:145
pin_name_t sck
Definition rotaryy.h:138
spi_master_mode_t spi_mode
Definition rotaryy.h:151
pin_name_t mosi
Definition rotaryy.h:137
uint32_t spi_speed
Definition rotaryy.h:150
pin_name_t sw
Definition rotaryy.h:146
pin_name_t miso
Definition rotaryy.h:136
pin_name_t rst
Definition rotaryy.h:144
pin_name_t cs
Definition rotaryy.h:139
pin_name_t ecb
Definition rotaryy.h:143
ROTARY Y Click context object.
Definition rotaryy.h:108
digital_out_t cs
Definition rotaryy.h:112
digital_in_t eca
Definition rotaryy.h:117
spi_master_t spi
Definition rotaryy.h:122
digital_in_t ecb
Definition rotaryy.h:116
digital_in_t sw
Definition rotaryy.h:118
digital_out_t rst
Definition rotaryy.h:111
pin_name_t chip_select
Definition rotaryy.h:124