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: microbit-dal microbit-ble-open microbit-dal-eddystone microbit-dal ... more
Fork of mbed-lite-test by
pinmap.h@0:e1a608bb55e8, 2016-04-07 (annotated)
- Committer:
- jamesadevine
- Date:
- Thu Apr 07 18:33:58 2016 +0100
- Revision:
- 0:e1a608bb55e8
Added binary version of mbed
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| jamesadevine | 0:e1a608bb55e8 | 1 | /* mbed Microcontroller Library |
| jamesadevine | 0:e1a608bb55e8 | 2 | * Copyright (c) 2006-2013 ARM Limited |
| jamesadevine | 0:e1a608bb55e8 | 3 | * |
| jamesadevine | 0:e1a608bb55e8 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| jamesadevine | 0:e1a608bb55e8 | 5 | * you may not use this file except in compliance with the License. |
| jamesadevine | 0:e1a608bb55e8 | 6 | * You may obtain a copy of the License at |
| jamesadevine | 0:e1a608bb55e8 | 7 | * |
| jamesadevine | 0:e1a608bb55e8 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| jamesadevine | 0:e1a608bb55e8 | 9 | * |
| jamesadevine | 0:e1a608bb55e8 | 10 | * Unless required by applicable law or agreed to in writing, software |
| jamesadevine | 0:e1a608bb55e8 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| jamesadevine | 0:e1a608bb55e8 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| jamesadevine | 0:e1a608bb55e8 | 13 | * See the License for the specific language governing permissions and |
| jamesadevine | 0:e1a608bb55e8 | 14 | * limitations under the License. |
| jamesadevine | 0:e1a608bb55e8 | 15 | */ |
| jamesadevine | 0:e1a608bb55e8 | 16 | #ifndef MBED_PINMAP_H |
| jamesadevine | 0:e1a608bb55e8 | 17 | #define MBED_PINMAP_H |
| jamesadevine | 0:e1a608bb55e8 | 18 | |
| jamesadevine | 0:e1a608bb55e8 | 19 | #include "PinNames.h" |
| jamesadevine | 0:e1a608bb55e8 | 20 | |
| jamesadevine | 0:e1a608bb55e8 | 21 | #ifdef __cplusplus |
| jamesadevine | 0:e1a608bb55e8 | 22 | extern "C" { |
| jamesadevine | 0:e1a608bb55e8 | 23 | #endif |
| jamesadevine | 0:e1a608bb55e8 | 24 | |
| jamesadevine | 0:e1a608bb55e8 | 25 | typedef struct { |
| jamesadevine | 0:e1a608bb55e8 | 26 | PinName pin; |
| jamesadevine | 0:e1a608bb55e8 | 27 | int peripheral; |
| jamesadevine | 0:e1a608bb55e8 | 28 | int function; |
| jamesadevine | 0:e1a608bb55e8 | 29 | } PinMap; |
| jamesadevine | 0:e1a608bb55e8 | 30 | |
| jamesadevine | 0:e1a608bb55e8 | 31 | void pin_function(PinName pin, int function); |
| jamesadevine | 0:e1a608bb55e8 | 32 | void pin_mode (PinName pin, PinMode mode); |
| jamesadevine | 0:e1a608bb55e8 | 33 | |
| jamesadevine | 0:e1a608bb55e8 | 34 | uint32_t pinmap_peripheral(PinName pin, const PinMap* map); |
| jamesadevine | 0:e1a608bb55e8 | 35 | uint32_t pinmap_function(PinName pin, const PinMap* map); |
| jamesadevine | 0:e1a608bb55e8 | 36 | uint32_t pinmap_merge (uint32_t a, uint32_t b); |
| jamesadevine | 0:e1a608bb55e8 | 37 | void pinmap_pinout (PinName pin, const PinMap *map); |
| jamesadevine | 0:e1a608bb55e8 | 38 | uint32_t pinmap_find_peripheral(PinName pin, const PinMap* map); |
| jamesadevine | 0:e1a608bb55e8 | 39 | uint32_t pinmap_find_function(PinName pin, const PinMap* map); |
| jamesadevine | 0:e1a608bb55e8 | 40 | |
| jamesadevine | 0:e1a608bb55e8 | 41 | #ifdef __cplusplus |
| jamesadevine | 0:e1a608bb55e8 | 42 | } |
| jamesadevine | 0:e1a608bb55e8 | 43 | #endif |
| jamesadevine | 0:e1a608bb55e8 | 44 | |
| jamesadevine | 0:e1a608bb55e8 | 45 | #endif |
