source: asp3_tinet_ecnl_rx/trunk/asp3_dcre/mbed/hal/pinmap.h@ 374

Last change on this file since 374 was 374, checked in by coas-nagasima, 5 years ago

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

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