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