pinmap: Added aio support.
[contrib/mraa.git] / api / aio.h
1 /*
2  * Author: Nandkishor Sonar
3  * Copyright (c) 2014 Intel Corporation.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * 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
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #pragma once
26 /** @file
27  *
28  * This file defines the aio (analog in) interface for libmaa
29  *
30  */
31
32 #include <stdio.h>
33 #include <fcntl.h>
34
35 #include "maa.h"
36 #include "gpio.h"
37
38 #define ADC_RAW_RESOLUTION_BITS         (12)
39 #define ADC_SUPPORTED_RESOLUTION_BITS   (10)
40
41 typedef struct {
42     unsigned int channel;
43     FILE *adc_in_fp;
44 } maa_aio_context;
45
46 /** Initialise an Analog input device, connected to the specified pin
47  *
48  * @param aio_channel channel number to read ADC inputs
49  *
50  * @returns pointer to maa_aio_context structure after initialisation of Analog
51  * input pin successfully, else returns null.
52  */
53 maa_aio_context* maa_aio_init(unsigned int aio_channel);
54
55 /** Read the input voltage, represented as an unsigned short in the range [0x0,
56  * 0xFFFF]
57  *
58  * @param dev -  pointer to maa_aio_context structure  initialised by
59  * maa_aio_init()
60  *
61  * @returns 16-bit unsigned integer representing the current input voltage,
62  * normalised to a 16-bit value
63  */
64 unsigned int maa_aio_read_u16(maa_aio_context* dev);
65
66 /** Close the analog input context
67  * - Will free the memory for the context.
68  *
69  * @param dev -  pointer to maa_aio_context structure  initialised by
70  * maa_aio_init()
71  *
72  * @return maa_result_t - result type.
73  */
74 maa_result_t maa_aio_close(maa_aio_context* dev);