c420mat 2.0.0.0
c420mat.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 C420MAT_H
36#define C420MAT_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
57// -------------------------------------------------------------- PUBLIC MACROS
68#define C420MAT_MAP_MIKROBUS( cfg, mikrobus ) \
69 cfg.miso = MIKROBUS( mikrobus, MIKROBUS_MISO ); \
70 cfg.mosi = MIKROBUS( mikrobus, MIKROBUS_MOSI ); \
71 cfg.sck = MIKROBUS( mikrobus, MIKROBUS_SCK ); \
72 cfg.cs = MIKROBUS( mikrobus, MIKROBUS_CS )
79#define C420MAT_RETVAL uint8_t
80
81#define C420MAT_OK 0x00
82#define C420MAT_INIT_ERROR 0xFF
85 // End group macro
86// --------------------------------------------------------------- PUBLIC TYPES
95typedef struct
96{
97 digital_out_t cs;
98
99 // Modules
100
101 spi_master_t spi;
102 pin_name_t chip_select;
103
104} c420mat_t;
105
109typedef struct
110{
111 // Communication gpio pins
112
113 pin_name_t miso;
114 pin_name_t mosi;
115 pin_name_t sck;
116 pin_name_t cs;
117
118 // static variable
119
120 uint32_t spi_speed;
121 spi_master_mode_t spi_mode;
122 spi_master_chip_select_polarity_t cs_polarity;
123
125
126 // End types group
127
132#ifdef __cplusplus
133extern "C"{
134#endif
135
145
155
167void c420mat_generic_transfer ( c420mat_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len );
168
177void c420mat_dac_output ( c420mat_t *ctx, uint16_t value_dac );
178
187void c420mat_set_i_out ( c420mat_t *ctx, uint8_t i_out );
188
189#ifdef __cplusplus
190}
191#endif
192#endif // _C420MAT_H_
193
194 // End public_function group
196
197// ------------------------------------------------------------------------- END
#define C420MAT_RETVAL
Definition c420mat.h:79
void c420mat_generic_transfer(c420mat_t *ctx, uint8_t *wr_buf, uint16_t wr_len, uint8_t *rd_buf, uint16_t rd_len)
Generic transfer function.
C420MAT_RETVAL c420mat_init(c420mat_t *ctx, c420mat_cfg_t *cfg)
Initialization function.
void c420mat_cfg_setup(c420mat_cfg_t *cfg)
Config Object Initialization function.
void c420mat_set_i_out(c420mat_t *ctx, uint8_t i_out)
t40ma_set_vout.
void c420mat_dac_output(c420mat_t *ctx, uint16_t value_dac)
c420mat_dac_output.
Click configuration structure definition.
Definition c420mat.h:110
spi_master_chip_select_polarity_t cs_polarity
Definition c420mat.h:122
pin_name_t sck
Definition c420mat.h:115
spi_master_mode_t spi_mode
Definition c420mat.h:121
pin_name_t mosi
Definition c420mat.h:114
uint32_t spi_speed
Definition c420mat.h:120
pin_name_t miso
Definition c420mat.h:113
pin_name_t cs
Definition c420mat.h:116
Click ctx object definition.
Definition c420mat.h:96
digital_out_t cs
Definition c420mat.h:97
spi_master_t spi
Definition c420mat.h:101
pin_name_t chip_select
Definition c420mat.h:102