c2x5wamp  2.0.0.0
c2x5wamp.h
Go to the documentation of this file.
1 /*
2  * MikroSDK - MikroE Software Development Kit
3  * Copyright (c) 2019, MikroElektronika - www.mikroe.com
4  * All rights reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 
33 // ----------------------------------------------------------------------------
34 
35 #ifndef C2X5WAMP_H
36 #define C2X5WAMP_H
37 
38 #include "drv_digital_out.h"
39 #include "drv_digital_in.h"
40 
41 // -------------------------------------------------------------- PUBLIC MACROS
51 #define C2X5WAMP_MAP_MIKROBUS( cfg, mikrobus ) \
52  cfg.gn0= MIKROBUS( mikrobus, MIKROBUS_AN ); \
53  cfg.gn1= MIKROBUS( mikrobus, MIKROBUS_RST ); \
54  cfg.stb= MIKROBUS( mikrobus, MIKROBUS_CS ); \
55  cfg.mute= MIKROBUS( mikrobus, MIKROBUS_PWM ); \
56  cfg.dia= MIKROBUS( mikrobus, MIKROBUS_INT );
57 
63 #define C2X5WAMP_RETVAL uint8_t
64 
65 #define C2X5WAMP_OK 0x00
66 #define C2X5WAMP_INIT_ERROR 0xFF
67 
73 #define C2X5WAMP_MODE_STANDBY 0x00
74 #define C2X5WAMP_MODE_MUTE 0x01
75 #define C2X5WAMP_MODE_PLAY 0x02
76 
82 #define C2X5WAMP_GAIN_20DB 0x00
83 #define C2X5WAMP_GAIN_26DB 0x01
84 #define C2X5WAMP_GAIN_30DB 0x02
85 #define C2X5WAMP_GAIN_32DB 0x03
86 
92 #define C2X5WAMP_RESULT_ERROR 0x00
93 #define C2X5WAMP_RESULT_OK 0x01
94  // End group macro
97 // --------------------------------------------------------------- PUBLIC TYPES
106 typedef struct
107 {
108  // Output pins
109 
110  digital_out_t gn0;
111  digital_out_t gn1;
112  digital_out_t stb;
113  digital_out_t mute;
114 
115  // Input pins
116 
117  digital_in_t dia;
118 
119 } c2x5wamp_t;
120 
124 typedef struct
125 {
126  // Additional gpio pins
127 
128  pin_name_t gn0;
129  pin_name_t gn1;
130  pin_name_t stb;
131  pin_name_t mute;
132  pin_name_t dia;
133 
135  // End types group
137 // ------------------------------------------------------------------ CONSTANTS // End constants group
146 // ------------------------------------------------------------------ VARIABLES // End variable group
154 // ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
155 
161 #ifdef __cplusplus
162 extern "C"{
163 #endif
164 
173 void c2x5wamp_cfg_setup ( c2x5wamp_cfg_t *cfg );
174 
183 
194 void c2x5wamp_default_cfg ( c2x5wamp_t *ctx );
195 
213 uint8_t c2x5wamp_set_mode ( c2x5wamp_t *ctx, uint8_t select_mode );
214 
232 uint8_t c2x5wamp_set_gain ( c2x5wamp_t *ctx, uint8_t select_gain );
233 
247 uint8_t c2x5wamp_check_input ( c2x5wamp_t *ctx );
248 
249 #ifdef __cplusplus
250 }
251 #endif
252 #endif // _C2X5WAMP_H_
253  // End public_function group
256 
257 // ------------------------------------------------------------------------- END
c2x5wamp_cfg_setup
void c2x5wamp_cfg_setup(c2x5wamp_cfg_t *cfg)
Config Object Initialization function.
c2x5wamp_cfg_t::mute
pin_name_t mute
Definition: c2x5wamp.h:131
c2x5wamp_t
Click ctx object definition.
Definition: c2x5wamp.h:106
c2x5wamp_t::mute
digital_out_t mute
Definition: c2x5wamp.h:113
c2x5wamp_t::gn0
digital_out_t gn0
Definition: c2x5wamp.h:110
c2x5wamp_set_gain
uint8_t c2x5wamp_set_gain(c2x5wamp_t *ctx, uint8_t select_gain)
Set gain resistors of the amplifier function.
c2x5wamp_check_input
uint8_t c2x5wamp_check_input(c2x5wamp_t *ctx)
Check input impedance function.
c2x5wamp_cfg_t::gn1
pin_name_t gn1
Definition: c2x5wamp.h:129
c2x5wamp_t::gn1
digital_out_t gn1
Definition: c2x5wamp.h:111
c2x5wamp_t::dia
digital_in_t dia
Definition: c2x5wamp.h:117
c2x5wamp_cfg_t::dia
pin_name_t dia
Definition: c2x5wamp.h:132
c2x5wamp_init
C2X5WAMP_RETVAL c2x5wamp_init(c2x5wamp_t *ctx, c2x5wamp_cfg_t *cfg)
Initialization function.
c2x5wamp_cfg_t
Click configuration structure definition.
Definition: c2x5wamp.h:124
C2X5WAMP_RETVAL
#define C2X5WAMP_RETVAL
Definition: c2x5wamp.h:63
c2x5wamp_default_cfg
void c2x5wamp_default_cfg(c2x5wamp_t *ctx)
Click Default Configuration function.
c2x5wamp_t::stb
digital_out_t stb
Definition: c2x5wamp.h:112
c2x5wamp_set_mode
uint8_t c2x5wamp_set_mode(c2x5wamp_t *ctx, uint8_t select_mode)
Set mode selection of the amplifier function.
c2x5wamp_cfg_t::stb
pin_name_t stb
Definition: c2x5wamp.h:130
c2x5wamp_cfg_t::gn0
pin_name_t gn0
Definition: c2x5wamp.h:128