ads1115 only

Fork of mbed by mbed official

Committer:
kaoshen
Date:
Tue Jan 17 23:27:32 2017 +0000
Revision:
135:fce8a9387ed1
Parent:
102:da0ca467f8b5
333 ADS1115 ADC1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 101:7cff1c4259d7 1 /* mbed Microcontroller Library
Kojto 101:7cff1c4259d7 2 * Copyright (c) 2006-2013 ARM Limited
Kojto 101:7cff1c4259d7 3 *
Kojto 101:7cff1c4259d7 4 * Licensed under the Apache License, Version 2.0 (the "License");
Kojto 101:7cff1c4259d7 5 * you may not use this file except in compliance with the License.
Kojto 101:7cff1c4259d7 6 * You may obtain a copy of the License at
Kojto 101:7cff1c4259d7 7 *
Kojto 101:7cff1c4259d7 8 * http://www.apache.org/licenses/LICENSE-2.0
Kojto 101:7cff1c4259d7 9 *
Kojto 101:7cff1c4259d7 10 * Unless required by applicable law or agreed to in writing, software
Kojto 101:7cff1c4259d7 11 * distributed under the License is distributed on an "AS IS" BASIS,
Kojto 101:7cff1c4259d7 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Kojto 101:7cff1c4259d7 13 * See the License for the specific language governing permissions and
Kojto 101:7cff1c4259d7 14 * limitations under the License.
Kojto 101:7cff1c4259d7 15 */
Kojto 101:7cff1c4259d7 16
Kojto 101:7cff1c4259d7 17 #ifndef MBED_PERIPHERALPINS_H
Kojto 101:7cff1c4259d7 18 #define MBED_PERIPHERALPINS_H
Kojto 101:7cff1c4259d7 19
Kojto 101:7cff1c4259d7 20 #include "pinmap.h"
Kojto 101:7cff1c4259d7 21 #include "PeripheralNames.h"
Kojto 101:7cff1c4259d7 22
Kojto 101:7cff1c4259d7 23 /************ADC***************/
Kojto 101:7cff1c4259d7 24 extern const PinMap PinMap_ADC[];
Kojto 101:7cff1c4259d7 25
Kojto 101:7cff1c4259d7 26 /************I2C***************/
Kojto 101:7cff1c4259d7 27 extern const PinMap PinMap_I2C_SDA[];
Kojto 101:7cff1c4259d7 28 extern const PinMap PinMap_I2C_SCL[];
Kojto 101:7cff1c4259d7 29
Kojto 101:7cff1c4259d7 30 /************UART***************/
Kojto 101:7cff1c4259d7 31 extern const PinMap PinMap_UART_TX[];
Kojto 101:7cff1c4259d7 32 extern const PinMap PinMap_UART_RX[];
Kojto 101:7cff1c4259d7 33
Kojto 101:7cff1c4259d7 34 /************SPI***************/
Kojto 101:7cff1c4259d7 35 extern const PinMap PinMap_SPI_SCLK[];
Kojto 101:7cff1c4259d7 36 extern const PinMap PinMap_SPI_MOSI[];
Kojto 101:7cff1c4259d7 37 extern const PinMap PinMap_SPI_MISO[];
Kojto 101:7cff1c4259d7 38 extern const PinMap PinMap_SPI_SSEL[];
Kojto 101:7cff1c4259d7 39
Kojto 101:7cff1c4259d7 40 /************PWM***************/
Kojto 101:7cff1c4259d7 41 extern const PinMap PinMap_PWM[];
Kojto 101:7cff1c4259d7 42
Kojto 101:7cff1c4259d7 43 #endif