mbed-os for GR-LYCHEE

Dependents:   mbed-os-example-blinky-gr-lychee GR-Boads_Camera_sample GR-Boards_Audio_Recoder GR-Boads_Camera_DisplayApp ... more

Committer:
dkato
Date:
Fri Feb 02 05:42:23 2018 +0000
Revision:
0:f782d9c66c49
mbed-os for GR-LYCHEE

Who changed what in which revision?

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