The official mbed C/C SDK provides the software platform and libraries to build your applications.
Fork of mbed by
(01.May.2014) started sales! http://www.switch-science.com/catalog/1717/
(13.March.2014) updated to 0.5.0
This is a pin conversion PCB from mbed 1768/11U24 to arduino UNO.
- So if you have both mbed and arduino shields, I guess you would be happy with such a conversion board :)
Photos
- Board photo vvv
- Schematic photo vvv
- Functionality photo vvv
Latest eagle files
PCB >> /media/uploads/k4zuki/mbedshield050.brd
SCH >> /media/uploads/k4zuki/mbedshield050.sch
BIG changes from previous version
- Ethernet RJ45 connector is removed.
- http://mbed.org/components/Seeed-Ethernet-Shield-V20/ is the biggest hint to use Ethernet!
MostALL of components can be bought at Akizuki http://akizukidenshi.com/- But sorry, they do not send parts to abroad
- Pinout is changed!
arduino | 0.4.0 | 0.5.0 |
---|---|---|
D4 | p12 | p21 |
D5 | p11 | p22 |
MOSI_ | none | p11 |
MISO_ | none | p12 |
SCK_ | none | p13 |
This design has bug(s)
- I2C functional pin differs between 1768 and 11U24.
Fixed bugs here
- MiniUSB cable cannot be connected on mbed if you solder high-height electrolytic capacitor on C3.
- http://akizukidenshi.com/catalog/g/gP-05002/ is the solution to make this 100% AKIZUKI parts!
- the 6-pin ISP port is not inprimented in version 0.4.0
it will be fixed in later version 0.4.1/0.4.2/0.5.0This has beenfixed
I am doing some porting to use existing arduino shields but it may faster if you do it by yourself...
you can use arduino PinName "A0-A5,D0-D13" plus backside SPI port for easier porting.
To do this you have to edit PinName enum in
- "mbed/TARGET_LPC1768/PinNames.h" or
- "mbed/TARGET_LPC11U24/PinNames.h" as per your target mbed.
here is the actual list: This list includes define switch to switch pin assignment
part_of_PinNames.h
USBTX = P0_2, USBRX = P0_3, //from here mbeDshield mod D0=p27, D1=p28, D2=p14, D3=p13, #ifdef MBEDSHIELD_050 MOSI_=p11, MISO_=p12, SCK_=p13, D4=p21, D5=p22, #else D4=p12, D5=p11, #endif D6=p23, D7=p24, D8=p25, D9=p26, D10=p8, D11=p5, D12=p6, D13=p7, A0=p15, A1=p16, A2=p17, A3=p18, A4=p19, A5=p20, SDA=p9, SCL=p10, //mbeDshield mod ends here // Not connected NC = (int)0xFFFFFFFF
LPC1768/PinNames.h@55:d722ed6a4237, 2013-01-16 (annotated)
- Committer:
- emilmont
- Date:
- Wed Jan 16 12:56:34 2013 +0000
- Revision:
- 55:d722ed6a4237
- Parent:
- 54:71b101360fb9
- Child:
- 59:0883845fe643
Include "sleep_api.h" in "mbed.h"
Add initial IAR toolchain support
LPC I2C: better handling of status
Add sleep mode support for the LPC1768
Correct GCC "__semihost" definition
Correct GCC "_isatty" retargeting
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 44:24d45a770a51 | 1 | /* mbed Microcontroller Library |
emilmont | 54:71b101360fb9 | 2 | * Copyright (c) 2006-2013 ARM Limited |
emilmont | 44:24d45a770a51 | 3 | * |
emilmont | 44:24d45a770a51 | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
emilmont | 44:24d45a770a51 | 5 | * of this software and associated documentation files (the "Software"), to deal |
emilmont | 44:24d45a770a51 | 6 | * in the Software without restriction, including without limitation the rights |
emilmont | 44:24d45a770a51 | 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
emilmont | 44:24d45a770a51 | 8 | * copies of the Software, and to permit persons to whom the Software is |
emilmont | 44:24d45a770a51 | 9 | * furnished to do so, subject to the following conditions: |
emilmont | 44:24d45a770a51 | 10 | * |
emilmont | 44:24d45a770a51 | 11 | * The above copyright notice and this permission notice shall be included in |
emilmont | 44:24d45a770a51 | 12 | * all copies or substantial portions of the Software. |
emilmont | 44:24d45a770a51 | 13 | * |
emilmont | 44:24d45a770a51 | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
emilmont | 44:24d45a770a51 | 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
emilmont | 44:24d45a770a51 | 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
emilmont | 44:24d45a770a51 | 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
emilmont | 44:24d45a770a51 | 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
emilmont | 44:24d45a770a51 | 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
emilmont | 44:24d45a770a51 | 20 | * SOFTWARE. |
emilmont | 44:24d45a770a51 | 21 | */ |
emilmont | 44:24d45a770a51 | 22 | #ifndef MBED_PINNAMES_H |
emilmont | 44:24d45a770a51 | 23 | #define MBED_PINNAMES_H |
emilmont | 44:24d45a770a51 | 24 | |
emilmont | 44:24d45a770a51 | 25 | #include "cmsis.h" |
emilmont | 44:24d45a770a51 | 26 | |
emilmont | 44:24d45a770a51 | 27 | #ifdef __cplusplus |
emilmont | 44:24d45a770a51 | 28 | extern "C" { |
emilmont | 44:24d45a770a51 | 29 | #endif |
emilmont | 44:24d45a770a51 | 30 | |
emilmont | 44:24d45a770a51 | 31 | typedef enum { |
emilmont | 44:24d45a770a51 | 32 | PIN_INPUT, |
emilmont | 44:24d45a770a51 | 33 | PIN_OUTPUT |
emilmont | 44:24d45a770a51 | 34 | } PinDirection; |
emilmont | 44:24d45a770a51 | 35 | |
emilmont | 44:24d45a770a51 | 36 | #define PORT_SHIFT 5 |
emilmont | 44:24d45a770a51 | 37 | |
emilmont | 44:24d45a770a51 | 38 | typedef enum { |
emilmont | 44:24d45a770a51 | 39 | // LPC Pin Names |
emilmont | 44:24d45a770a51 | 40 | P0_0 = LPC_GPIO0_BASE, |
emilmont | 44:24d45a770a51 | 41 | P0_1, P0_2, P0_3, P0_4, P0_5, P0_6, P0_7, P0_8, P0_9, P0_10, P0_11, P0_12, P0_13, P0_14, P0_15, P0_16, P0_17, P0_18, P0_19, P0_20, P0_21, P0_22, P0_23, P0_24, P0_25, P0_26, P0_27, P0_28, P0_29, P0_30, P0_31, |
emilmont | 44:24d45a770a51 | 42 | P1_0, P1_1, P1_2, P1_3, P1_4, P1_5, P1_6, P1_7, P1_8, P1_9, P1_10, P1_11, P1_12, P1_13, P1_14, P1_15, P1_16, P1_17, P1_18, P1_19, P1_20, P1_21, P1_22, P1_23, P1_24, P1_25, P1_26, P1_27, P1_28, P1_29, P1_30, P1_31, |
emilmont | 44:24d45a770a51 | 43 | P2_0, P2_1, P2_2, P2_3, P2_4, P2_5, P2_6, P2_7, P2_8, P2_9, P2_10, P2_11, P2_12, P2_13, P2_14, P2_15, P2_16, P2_17, P2_18, P2_19, P2_20, P2_21, P2_22, P2_23, P2_24, P2_25, P2_26, P2_27, P2_28, P2_29, P2_30, P2_31, |
emilmont | 44:24d45a770a51 | 44 | P3_0, P3_1, P3_2, P3_3, P3_4, P3_5, P3_6, P3_7, P3_8, P3_9, P3_10, P3_11, P3_12, P3_13, P3_14, P3_15, P3_16, P3_17, P3_18, P3_19, P3_20, P3_21, P3_22, P3_23, P3_24, P3_25, P3_26, P3_27, P3_28, P3_29, P3_30, P3_31, |
emilmont | 44:24d45a770a51 | 45 | P4_0, P4_1, P4_2, P4_3, P4_4, P4_5, P4_6, P4_7, P4_8, P4_9, P4_10, P4_11, P4_12, P4_13, P4_14, P4_15, P4_16, P4_17, P4_18, P4_19, P4_20, P4_21, P4_22, P4_23, P4_24, P4_25, P4_26, P4_27, P4_28, P4_29, P4_30, P4_31, |
emilmont | 55:d722ed6a4237 | 46 | |
emilmont | 44:24d45a770a51 | 47 | // mbed DIP Pin Names |
emilmont | 55:d722ed6a4237 | 48 | p5 = P0_9, |
emilmont | 44:24d45a770a51 | 49 | p6 = P0_8, |
emilmont | 44:24d45a770a51 | 50 | p7 = P0_7, |
emilmont | 44:24d45a770a51 | 51 | p8 = P0_6, |
emilmont | 44:24d45a770a51 | 52 | p9 = P0_0, |
emilmont | 44:24d45a770a51 | 53 | p10 = P0_1, |
emilmont | 44:24d45a770a51 | 54 | p11 = P0_18, |
emilmont | 44:24d45a770a51 | 55 | p12 = P0_17, |
emilmont | 44:24d45a770a51 | 56 | p13 = P0_15, |
emilmont | 44:24d45a770a51 | 57 | p14 = P0_16, |
emilmont | 44:24d45a770a51 | 58 | p15 = P0_23, |
emilmont | 44:24d45a770a51 | 59 | p16 = P0_24, |
emilmont | 44:24d45a770a51 | 60 | p17 = P0_25, |
emilmont | 44:24d45a770a51 | 61 | p18 = P0_26, |
emilmont | 44:24d45a770a51 | 62 | p19 = P1_30, |
emilmont | 44:24d45a770a51 | 63 | p20 = P1_31, |
emilmont | 44:24d45a770a51 | 64 | p21 = P2_5, |
emilmont | 44:24d45a770a51 | 65 | p22 = P2_4, |
emilmont | 44:24d45a770a51 | 66 | p23 = P2_3, |
emilmont | 44:24d45a770a51 | 67 | p24 = P2_2, |
emilmont | 44:24d45a770a51 | 68 | p25 = P2_1, |
emilmont | 44:24d45a770a51 | 69 | p26 = P2_0, |
emilmont | 44:24d45a770a51 | 70 | p27 = P0_11, |
emilmont | 44:24d45a770a51 | 71 | p28 = P0_10, |
emilmont | 44:24d45a770a51 | 72 | p29 = P0_5, |
emilmont | 44:24d45a770a51 | 73 | p30 = P0_4, |
emilmont | 55:d722ed6a4237 | 74 | |
emilmont | 44:24d45a770a51 | 75 | // Other mbed Pin Names |
emilmont | 44:24d45a770a51 | 76 | #ifdef MCB1700 |
emilmont | 44:24d45a770a51 | 77 | LED1 = P1_28, |
emilmont | 44:24d45a770a51 | 78 | LED2 = P1_29, |
emilmont | 44:24d45a770a51 | 79 | LED3 = P1_31, |
emilmont | 44:24d45a770a51 | 80 | LED4 = P2_2, |
emilmont | 44:24d45a770a51 | 81 | #else |
emilmont | 44:24d45a770a51 | 82 | LED1 = P1_18, |
emilmont | 44:24d45a770a51 | 83 | LED2 = P1_20, |
emilmont | 44:24d45a770a51 | 84 | LED3 = P1_21, |
emilmont | 44:24d45a770a51 | 85 | LED4 = P1_23, |
emilmont | 44:24d45a770a51 | 86 | #endif |
emilmont | 44:24d45a770a51 | 87 | USBTX = P0_2, |
emilmont | 44:24d45a770a51 | 88 | USBRX = P0_3, |
emilmont | 55:d722ed6a4237 | 89 | |
emilmont | 44:24d45a770a51 | 90 | // Not connected |
emilmont | 44:24d45a770a51 | 91 | NC = (int)0xFFFFFFFF |
emilmont | 44:24d45a770a51 | 92 | } PinName; |
emilmont | 44:24d45a770a51 | 93 | |
emilmont | 44:24d45a770a51 | 94 | typedef enum { |
emilmont | 44:24d45a770a51 | 95 | PullUp = 0, |
emilmont | 44:24d45a770a51 | 96 | PullDown = 3, |
emilmont | 44:24d45a770a51 | 97 | PullNone = 2, |
emilmont | 44:24d45a770a51 | 98 | OpenDrain = 4 |
emilmont | 44:24d45a770a51 | 99 | } PinMode; |
emilmont | 44:24d45a770a51 | 100 | |
emilmont | 44:24d45a770a51 | 101 | // version of PINCON_TypeDef using register arrays |
emilmont | 44:24d45a770a51 | 102 | typedef struct { |
emilmont | 44:24d45a770a51 | 103 | __IO uint32_t PINSEL[11]; |
emilmont | 44:24d45a770a51 | 104 | uint32_t RESERVED0[5]; |
emilmont | 44:24d45a770a51 | 105 | __IO uint32_t PINMODE[10]; |
emilmont | 44:24d45a770a51 | 106 | __IO uint32_t PINMODE_OD[5]; |
emilmont | 44:24d45a770a51 | 107 | } PINCONARRAY_TypeDef; |
emilmont | 44:24d45a770a51 | 108 | |
emilmont | 44:24d45a770a51 | 109 | #define PINCONARRAY ((PINCONARRAY_TypeDef *)LPC_PINCON_BASE) |
emilmont | 44:24d45a770a51 | 110 | |
emilmont | 44:24d45a770a51 | 111 | #ifdef __cplusplus |
emilmont | 44:24d45a770a51 | 112 | } |
emilmont | 44:24d45a770a51 | 113 | #endif |
emilmont | 44:24d45a770a51 | 114 | |
emilmont | 44:24d45a770a51 | 115 | #endif |