mbed library sources with internal temperature sensor for nucleo f401

Committer:
elessair
Date:
Sat Jan 17 18:03:58 2015 +0000
Revision:
0:7e2bd16f80af
nucleo f401re internal temperature added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
elessair 0:7e2bd16f80af 1 /* mbed Microcontroller Library
elessair 0:7e2bd16f80af 2 * Copyright (c) 2006-2013 ARM Limited
elessair 0:7e2bd16f80af 3 *
elessair 0:7e2bd16f80af 4 * Licensed under the Apache License, Version 2.0 (the "License");
elessair 0:7e2bd16f80af 5 * you may not use this file except in compliance with the License.
elessair 0:7e2bd16f80af 6 * You may obtain a copy of the License at
elessair 0:7e2bd16f80af 7 *
elessair 0:7e2bd16f80af 8 * http://www.apache.org/licenses/LICENSE-2.0
elessair 0:7e2bd16f80af 9 *
elessair 0:7e2bd16f80af 10 * Unless required by applicable law or agreed to in writing, software
elessair 0:7e2bd16f80af 11 * distributed under the License is distributed on an "AS IS" BASIS,
elessair 0:7e2bd16f80af 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
elessair 0:7e2bd16f80af 13 * See the License for the specific language governing permissions and
elessair 0:7e2bd16f80af 14 * limitations under the License.
elessair 0:7e2bd16f80af 15 */
elessair 0:7e2bd16f80af 16 #ifndef MBED_GPIO_API_H
elessair 0:7e2bd16f80af 17 #define MBED_GPIO_API_H
elessair 0:7e2bd16f80af 18
elessair 0:7e2bd16f80af 19 #include "device.h"
elessair 0:7e2bd16f80af 20
elessair 0:7e2bd16f80af 21 #ifdef __cplusplus
elessair 0:7e2bd16f80af 22 extern "C" {
elessair 0:7e2bd16f80af 23 #endif
elessair 0:7e2bd16f80af 24
elessair 0:7e2bd16f80af 25 /* Set the given pin as GPIO
elessair 0:7e2bd16f80af 26 * @param pin The pin to be set as GPIO
elessair 0:7e2bd16f80af 27 * @return The GPIO port mask for this pin
elessair 0:7e2bd16f80af 28 **/
elessair 0:7e2bd16f80af 29 uint32_t gpio_set(PinName pin);
elessair 0:7e2bd16f80af 30
elessair 0:7e2bd16f80af 31 /* GPIO object */
elessair 0:7e2bd16f80af 32 void gpio_init(gpio_t *obj, PinName pin);
elessair 0:7e2bd16f80af 33
elessair 0:7e2bd16f80af 34 void gpio_mode (gpio_t *obj, PinMode mode);
elessair 0:7e2bd16f80af 35 void gpio_dir (gpio_t *obj, PinDirection direction);
elessair 0:7e2bd16f80af 36
elessair 0:7e2bd16f80af 37 void gpio_write(gpio_t *obj, int value);
elessair 0:7e2bd16f80af 38 int gpio_read (gpio_t *obj);
elessair 0:7e2bd16f80af 39
elessair 0:7e2bd16f80af 40 // the following set of functions are generic and are implemented in the common gpio.c file
elessair 0:7e2bd16f80af 41 void gpio_init_in(gpio_t* gpio, PinName pin);
elessair 0:7e2bd16f80af 42 void gpio_init_in_ex(gpio_t* gpio, PinName pin, PinMode mode);
elessair 0:7e2bd16f80af 43 void gpio_init_out(gpio_t* gpio, PinName pin);
elessair 0:7e2bd16f80af 44 void gpio_init_out_ex(gpio_t* gpio, PinName pin, int value);
elessair 0:7e2bd16f80af 45 void gpio_init_inout(gpio_t* gpio, PinName pin, PinDirection direction, PinMode mode, int value);
elessair 0:7e2bd16f80af 46
elessair 0:7e2bd16f80af 47 #ifdef __cplusplus
elessair 0:7e2bd16f80af 48 }
elessair 0:7e2bd16f80af 49 #endif
elessair 0:7e2bd16f80af 50
elessair 0:7e2bd16f80af 51 #endif