contain lorawan with serial_rx enabled
Dependencies: pulga-lorawan-drv SPI_MX25R Si1133 BME280
Revision 54:19d02b47e598, committed 2019-07-23
- Comitter:
- mbed_official
- Date:
- Tue Jul 23 12:04:56 2019 +0100
- Parent:
- 53:1b6c71e938ac
- Child:
- 55:6f2e16ebde99
- Commit message:
- Merge pull request #153 from itziardelatorre/add_target_IM880B
add target IM880B
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-lorawan
Changed in this revision
Jenkinsfile | Show annotated file Show diff for this revision Revisions of this file |
mbed_app.json | Show annotated file Show diff for this revision Revisions of this file |
--- a/Jenkinsfile Thu May 16 12:01:57 2019 +0100 +++ b/Jenkinsfile Tue Jul 23 12:04:56 2019 +0100 @@ -86,7 +86,15 @@ deleteDir() dir("mbed-os-example-lorawan") { checkout scm - execute("mbed deploy --protocol ssh") + + // A workaround for mbed-cli caching issues + try { + execute("mbed deploy --protocol ssh") + } catch (err) { + echo "mbed deploy failed - retrying after 10s" + sleep(10) + execute("mbed deploy --protocol ssh") + } // Set mbed-os to revision received as parameter if (env.MBED_OS_REVISION != '') { @@ -143,7 +151,15 @@ deleteDir() dir("mbed-os-example-lorawan") { checkout scm - execute("mbed deploy --protocol ssh") + + // A workaround for mbed-cli caching issues + try { + execute("mbed deploy --protocol ssh") + } catch (err) { + echo "mbed deploy failed - retrying after 10s" + sleep(10) + execute("mbed deploy --protocol ssh") + } if (env.MBED_OS_REVISION != '') { dir("mbed-os") {
--- a/mbed_app.json Thu May 16 12:01:57 2019 +0100 +++ b/mbed_app.json Tue Jul 23 12:04:56 2019 +0100 @@ -235,6 +235,29 @@ "lora-ant-switch": "NC", "lora-pwr-amp-ctl": "NC", "lora-tcxo": "RF_TCXO_EN" + }, + + "IM880B": { + "main_stack_size": 1024, + "lora-radio": "SX1272", + "lora-spi-mosi": "SPI_RF_MOSI", + "lora-spi-miso": "SPI_RF_MISO", + "lora-spi-sclk": "SPI_RF_SCK", + "lora-cs": "SPI_RF_NSS", + "lora-reset": "SPI_RF_RESET", + "lora-dio0": "DIO0", + "lora-dio1": "DIO1", + "lora-dio2": "DIO2", + "lora-dio3": "DIO3", + "lora-dio4": "DIO4", + "lora-dio5": "NC", + "lora-rf-switch-ctl1": "NC", + "lora-rf-switch-ctl2": "NC", + "lora-txctl": "ANT_CTX_PA", + "lora-rxctl": "ANT_CRX_RX", + "lora-ant-switch": "NC", + "lora-pwr-amp-ctl": "NC", + "lora-tcxo": "NC" } }, "macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_lora_config.h\""]