Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
TARGET_KW24D/TOOLCHAIN_IAR/gpio_object.h@171:3a7713b1edbc, 2018-11-08 (annotated)
- Committer:
- AnnaBridge
- Date:
- Thu Nov 08 11:45:42 2018 +0000
- Revision:
- 171:3a7713b1edbc
- Parent:
- TARGET_FF_LPC546XX/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_object.h@161:aa5281ff4a02
mbed library. Release version 164
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| Kojto | 148:fd96258d940d | 1 | /* mbed Microcontroller Library | 
| Kojto | 148:fd96258d940d | 2 | * Copyright (c) 2006-2013 ARM Limited | 
| Kojto | 148:fd96258d940d | 3 | * | 
| Kojto | 148:fd96258d940d | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
| Kojto | 148:fd96258d940d | 5 | * you may not use this file except in compliance with the License. | 
| Kojto | 148:fd96258d940d | 6 | * You may obtain a copy of the License at | 
| Kojto | 148:fd96258d940d | 7 | * | 
| Kojto | 148:fd96258d940d | 8 | * http://www.apache.org/licenses/LICENSE-2.0 | 
| Kojto | 148:fd96258d940d | 9 | * | 
| Kojto | 148:fd96258d940d | 10 | * Unless required by applicable law or agreed to in writing, software | 
| Kojto | 148:fd96258d940d | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
| Kojto | 148:fd96258d940d | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
| Kojto | 148:fd96258d940d | 13 | * See the License for the specific language governing permissions and | 
| Kojto | 148:fd96258d940d | 14 | * limitations under the License. | 
| Kojto | 148:fd96258d940d | 15 | */ | 
| Kojto | 148:fd96258d940d | 16 | #ifndef MBED_GPIO_OBJECT_H | 
| Kojto | 148:fd96258d940d | 17 | #define MBED_GPIO_OBJECT_H | 
| Kojto | 148:fd96258d940d | 18 | |
| Kojto | 148:fd96258d940d | 19 | #ifdef __cplusplus | 
| Kojto | 148:fd96258d940d | 20 | extern "C" { | 
| Kojto | 148:fd96258d940d | 21 | #endif | 
| Kojto | 148:fd96258d940d | 22 | |
| Kojto | 148:fd96258d940d | 23 | typedef struct { | 
| Kojto | 148:fd96258d940d | 24 | PinName pin; | 
| Kojto | 148:fd96258d940d | 25 | } gpio_t; | 
| Kojto | 148:fd96258d940d | 26 | |
| Kojto | 148:fd96258d940d | 27 | static inline int gpio_is_connected(const gpio_t *obj) | 
| Kojto | 148:fd96258d940d | 28 | { | 
| Kojto | 148:fd96258d940d | 29 | return obj->pin != (PinName)NC; | 
| Kojto | 148:fd96258d940d | 30 | } | 
| Kojto | 148:fd96258d940d | 31 | |
| Kojto | 148:fd96258d940d | 32 | #ifdef __cplusplus | 
| Kojto | 148:fd96258d940d | 33 | } | 
| Kojto | 148:fd96258d940d | 34 | #endif | 
| Kojto | 148:fd96258d940d | 35 | |
| Kojto | 148:fd96258d940d | 36 | #endif | 


