RPC library working for the K64F
Fork of mbed-rpc by
parse_pins.h@1:6919289a5946, 2013-04-22 (annotated)
- Committer:
- emilmont
- Date:
- Mon Apr 22 17:50:11 2013 +0100
- Revision:
- 1:6919289a5946
Update license
Add "parse_pins" function removed from the mbed library
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 1:6919289a5946 | 1 | /* mbed Microcontroller Library |
emilmont | 1:6919289a5946 | 2 | * Copyright (c) 2006-2013 ARM Limited |
emilmont | 1:6919289a5946 | 3 | * |
emilmont | 1:6919289a5946 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
emilmont | 1:6919289a5946 | 5 | * you may not use this file except in compliance with the License. |
emilmont | 1:6919289a5946 | 6 | * You may obtain a copy of the License at |
emilmont | 1:6919289a5946 | 7 | * |
emilmont | 1:6919289a5946 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
emilmont | 1:6919289a5946 | 9 | * |
emilmont | 1:6919289a5946 | 10 | * Unless required by applicable law or agreed to in writing, software |
emilmont | 1:6919289a5946 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
emilmont | 1:6919289a5946 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
emilmont | 1:6919289a5946 | 13 | * See the License for the specific language governing permissions and |
emilmont | 1:6919289a5946 | 14 | * limitations under the License. |
emilmont | 1:6919289a5946 | 15 | */ |
emilmont | 1:6919289a5946 | 16 | #ifndef MBED_PINMAP_H |
emilmont | 1:6919289a5946 | 17 | #define MBED_PINMAP_H |
emilmont | 1:6919289a5946 | 18 | |
emilmont | 1:6919289a5946 | 19 | #include "PinNames.h" |
emilmont | 1:6919289a5946 | 20 | |
emilmont | 1:6919289a5946 | 21 | namespace mbed { |
emilmont | 1:6919289a5946 | 22 | |
emilmont | 1:6919289a5946 | 23 | PinName parse_pins(const char *str); |
emilmont | 1:6919289a5946 | 24 | |
emilmont | 1:6919289a5946 | 25 | } |
emilmont | 1:6919289a5946 | 26 | |
emilmont | 1:6919289a5946 | 27 | #endif |