Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-src by
targets/hal/TARGET_Freescale/TARGET_KL05Z/pinmap.c@78:2cab419ff388, 2014-01-29 (annotated)
- Committer:
- mbed_official
- Date:
- Wed Jan 29 18:45:05 2014 +0000
- Revision:
- 78:2cab419ff388
- Parent:
- 20:4263a77256ae
Synchronized with git revision dc331e6714ed0e607ed3ccdffb51478ffb38ea9c
Full URL: https://github.com/mbedmicro/mbed/commit/dc331e6714ed0e607ed3ccdffb51478ffb38ea9c/
Exporters CoIDE (added KL05Z, LPC1768), fixed issue with c++ libraries
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 20:4263a77256ae | 1 | /* mbed Microcontroller Library |
bogdanm | 20:4263a77256ae | 2 | * Copyright (c) 2006-2013 ARM Limited |
bogdanm | 20:4263a77256ae | 3 | * |
bogdanm | 20:4263a77256ae | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
bogdanm | 20:4263a77256ae | 5 | * you may not use this file except in compliance with the License. |
bogdanm | 20:4263a77256ae | 6 | * You may obtain a copy of the License at |
bogdanm | 20:4263a77256ae | 7 | * |
bogdanm | 20:4263a77256ae | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
bogdanm | 20:4263a77256ae | 9 | * |
bogdanm | 20:4263a77256ae | 10 | * Unless required by applicable law or agreed to in writing, software |
bogdanm | 20:4263a77256ae | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
bogdanm | 20:4263a77256ae | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
bogdanm | 20:4263a77256ae | 13 | * See the License for the specific language governing permissions and |
bogdanm | 20:4263a77256ae | 14 | * limitations under the License. |
bogdanm | 20:4263a77256ae | 15 | */ |
bogdanm | 20:4263a77256ae | 16 | #include "pinmap.h" |
bogdanm | 20:4263a77256ae | 17 | #include "error.h" |
bogdanm | 20:4263a77256ae | 18 | |
bogdanm | 20:4263a77256ae | 19 | void pin_function(PinName pin, int function) { |
mbed_official | 78:2cab419ff388 | 20 | if (pin == (PinName)NC) { |
bogdanm | 20:4263a77256ae | 21 | return; |
bogdanm | 20:4263a77256ae | 22 | } |
bogdanm | 20:4263a77256ae | 23 | |
bogdanm | 20:4263a77256ae | 24 | uint32_t port_n = (uint32_t)pin >> PORT_SHIFT; |
bogdanm | 20:4263a77256ae | 25 | uint32_t pin_n = (uint32_t)(pin & 0x7C) >> 2; |
bogdanm | 20:4263a77256ae | 26 | |
bogdanm | 20:4263a77256ae | 27 | SIM->SCGC5 |= 1 << (SIM_SCGC5_PORTA_SHIFT + port_n); |
bogdanm | 20:4263a77256ae | 28 | __IO uint32_t* pin_pcr = &(((PORT_Type *)(PORTA_BASE + (1 << PORT_SHIFT) * port_n)))->PCR[pin_n]; |
bogdanm | 20:4263a77256ae | 29 | |
bogdanm | 20:4263a77256ae | 30 | // pin mux bits: [10:8] -> 11100000000 = (0x700) |
bogdanm | 20:4263a77256ae | 31 | *pin_pcr = (*pin_pcr & ~0x700) | (function << 8); |
bogdanm | 20:4263a77256ae | 32 | } |
bogdanm | 20:4263a77256ae | 33 | |
bogdanm | 20:4263a77256ae | 34 | void pin_mode(PinName pin, PinMode mode) { |
mbed_official | 78:2cab419ff388 | 35 | if (pin == (PinName)NC) { |
bogdanm | 20:4263a77256ae | 36 | return; |
bogdanm | 20:4263a77256ae | 37 | } |
bogdanm | 20:4263a77256ae | 38 | |
bogdanm | 20:4263a77256ae | 39 | __IO uint32_t* pin_pcr = (__IO uint32_t*)(PORTA_BASE + pin); |
bogdanm | 20:4263a77256ae | 40 | |
bogdanm | 20:4263a77256ae | 41 | // pin pullup bits: [1:0] -> 11 = (0x3) |
bogdanm | 20:4263a77256ae | 42 | *pin_pcr = (*pin_pcr & ~0x3) | mode; |
bogdanm | 20:4263a77256ae | 43 | } |