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.
Revision 29:713c24b07795, committed 2019-10-03
- Comitter:
- Vkadaba
- Date:
- Thu Oct 03 09:36:16 2019 +0000
- Parent:
- 28:8a7a908a8fdb
- Child:
- 30:c78466adc502
- Commit message:
- SPI lines names changed to D pin names
Changed in this revision
| common/platform.h | 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 |
--- a/common/platform.h Thu Oct 03 05:55:23 2019 +0000
+++ b/common/platform.h Thu Oct 03 09:36:16 2019 +0000
@@ -50,9 +50,9 @@
# include <mbed.h>
# if defined(TARGET_NUCLEO_F411RE)
-# define PLATFORM_SPI_MOSI SPI_MOSI
-# define PLATFORM_SPI_MISO SPI_MISO
-# define PLATFORM_SPI_SCK SPI_SCK
+# define PLATFORM_SPI_MOSI D11
+# define PLATFORM_SPI_MISO D12
+# define PLATFORM_SPI_SCK D13
# define PLATFORM_SPI_CS D10
# define PLATFORM_GPIO_RESET D6
# define PLATFORM_GPIO_ALERT_ERROR D3
@@ -60,9 +60,9 @@
# define PLATFORM_LOG_TX D1
# define PLATFORM_LOG_RX D0
# elif defined(TARGET_ADUCM4050)
-# define PLATFORM_SPI_MOSI SPI0_MOSI
-# define PLATFORM_SPI_MISO SPI0_MISO
-# define PLATFORM_SPI_SCK SPI0_SCLK
+# define PLATFORM_SPI_MOSI D11
+# define PLATFORM_SPI_MISO D12
+# define PLATFORM_SPI_SCK D13
# define PLATFORM_SPI_CS D10
# define PLATFORM_GPIO_RESET D6
# define PLATFORM_GPIO_ALERT_ERROR D3
@@ -85,7 +85,7 @@
}, \
.gpio = { \
.resetPin = PLATFORM_GPIO_RESET, \
- .alertErrorPin = PLATFORM_GPIO_ALERT_ERROR,\
+ .alertErrorPin= PLATFORM_GPIO_ALERT_ERROR,\
.datareadyPin = PLATFORM_GPIO_DATAREADY,\
}, \
.log = { \
--- a/main.cpp Thu Oct 03 05:55:23 2019 +0000 +++ b/main.cpp Thu Oct 03 09:36:16 2019 +0000 @@ -56,9 +56,10 @@ extern ADMW_CONFIG multichannel_multicycle_config; extern ADMW_CONFIG multichannel_singlecycle_config; extern ADMW_CONFIG sensor2_bridge_4w_load_cell_config; +extern ADMW_CONFIG rtd_4w_config; extern ADMW_CONFIG config; /* Change the following pointer to select any of the configurations above */ -static ADMW_CONFIG *pSelectedConfig = &multichannel_continuous_config; +static ADMW_CONFIG *pSelectedConfig = &rtd_4w_config; static ADMW_CONNECTION connectionInfo = PLATFORM_CONNECTION_INFO;