]> git.gir.st - tmk_keyboard.git/blob - tmk_core/tool/mbed/mbed-sdk/libraries/mbed/common/BusOut.cpp
Merge commit '1fe4406f374291ab2e86e95a97341fd9c475fcb8'
[tmk_keyboard.git] / tmk_core / tool / mbed / mbed-sdk / libraries / mbed / common / BusOut.cpp
1 /* mbed Microcontroller Library
2 * Copyright (c) 2006-2013 ARM Limited
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 #include "BusOut.h"
17 #include "mbed_assert.h"
18
19 namespace mbed {
20
21 BusOut::BusOut(PinName p0, PinName p1, PinName p2, PinName p3, PinName p4, PinName p5, PinName p6, PinName p7, PinName p8, PinName p9, PinName p10, PinName p11, PinName p12, PinName p13, PinName p14, PinName p15) {
22 PinName pins[16] = {p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15};
23
24 _nc_mask = 0;
25 for (int i=0; i<16; i++) {
26 _pin[i] = (pins[i] != NC) ? new DigitalOut(pins[i]) : 0;
27 if (pins[i] != NC) {
28 _nc_mask |= (1 << i);
29 }
30 }
31 }
32
33 BusOut::BusOut(PinName pins[16]) {
34 _nc_mask = 0;
35 for (int i=0; i<16; i++) {
36 _pin[i] = (pins[i] != NC) ? new DigitalOut(pins[i]) : 0;
37 if (pins[i] != NC) {
38 _nc_mask |= (1 << i);
39 }
40 }
41 }
42
43 BusOut::~BusOut() {
44 for (int i=0; i<16; i++) {
45 if (_pin[i] != 0) {
46 delete _pin[i];
47 }
48 }
49 }
50
51 void BusOut::write(int value) {
52 for (int i=0; i<16; i++) {
53 if (_pin[i] != 0) {
54 _pin[i]->write((value >> i) & 1);
55 }
56 }
57 }
58
59 int BusOut::read() {
60 int v = 0;
61 for (int i=0; i<16; i++) {
62 if (_pin[i] != 0) {
63 v |= _pin[i]->read() << i;
64 }
65 }
66 return v;
67 }
68
69 #ifdef MBED_OPERATORS
70 BusOut& BusOut::operator= (int v) {
71 write(v);
72 return *this;
73 }
74
75 BusOut& BusOut::operator= (BusOut& rhs) {
76 write(rhs.read());
77 return *this;
78 }
79
80 DigitalOut& BusOut::operator[] (int index) {
81 MBED_ASSERT(index >= 0 && index <= 16);
82 MBED_ASSERT(_pin[index]);
83 return *_pin[index];
84 }
85
86 BusOut::operator int() {
87 return read();
88 }
89 #endif
90
91 } // namespace mbed
Imprint / Impressum