Maxim mbed development library

Dependents:   MAX34417_demo MAXREFDES1265 MAXREFDES1265

Fork of mbed-dev by mbed official

Committer:
switches
Date:
Fri Mar 24 15:15:13 2017 +0000
Revision:
164:2e7515f8c45d
Parent:
149:156823d33999
Added low level init to clear IO registers

Who changed what in which revision?

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