Mbed OS Reference
Loading...
Searching...
No Matches
analogin_api.h
1
2/** \addtogroup hal HAL*/
3/** @{*/
4/* mbed Microcontroller Library
5 * Copyright (c) 2006-2013 ARM Limited
6 * SPDX-License-Identifier: Apache-2.0
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20#ifndef MBED_ANALOGIN_API_H
21#define MBED_ANALOGIN_API_H
22
23#include "device.h"
24#include "pinmap.h"
25
26#if DEVICE_ANALOGIN
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/** Analogin hal structure. analogin_s is declared in the target's hal
33 */
34typedef struct analogin_s analogin_t;
35
36/**
37 * \defgroup hal_analogin Analogin hal functions
38 *
39 * # Defined behaviour
40 * * The function ::analogin_init initializes the analogin_t control structure
41 * * The function ::analogin_free returns the pin owned by the Analogin object to its reset state
42 * * The function ::analogin_read reads the input voltage, represented as a float in the range [0.0 (GND), 1.0 (VCC)]
43 * * The function ::analogin_read_u16 reads the value from analogin pin, represented as an unsigned 16bit value [0.0 (GND), MAX_UINT16 (VCC)]
44 * * The accuracy of the ADC is +/- 10%
45 * * The ADC operations ::analogin_read, ::analogin_read_u16 take less than 20us to complete
46 *
47 * # Undefined behaviour
48 *
49 * * ::analogin_init is called with invalid pin (which does not support analog input function)
50 * * Calling ::analogin_read, ::analogin_read_u16 before ::analogin_init
51 * @{
52 */
53
54/** Initialize the analogin peripheral
55 *
56 * Configures the pin used by analogin.
57 * @param obj The analogin object to initialize
58 * @param pinmap pointer to structure which holds static pinmap
59 */
60void analogin_init_direct(analogin_t *obj, const PinMap *pinmap);
61
62/** Initialize the analogin peripheral
63 *
64 * Configures the pin used by analogin.
65 * @param obj The analogin object to initialize
66 * @param pin The analogin pin name
67 */
68void analogin_init(analogin_t *obj, PinName pin);
69
70/** Release the analogin peripheral
71 *
72 * Releases the pin used by analogin.
73 * @param obj The analogin object to initialize
74 */
76
77/** Read the input voltage, represented as a float in the range [0.0, 1.0]
78 *
79 * @param obj The analogin object
80 * @return A floating value representing the current input voltage
81 */
83
84/** Read the value from analogin pin, represented as an unsigned 16bit value
85 *
86 * @param obj The analogin object
87 * @return An unsigned 16bit value representing the current input voltage
88 */
90
91/** Get the pins that support analogin
92 *
93 * Return a PinMap array of pins that support analogin. The
94 * array is terminated with {NC, NC, 0}.
95 *
96 * @return PinMap array
97 */
99
100/**@}*/
101
102#ifdef __cplusplus
103}
104#endif
105
106#endif
107
108#endif
109
110/** @}*/
float analogin_read(analogin_t *obj)
Read the input voltage, represented as a float in the range [0.0, 1.0].
void analogin_init(analogin_t *obj, PinName pin)
Initialize the analogin peripheral.
void analogin_free(analogin_t *obj)
Release the analogin peripheral.
void analogin_init_direct(analogin_t *obj, const PinMap *pinmap)
Initialize the analogin peripheral.
const PinMap * analogin_pinmap(void)
Get the pins that support analogin.
uint16_t analogin_read_u16(analogin_t *obj)
Read the value from analogin pin, represented as an unsigned 16bit value.
struct analogin_s analogin_t
Analogin hal structure.
Definition: analogin_api.h:34
Definition: pinmap.h:31