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.
Fork of mbed-os-example-mbed5-lorawan by
Diff: Jenkinsfile
- Revision:
- 14:b25fefabb634
- Parent:
- 10:b6d8d4e1cc57
- Child:
- 20:2055271192d6
--- a/Jenkinsfile Thu Apr 19 10:15:15 2018 +0100 +++ b/Jenkinsfile Wed May 02 06:31:08 2018 +0100 @@ -99,10 +99,10 @@ // Adjust stack size and crystal values if ("${target}" == "DISCO_L072CZ_LRWAN1") { if (isUnix()) { - sh "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x13U)/' \ + sh "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x13)/' \ mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h" } else { - bat "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x13U)/' \ + bat "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x13)/' \ mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h" } } @@ -111,12 +111,12 @@ if (isUnix()) { sh "sed -i 's/define symbol __size_heap__ = 0x800;/define symbol __size_heap__ = 0x1000;/' \ mbed-os/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/TOOLCHAIN_IAR/stm32l082xZ.icf" - sh "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x16U)/' \ + sh "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x16)/' \ mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h" } else { bat "sed -i 's/define symbol __size_heap__ = 0x800;/define symbol __size_heap__ = 0x1000;/' \ mbed-os/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/TOOLCHAIN_IAR/stm32l082xZ.icf" - bat "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x16U)/' \ + bat "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x16)/' \ mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h" } }