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