The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Tue Feb 14 11:24:20 2017 +0000
Revision:
136:ef9c61f8c49f
Parent:
109:9296ab0bfc11
Release 136 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3432: Target STM USBHOST support https://github.com/ARMmbed/mbed-os/pull/3432
3181: NUCLEO_F207ZG extending PeripheralPins.c: all available alternate functions can be used now https://github.com/ARMmbed/mbed-os/pull/3181
3626: NUCLEO_F412ZG : Add USB Device +Host https://github.com/ARMmbed/mbed-os/pull/3626
3628: Fix warnings https://github.com/ARMmbed/mbed-os/pull/3628
3629: STM32: L0 LL layer https://github.com/ARMmbed/mbed-os/pull/3629
3632: IDE Export support for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3632
3642: Missing IRQ pin fix for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3642
3664: Fix ncs36510 sleep definitions https://github.com/ARMmbed/mbed-os/pull/3664
3655: [STM32F4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3655
3657: [STM32L4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3657
3658: [STM32F3] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3658
3685: STM32: I2C: reset state machine https://github.com/ARMmbed/mbed-os/pull/3685
3692: uVisor: Standardize available legacy heap and stack https://github.com/ARMmbed/mbed-os/pull/3692
3621: Fix for #2884, LPC824: export to LPCXpresso, target running with wron https://github.com/ARMmbed/mbed-os/pull/3621
3649: [STM32F7] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3649
3695: Enforce device_name is valid in targets.json https://github.com/ARMmbed/mbed-os/pull/3695
3723: NCS36510: spi_format function bug fix https://github.com/ARMmbed/mbed-os/pull/3723

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 109:9296ab0bfc11 1 /* mbed Microcontroller Library
Kojto 109:9296ab0bfc11 2 *******************************************************************************
Kojto 109:9296ab0bfc11 3 * Copyright (c) 2015 WIZnet Co.,Ltd. All rights reserved.
Kojto 109:9296ab0bfc11 4 * All rights reserved.
Kojto 109:9296ab0bfc11 5 *
Kojto 109:9296ab0bfc11 6 * Redistribution and use in source and binary forms, with or without
Kojto 109:9296ab0bfc11 7 * modification, are permitted provided that the following conditions are met:
Kojto 109:9296ab0bfc11 8 *
Kojto 109:9296ab0bfc11 9 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 109:9296ab0bfc11 10 * this list of conditions and the following disclaimer.
Kojto 109:9296ab0bfc11 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 109:9296ab0bfc11 12 * this list of conditions and the following disclaimer in the documentation
Kojto 109:9296ab0bfc11 13 * and/or other materials provided with the distribution.
Kojto 109:9296ab0bfc11 14 * 3. Neither the name of ARM Limited nor the names of its contributors
Kojto 109:9296ab0bfc11 15 * may be used to endorse or promote products derived from this software
Kojto 109:9296ab0bfc11 16 * without specific prior written permission.
Kojto 109:9296ab0bfc11 17 *
Kojto 109:9296ab0bfc11 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 109:9296ab0bfc11 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 109:9296ab0bfc11 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 109:9296ab0bfc11 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 109:9296ab0bfc11 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 109:9296ab0bfc11 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 109:9296ab0bfc11 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 109:9296ab0bfc11 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 109:9296ab0bfc11 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 109:9296ab0bfc11 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 109:9296ab0bfc11 28 *******************************************************************************
Kojto 109:9296ab0bfc11 29 */
Kojto 109:9296ab0bfc11 30
Kojto 109:9296ab0bfc11 31 #ifndef MBED_GPIO_OBJECT_H
Kojto 109:9296ab0bfc11 32 #define MBED_GPIO_OBJECT_H
Kojto 109:9296ab0bfc11 33
Kojto 109:9296ab0bfc11 34 #include "mbed_assert.h"
Kojto 109:9296ab0bfc11 35 #include "W7500x_gpio.h"
Kojto 109:9296ab0bfc11 36
Kojto 109:9296ab0bfc11 37 #ifdef __cplusplus
Kojto 109:9296ab0bfc11 38 extern "C" {
Kojto 109:9296ab0bfc11 39 #endif
Kojto 109:9296ab0bfc11 40
Kojto 109:9296ab0bfc11 41 typedef struct {
Kojto 109:9296ab0bfc11 42 PinName pin;
Kojto 109:9296ab0bfc11 43 uint32_t pin_index;
Kojto 109:9296ab0bfc11 44 uint32_t port_num;
Kojto 109:9296ab0bfc11 45 uint32_t direction;
Kojto 109:9296ab0bfc11 46 uint32_t mode;
Kojto 109:9296ab0bfc11 47 __IO uint32_t *reg_data_in;
Kojto 109:9296ab0bfc11 48 } gpio_t;
Kojto 109:9296ab0bfc11 49
Kojto 109:9296ab0bfc11 50
Kojto 109:9296ab0bfc11 51 extern uint32_t Get_GPIO_BaseAddress(uint32_t port_idx);
Kojto 109:9296ab0bfc11 52
Kojto 109:9296ab0bfc11 53
Kojto 109:9296ab0bfc11 54 static inline void gpio_write(gpio_t *obj, int value) {
Kojto 109:9296ab0bfc11 55 MBED_ASSERT(obj->pin != (PinName)NC);
Kojto 109:9296ab0bfc11 56
Kojto 109:9296ab0bfc11 57 uint32_t port_num = WIZ_PORT(obj->pin);
Kojto 109:9296ab0bfc11 58 uint32_t pin_index = WIZ_PIN_INDEX(obj->pin);
Kojto 109:9296ab0bfc11 59
Kojto 109:9296ab0bfc11 60 GPIO_TypeDef *gpio = (GPIO_TypeDef *)Get_GPIO_BaseAddress(port_num);
Kojto 109:9296ab0bfc11 61
Kojto 109:9296ab0bfc11 62
Kojto 109:9296ab0bfc11 63 if (value)
Kojto 109:9296ab0bfc11 64 {
Kojto 109:9296ab0bfc11 65 HAL_GPIO_SetBits(gpio, pin_index);
Kojto 109:9296ab0bfc11 66 }
Kojto 109:9296ab0bfc11 67 else
Kojto 109:9296ab0bfc11 68 {
Kojto 109:9296ab0bfc11 69 HAL_GPIO_ResetBits(gpio, pin_index);
Kojto 109:9296ab0bfc11 70 }
Kojto 109:9296ab0bfc11 71 }
Kojto 109:9296ab0bfc11 72
Kojto 109:9296ab0bfc11 73 static inline int gpio_read(gpio_t *obj) {
Kojto 109:9296ab0bfc11 74 int ret;
Kojto 109:9296ab0bfc11 75
Kojto 109:9296ab0bfc11 76 MBED_ASSERT(obj->pin != (PinName)NC);
Kojto 109:9296ab0bfc11 77
Kojto 109:9296ab0bfc11 78 uint32_t port_num = WIZ_PORT(obj->pin);
Kojto 109:9296ab0bfc11 79
Kojto 109:9296ab0bfc11 80 GPIO_TypeDef *gpio = (GPIO_TypeDef *)Get_GPIO_BaseAddress(port_num);
Kojto 109:9296ab0bfc11 81
Kojto 109:9296ab0bfc11 82 if(obj->direction == PIN_OUTPUT)
Kojto 109:9296ab0bfc11 83 {
Kojto 109:9296ab0bfc11 84 ret = ( HAL_GPIO_ReadOutputData(gpio) & obj->pin_index ) ? 1 : 0;
Kojto 109:9296ab0bfc11 85 }
Kojto 109:9296ab0bfc11 86 else
Kojto 109:9296ab0bfc11 87 {
Kojto 109:9296ab0bfc11 88 ret = ((*obj->reg_data_in & obj->pin_index) ? 1 : 0);
Kojto 109:9296ab0bfc11 89 }
Kojto 109:9296ab0bfc11 90
Kojto 109:9296ab0bfc11 91 return ret;
Kojto 109:9296ab0bfc11 92 }
Kojto 109:9296ab0bfc11 93
Kojto 109:9296ab0bfc11 94 static inline int gpio_is_connected(const gpio_t *obj) {
Kojto 109:9296ab0bfc11 95 return obj->pin != (PinName)NC;
Kojto 109:9296ab0bfc11 96 }
Kojto 109:9296ab0bfc11 97
Kojto 109:9296ab0bfc11 98 #ifdef __cplusplus
Kojto 109:9296ab0bfc11 99 }
Kojto 109:9296ab0bfc11 100 #endif
Kojto 109:9296ab0bfc11 101
Kojto 109:9296ab0bfc11 102 #endif