Firmware updater for SCM-LTE-01 and SCM-LTE-BETA

Dependencies:   SakuraIO mbed

Files at this revision

API Documentation at this revision

Comitter:
misodengaku
Date:
Mon Apr 16 02:53:38 2018 +0000
Parent:
1:f5ba096817a0
Child:
3:4793e04b9f3b
Commit message:
add support for SCO-EVB-01

Changed in this revision

SakuraIO.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- a/SakuraIO.lib	Thu Sep 07 07:30:12 2017 +0000
+++ b/SakuraIO.lib	Mon Apr 16 02:53:38 2018 +0000
@@ -1,1 +1,1 @@
-https://mbed.org/teams/SAKURA-Internet/code/SakuraIO/#cf0b9cf1c832
+https://mbed.org/teams/SAKURA-Internet/code/SakuraIO/#a9dbb86be232
--- a/main.cpp	Thu Sep 07 07:30:12 2017 +0000
+++ b/main.cpp	Mon Apr 16 02:53:38 2018 +0000
@@ -13,7 +13,12 @@
 // Nucleo-64 series
 SPI spi(D11, D12, D13); // mosi, miso, sclk
 DigitalOut cs(D10);
-I2C i2c(D14, D15);     
+I2C i2c(D14, D15);
+#elif defined(TARGET_SAKURAIO_EVB_01)
+// sakura.io Evaluation Board(SCO-EVB-01)
+SPI spi(PA_10, PA_12, PB_0); // mosi, miso, sclk
+DigitalOut cs(PB_1);
+I2C i2c(PC_9, PA_8);
 #else
 // LPC1768 or others.
 SPI spi(p5, p6, p7); // mosi, miso, sclk
--- a/mbed.bld	Thu Sep 07 07:30:12 2017 +0000
+++ b/mbed.bld	Mon Apr 16 02:53:38 2018 +0000
@@ -1,1 +1,1 @@
-https://mbed.org/users/mbed_official/code/mbed/builds/a330f0fddbec
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/994bdf8177cb
\ No newline at end of file