rotaryo 2.0.0.0
rotaryo.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 ROTARYO_H
29#define ROTARYO_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 ROTARYO_ONE_LED 0x0001
69#define ROTARYO_TWO_LED 0x0101
70#define ROTARYO_FOUR_LED 0x1111
71#define ROTARYO_EIGHT_LED 0x5555
72#define ROTARYO_RESET_LED 0x0000
73
74 // rotaryo_led
75
90#define ROTARYO_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 // rotaryo_map
101 // rotaryo
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} rotaryo_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 ROTARYO_ERROR = -1
164
166
183
199
214void rotaryo_generic_transfer ( rotaryo_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len );
215
226void rotaryo_turn_on_led_by_data ( rotaryo_t *ctx, uint16_t write_data );
227
238void rotaryo_turn_on_led_by_position ( rotaryo_t *ctx, uint8_t led_position );
239
251
260uint16_t rotaryo_get_led_data ( uint8_t current_led_state );
261
272
283
294
295#ifdef __cplusplus
296}
297#endif
298#endif // ROTARYO_H
299
300 // rotaryo
301
302// ------------------------------------------------------------------------ END
void rotaryo_turn_on_led_by_position(rotaryo_t *ctx, uint8_t led_position)
ROTARY O turn on led by position function.
uint8_t rotaryo_button_push(rotaryo_t *ctx)
Button push state.
uint8_t rotaryo_get_eca_state(rotaryo_t *ctx)
State eca pin.
void rotaryo_turn_on_led_by_data(rotaryo_t *ctx, uint16_t write_data)
ROTARY O generic data write function.
void rotaryo_reset_led(rotaryo_t *ctx)
Reset led.
void rotaryo_generic_transfer(rotaryo_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len)
ROTARY O data transfer function.
uint8_t rotaryo_get_ecb_state(rotaryo_t *ctx)
State ecb pin.
err_t rotaryo_init(rotaryo_t *ctx, rotaryo_cfg_t *cfg)
ROTARY O initialization function.
uint16_t rotaryo_get_led_data(uint8_t current_led_state)
Get led data state.
void rotaryo_cfg_setup(rotaryo_cfg_t *cfg)
ROTARY O configuration object setup function.
rotaryo_return_value_t
ROTARY O Click return value data.
Definition rotaryo.h:161
@ ROTARYO_ERROR
Definition rotaryo.h:163
@ ROTARYO_OK
Definition rotaryo.h:162
ROTARY O Click configuration object.
Definition rotaryo.h:133
spi_master_chip_select_polarity_t cs_polarity
Definition rotaryo.h:152
pin_name_t eca
Definition rotaryo.h:145
pin_name_t sck
Definition rotaryo.h:138
spi_master_mode_t spi_mode
Definition rotaryo.h:151
pin_name_t mosi
Definition rotaryo.h:137
uint32_t spi_speed
Definition rotaryo.h:150
pin_name_t sw
Definition rotaryo.h:146
pin_name_t miso
Definition rotaryo.h:136
pin_name_t rst
Definition rotaryo.h:144
pin_name_t cs
Definition rotaryo.h:139
pin_name_t ecb
Definition rotaryo.h:143
ROTARY O Click context object.
Definition rotaryo.h:108
digital_out_t cs
Definition rotaryo.h:112
digital_in_t eca
Definition rotaryo.h:117
spi_master_t spi
Definition rotaryo.h:122
digital_in_t ecb
Definition rotaryo.h:116
digital_in_t sw
Definition rotaryo.h:118
digital_out_t rst
Definition rotaryo.h:111
pin_name_t chip_select
Definition rotaryo.h:124