Repository: incubator-mynewt-core Updated Branches: refs/heads/develop eeb4df4d5 -> 635176cb4
MYNEWT-538: Do not enable the new timer by default Modified the syscfg files that enabled TIMER_3 or TIMER_5 on the nordic platforms by default. By default, it should be disabled. While this should not have caused any issues, there might be an issue with enabling this timer when used with the bootloader. Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/635176cb Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/635176cb Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/635176cb Branch: refs/heads/develop Commit: 635176cb4b7a1186b6c17a09adcc68acf73d3190 Parents: eeb4df4 Author: William San Filippo <[email protected]> Authored: Mon Jan 9 14:26:09 2017 -0800 Committer: William San Filippo <[email protected]> Committed: Mon Jan 9 14:27:38 2017 -0800 ---------------------------------------------------------------------- hw/bsp/arduino_primo_nrf52/syscfg.yml | 2 +- hw/bsp/bmd300eval/syscfg.yml | 2 +- hw/bsp/nrf51dk/syscfg.yml | 2 +- hw/bsp/nrf52dk/syscfg.yml | 2 +- hw/bsp/rb-nano2/syscfg.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/635176cb/hw/bsp/arduino_primo_nrf52/syscfg.yml ---------------------------------------------------------------------- diff --git a/hw/bsp/arduino_primo_nrf52/syscfg.yml b/hw/bsp/arduino_primo_nrf52/syscfg.yml index 3052b94..e261799 100644 --- a/hw/bsp/arduino_primo_nrf52/syscfg.yml +++ b/hw/bsp/arduino_primo_nrf52/syscfg.yml @@ -112,7 +112,7 @@ syscfg.defs: value: 0 TIMER_5: description: 'NRF52 RTC 0' - value: 1 + value: 0 syscfg.vals: CONFIG_FCB_FLASH_AREA: FLASH_AREA_NFFS http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/635176cb/hw/bsp/bmd300eval/syscfg.yml ---------------------------------------------------------------------- diff --git a/hw/bsp/bmd300eval/syscfg.yml b/hw/bsp/bmd300eval/syscfg.yml index 2113c25..1d3b89b 100644 --- a/hw/bsp/bmd300eval/syscfg.yml +++ b/hw/bsp/bmd300eval/syscfg.yml @@ -88,7 +88,7 @@ syscfg.defs: value: 0 TIMER_5: description: 'NRF52 RTC 0' - value: 1 + value: 0 syscfg.vals: CONFIG_FCB_FLASH_AREA: FLASH_AREA_NFFS http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/635176cb/hw/bsp/nrf51dk/syscfg.yml ---------------------------------------------------------------------- diff --git a/hw/bsp/nrf51dk/syscfg.yml b/hw/bsp/nrf51dk/syscfg.yml index 89e118f..4b9e608 100644 --- a/hw/bsp/nrf51dk/syscfg.yml +++ b/hw/bsp/nrf51dk/syscfg.yml @@ -79,7 +79,7 @@ syscfg.defs: value: 0 TIMER_3: description: 'NRF51 RTC0' - value: 1 + value: 0 I2C_0: description: 'NRF51 I2C (TWI) interface 0' http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/635176cb/hw/bsp/nrf52dk/syscfg.yml ---------------------------------------------------------------------- diff --git a/hw/bsp/nrf52dk/syscfg.yml b/hw/bsp/nrf52dk/syscfg.yml index 94653dc..458913b 100644 --- a/hw/bsp/nrf52dk/syscfg.yml +++ b/hw/bsp/nrf52dk/syscfg.yml @@ -93,7 +93,7 @@ syscfg.defs: value: 0 TIMER_5: description: 'NRF52 RTC 0' - value: 1 + value: 0 I2C_0: description: 'NRF52 I2C (TWI) interface 0' http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/635176cb/hw/bsp/rb-nano2/syscfg.yml ---------------------------------------------------------------------- diff --git a/hw/bsp/rb-nano2/syscfg.yml b/hw/bsp/rb-nano2/syscfg.yml index e97a790..2c8aa6e 100644 --- a/hw/bsp/rb-nano2/syscfg.yml +++ b/hw/bsp/rb-nano2/syscfg.yml @@ -83,7 +83,7 @@ syscfg.defs: value: 0 TIMER_5: description: 'NRF52 RTC 0' - value: 1 + value: 0 syscfg.vals: CONFIG_FCB_FLASH_AREA: FLASH_AREA_NFFS
