From 7318f47f9d65cf928a4c5d2ef91ffcde924944fd Mon Sep 17 00:00:00 2001 From: Tim Lunn Date: Wed, 12 Apr 2023 12:38:42 +1000 Subject: [PATCH 1/6] Set baudrate from metadata --- .github/workflows/silabs-firmware-build.yaml | 9 +++++++++ ...0001-config-configure-usart-vcom-for-SkyConnect.patch | 9 --------- .../0001-config-configure-usart-vcom-for-Yellow.patch | 9 --------- 3 files changed, 9 insertions(+), 18 deletions(-) diff --git a/.github/workflows/silabs-firmware-build.yaml b/.github/workflows/silabs-firmware-build.yaml index 1b67a5dd..9d7c993e 100644 --- a/.github/workflows/silabs-firmware-build.yaml +++ b/.github/workflows/silabs-firmware-build.yaml @@ -64,6 +64,15 @@ jobs: --export-destination=${{ inputs.firmware_name }} \ --copy-proj-sources --copy-sdk-sources --new-project --force \ --configuration="${{ inputs.configuration }}" + + - name: Set Baudrate + env: + baudrate: ${{ fromJSON(inputs.metadata_extra).baudrate }} + run: | + cd ${{ inputs.firmware_name }} + sed -Ei "s/^(\s*#define SL_\S+_VCOM_BAUDRATE\s+)[0-9]+/\\1$baudrate/" \ + config/sl_*usart_vcom_config.h + - name: Patch Firmware if: "${{ inputs.patchpath != '' }}" run: | diff --git a/OpenThreadRCP/SkyConnect/0001-config-configure-usart-vcom-for-SkyConnect.patch b/OpenThreadRCP/SkyConnect/0001-config-configure-usart-vcom-for-SkyConnect.patch index c312ffe3..ae47b6e3 100644 --- a/OpenThreadRCP/SkyConnect/0001-config-configure-usart-vcom-for-SkyConnect.patch +++ b/OpenThreadRCP/SkyConnect/0001-config-configure-usart-vcom-for-SkyConnect.patch @@ -12,15 +12,6 @@ diff --git a/config/sl_uartdrv_usart_vcom_config.h b/config/sl_uartdrv_usart_vco index 8a2ab70..7292f1a 100644 --- a/config/sl_uartdrv_usart_vcom_config.h +++ b/config/sl_uartdrv_usart_vcom_config.h -@@ -24,7 +24,7 @@ - // UART settings - // Baud rate - // Default: 115200 --#define SL_UARTDRV_USART_VCOM_BAUDRATE 115200 -+#define SL_UARTDRV_USART_VCOM_BAUDRATE 460800 - - // Parity mode to use - // No Parity @@ -76,21 +76,24 @@ // <<< sl:start pin_tool >>> // SL_UARTDRV_USART_VCOM diff --git a/OpenThreadRCP/Yellow/0001-config-configure-usart-vcom-for-Yellow.patch b/OpenThreadRCP/Yellow/0001-config-configure-usart-vcom-for-Yellow.patch index b062354f..00960edb 100644 --- a/OpenThreadRCP/Yellow/0001-config-configure-usart-vcom-for-Yellow.patch +++ b/OpenThreadRCP/Yellow/0001-config-configure-usart-vcom-for-Yellow.patch @@ -12,15 +12,6 @@ diff --git a/config/sl_uartdrv_usart_vcom_config.h b/config/sl_uartdrv_usart_vco index 8a2ab70..5caf982 100644 --- a/config/sl_uartdrv_usart_vcom_config.h +++ b/config/sl_uartdrv_usart_vcom_config.h -@@ -24,7 +24,7 @@ - // UART settings - // Baud rate - // Default: 115200 --#define SL_UARTDRV_USART_VCOM_BAUDRATE 115200 -+#define SL_UARTDRV_USART_VCOM_BAUDRATE 460800 - - // Parity mode to use - // No Parity @@ -76,21 +76,24 @@ // <<< sl:start pin_tool >>> // SL_UARTDRV_USART_VCOM From 8c6d1b22043c904214ce25d201bc96dd558f4368 Mon Sep 17 00:00:00 2001 From: Tim Lunn Date: Fri, 14 Apr 2023 11:49:19 +1000 Subject: [PATCH 2/6] Split out baudrate as input --- .github/workflows/build.yaml | 9 +++++---- .github/workflows/silabs-firmware-build.yaml | 17 +++++++++-------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 391e1f29..d36c182a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -97,7 +97,8 @@ jobs: extra_c_defs: "'-DEMBER_ADDRESS_TABLE_SIZE=16' '-DEMBER_MULTICAST_TABLE_SIZE=16'" sdk_version: 4.2.2 metadata_fw_type: "ncp-uart-hw" - metadata_extra: ${{ matrix.metadata_extra }} + baudrate: 115200 + metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\" }" rcp-multi-pan-firmware-build: name: RCP Multi-PAN @@ -165,7 +166,7 @@ jobs: patchpath: ${{ matrix.patchpath }} sdk_version: 4.2.2 metadata_fw_type: "rcp-uart-802154" - metadata_extra: ${{ matrix.metadata_extra }} + baudrate: 460800 ot-rcp-firmware-build: name: OpenThread RCP @@ -235,5 +236,5 @@ jobs: extra_c_defs: "'-DOPENTHREAD_CONFIG_NCP_REBOOT_BOOTLOADER_ENABLE=1'" sdk_version: 4.2.2 metadata_fw_type: "ot-rcp" - metadata_extra: ${{ matrix.metadata_extra }} - + baudrate: 460800 + metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\" }" diff --git a/.github/workflows/silabs-firmware-build.yaml b/.github/workflows/silabs-firmware-build.yaml index 9d7c993e..408ea85c 100644 --- a/.github/workflows/silabs-firmware-build.yaml +++ b/.github/workflows/silabs-firmware-build.yaml @@ -12,6 +12,9 @@ on: project_name: required: true type: string + baudrate: + required: true + type: number device: required: true type: string @@ -66,11 +69,9 @@ jobs: --configuration="${{ inputs.configuration }}" - name: Set Baudrate - env: - baudrate: ${{ fromJSON(inputs.metadata_extra).baudrate }} run: | cd ${{ inputs.firmware_name }} - sed -Ei "s/^(\s*#define SL_\S+_VCOM_BAUDRATE\s+)[0-9]+/\\1$baudrate/" \ + sed -Ei "s/^(\s*#define SL_\S+_VCOM_BAUDRATE\s+)[0-9]+/\\1${{ inputs.baudrate }}/" \ config/sl_*usart_vcom_config.h - name: Patch Firmware @@ -102,13 +103,13 @@ jobs: run: | cd ${{ inputs.firmware_name }} jq --null-input \ - --arg sdk_version "${{ inputs.sdk_version }}" \ - --argjson metadata_extra '${{ inputs.metadata_extra }}' \ '{ "metadata_version": 1, - "sdk_version": $sdk_version, - "fw_type": "${{ inputs.metadata_fw_type }}" - } + $metadata_extra' > version.json + "sdk_version": "${{ inputs.sdk_version }}", + "fw_type": "${{ inputs.metadata_fw_type }}", + "baudrate": "${{ inputs.baudrate }}" + } + ${{ inputs.metadata_extra }}' > version.json + - name: Generate gbl Firmware run: | cd ${{ inputs.firmware_name }} From 56cfe367bef936c6a3150db9237e31b9771cd7d0 Mon Sep 17 00:00:00 2001 From: Tim Lunn Date: Sat, 15 Apr 2023 21:03:38 +1000 Subject: [PATCH 3/6] Fix baudrate metadata is a number --- .github/workflows/silabs-firmware-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/silabs-firmware-build.yaml b/.github/workflows/silabs-firmware-build.yaml index 408ea85c..ee152357 100644 --- a/.github/workflows/silabs-firmware-build.yaml +++ b/.github/workflows/silabs-firmware-build.yaml @@ -107,7 +107,7 @@ jobs: "metadata_version": 1, "sdk_version": "${{ inputs.sdk_version }}", "fw_type": "${{ inputs.metadata_fw_type }}", - "baudrate": "${{ inputs.baudrate }}" + "baudrate": ${{ inputs.baudrate }} } + ${{ inputs.metadata_extra }}' > version.json - name: Generate gbl Firmware From 266ab3b61dc883d320da9e558d8fe078a7380a1d Mon Sep 17 00:00:00 2001 From: Tim Lunn Date: Mon, 17 Apr 2023 22:01:57 +1000 Subject: [PATCH 4/6] Adapt remaining changes for upstream baudrate changes --- .github/workflows/build.yaml | 59 +++++++++++++++++------------------- 1 file changed, 28 insertions(+), 31 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d36c182a..b651285e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -52,35 +52,35 @@ jobs: device: MGM210PA32JIA components: simple_led:board_activity patchpath: "EmberZNet/Yellow" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 115200 }" + baudrate: 115200 - target: skyconnect device: EFR32MG21A020F512IM32 patchpath: "EmberZNet/SkyConnect" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zbdonglee device: EFR32MG21A020F768IM32 patchpath: "EmberZNet/ZBDongleE" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zbdonglee-230 device: EFR32MG21A020F768IM32 patchpath: "EmberZNet/ZBDongleE-230" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 230400 }" + baudrate: 230400 - target: zbdonglee-none device: EFR32MG21A020F768IM32 patchpath: "EmberZNet/ZBDongleE-none" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v1 device: EFR32MG21A020F768IM32 patchpath: "EmberZNet/ZB-GW04-1v1" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v2 device: EFR32MG21A020F768IM32 patchpath: "EmberZNet/ZB-GW04-1v2" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v2-230 device: EFR32MG21A020F768IM32 patchpath: "EmberZNet/ZB-GW04-1v2-230" - metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\", \"baudrate\": 230400 }" + baudrate: 230400 uses: ./.github/workflows/silabs-firmware-build.yaml with: firmware_name: ncp-uart-hw-${{ matrix.target }} @@ -97,7 +97,6 @@ jobs: extra_c_defs: "'-DEMBER_ADDRESS_TABLE_SIZE=16' '-DEMBER_MULTICAST_TABLE_SIZE=16'" sdk_version: 4.2.2 metadata_fw_type: "ncp-uart-hw" - baudrate: 115200 metadata_extra: "{ \"ezsp_version\": \"7.2.2.0\" }" rcp-multi-pan-firmware-build: @@ -110,52 +109,52 @@ jobs: device: MGM210PA32JIA components: simple_led:board_activity,cpc_security_secondary_none patchpath: "RCPMultiPAN/Yellow" - metadata_extra: "{ \"baudrate\": 115200 }" + baudrate: 115200 - target: skyconnect device: EFR32MG21A020F512IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/SkyConnect" - metadata_extra: "{ \"baudrate\": 115200 }" + baudrate: 115200 - target: zbdonglee device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZBDongleE" - metadata_extra: "{ \"baudrate\": 115200 }" + baudrate: 115200 - target: zbdonglee-230 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZBDongleE-230" - metadata_extra: "{ \"baudrate\": 230400 }" + baudrate: 230400 - target: zbdonglee-460 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZBDongleE-460" - metadata_extra: "{ \"baudrate\": 460800 }" + baudrate: 460800 - target: zbdonglee-none device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZBDongleE-none" - metadata_extra: "{ \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v1 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZB-GW04-1v1" - metadata_extra: "{ \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v2 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZB-GW04-1v2" - metadata_extra: "{ \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v2-230 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZB-GW04-1v2-230" - metadata_extra: "{ \"baudrate\": 230400 }" + baudrate: 230400 - target: zb-gw04-1v2-460 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none patchpath: "RCPMultiPAN/ZB-GW04-1v2-460" - metadata_extra: "{ \"baudrate\": 460800 }" + baudrate: 460800 uses: ./.github/workflows/silabs-firmware-build.yaml with: firmware_name: rcp-uart-802154-${{ matrix.target }} @@ -166,7 +165,6 @@ jobs: patchpath: ${{ matrix.patchpath }} sdk_version: 4.2.2 metadata_fw_type: "rcp-uart-802154" - baudrate: 460800 ot-rcp-firmware-build: name: OpenThread RCP @@ -178,52 +176,52 @@ jobs: device: MGM210PA32JIA components: simple_led:board_activity,bootloader_interface patchpath: "OpenThreadRCP/Yellow" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 115200 }" + baudrate: 115200 - target: skyconnect device: EFR32MG21A020F512IM32 components: bootloader_interface patchpath: "OpenThreadRCP/SkyConnect" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zbdonglee device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZBDongleE" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zbdonglee-230 device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZBDongleE-230" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 230400 }" + baudrate: 230400 - target: zbdonglee-460 device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZBDongleE-460" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 460800 }" + baudrate: 460800 - target: zbdonglee-none device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZBDongleE-none" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v1 device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZB-GW04-1v1" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v2 device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZB-GW04-1v2" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 115200 }" + baudrate: 115200 - target: zb-gw04-1v2-230 device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZB-GW04-1v2-230" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 230400 }" + baudrate: 230400 - target: zb-gw04-1v2-460 device: EFR32MG21A020F768IM32 components: bootloader_interface patchpath: "OpenThreadRCP/ZB-GW04-1v2-460" - metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\", \"baudrate\": 460800 }" + baudrate: 460800 uses: ./.github/workflows/silabs-firmware-build.yaml with: firmware_name: ot-rcp-${{ matrix.target }} @@ -236,5 +234,4 @@ jobs: extra_c_defs: "'-DOPENTHREAD_CONFIG_NCP_REBOOT_BOOTLOADER_ENABLE=1'" sdk_version: 4.2.2 metadata_fw_type: "ot-rcp" - baudrate: 460800 metadata_extra: "{ \"ot_rcp_version\": \"SL-OPENTHREAD/2.2.2.0_GitHub-91fa1f455\" }" From 58618623aa0dde815a900bbc6acf9ba262acc9f1 Mon Sep 17 00:00:00 2001 From: Tim Lunn Date: Mon, 17 Apr 2023 22:17:05 +1000 Subject: [PATCH 5/6] Clean up patch paths --- .github/workflows/build.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b651285e..5eefa42b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -63,7 +63,7 @@ jobs: baudrate: 115200 - target: zbdonglee-230 device: EFR32MG21A020F768IM32 - patchpath: "EmberZNet/ZBDongleE-230" + patchpath: "EmberZNet/ZBDongleE" baudrate: 230400 - target: zbdonglee-none device: EFR32MG21A020F768IM32 @@ -79,7 +79,7 @@ jobs: baudrate: 115200 - target: zb-gw04-1v2-230 device: EFR32MG21A020F768IM32 - patchpath: "EmberZNet/ZB-GW04-1v2-230" + patchpath: "EmberZNet/ZB-GW04-1v2" baudrate: 230400 uses: ./.github/workflows/silabs-firmware-build.yaml with: @@ -123,12 +123,12 @@ jobs: - target: zbdonglee-230 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none - patchpath: "RCPMultiPAN/ZBDongleE-230" + patchpath: "RCPMultiPAN/ZBDongleE" baudrate: 230400 - target: zbdonglee-460 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none - patchpath: "RCPMultiPAN/ZBDongleE-460" + patchpath: "RCPMultiPAN/ZBDongleE" baudrate: 460800 - target: zbdonglee-none device: EFR32MG21A020F768IM32 @@ -148,12 +148,12 @@ jobs: - target: zb-gw04-1v2-230 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none - patchpath: "RCPMultiPAN/ZB-GW04-1v2-230" + patchpath: "RCPMultiPAN/ZB-GW04-1v2" baudrate: 230400 - target: zb-gw04-1v2-460 device: EFR32MG21A020F768IM32 components: cpc_security_secondary_none - patchpath: "RCPMultiPAN/ZB-GW04-1v2-460" + patchpath: "RCPMultiPAN/ZB-GW04-1v2" baudrate: 460800 uses: ./.github/workflows/silabs-firmware-build.yaml with: @@ -190,12 +190,12 @@ jobs: - target: zbdonglee-230 device: EFR32MG21A020F768IM32 components: bootloader_interface - patchpath: "OpenThreadRCP/ZBDongleE-230" + patchpath: "OpenThreadRCP/ZBDongleE" baudrate: 230400 - target: zbdonglee-460 device: EFR32MG21A020F768IM32 components: bootloader_interface - patchpath: "OpenThreadRCP/ZBDongleE-460" + patchpath: "OpenThreadRCP/ZBDongleE" baudrate: 460800 - target: zbdonglee-none device: EFR32MG21A020F768IM32 @@ -215,12 +215,12 @@ jobs: - target: zb-gw04-1v2-230 device: EFR32MG21A020F768IM32 components: bootloader_interface - patchpath: "OpenThreadRCP/ZB-GW04-1v2-230" + patchpath: "OpenThreadRCP/ZB-GW04-1v2" baudrate: 230400 - target: zb-gw04-1v2-460 device: EFR32MG21A020F768IM32 components: bootloader_interface - patchpath: "OpenThreadRCP/ZB-GW04-1v2-460" + patchpath: "OpenThreadRCP/ZB-GW04-1v2" baudrate: 460800 uses: ./.github/workflows/silabs-firmware-build.yaml with: From 32b0c06d3035caa916fa6564d5d1af5493319c6b Mon Sep 17 00:00:00 2001 From: Tim Lunn Date: Mon, 17 Apr 2023 22:24:13 +1000 Subject: [PATCH 6/6] Drop baudrate specific patches --- ...onfig-configure-usart-vcom-B1B0-D3D4.patch | 38 ---------------- .../0002-config-configure-usart-230400.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...onfig-configure-usart-vcom-B1B0-D3D4.patch | 38 ---------------- .../0002-config-configure-usart-230400.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...onfig-configure-usart-vcom-B1B0-D3D4.patch | 35 --------------- .../0002-config-configure-usart-230400.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...onfig-configure-usart-vcom-B1B0-D3D4.patch | 35 --------------- .../0002-config-configure-usart-460800.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...onfig-configure-usart-vcom-B1B0-D3D4.patch | 35 --------------- .../0002-config-configure-usart-230400.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...onfig-configure-usart-vcom-B1B0-D3D4.patch | 35 --------------- .../0002-config-configure-usart-460800.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...g-configure-cpc-usart-vcom-B1B0-D3D4.patch | 45 ------------------- ...02-config-configure-cpc-usart-230400.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...g-configure-cpc-usart-vcom-B1B0-D3D4.patch | 45 ------------------- ...02-config-configure-cpc-usart-460800.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...g-configure-cpc-usart-vcom-B1B0-D3D4.patch | 45 ------------------- ...02-config-configure-cpc-usart-230400.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- ...g-configure-cpc-usart-vcom-B1B0-D3D4.patch | 45 ------------------- ...02-config-configure-cpc-usart-460800.patch | 11 ----- ...0003-config-configure-hfxo-ctune-128.patch | 11 ----- 30 files changed, 616 deletions(-) delete mode 100644 EmberZNet/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch delete mode 100644 EmberZNet/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch delete mode 100644 EmberZNet/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 EmberZNet/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch delete mode 100644 EmberZNet/ZBDongleE-230/0002-config-configure-usart-230400.patch delete mode 100644 EmberZNet/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 OpenThreadRCP/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch delete mode 100644 OpenThreadRCP/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch delete mode 100644 OpenThreadRCP/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 OpenThreadRCP/ZB-GW04-1v2-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch delete mode 100644 OpenThreadRCP/ZB-GW04-1v2-460/0002-config-configure-usart-460800.patch delete mode 100644 OpenThreadRCP/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 OpenThreadRCP/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch delete mode 100644 OpenThreadRCP/ZBDongleE-230/0002-config-configure-usart-230400.patch delete mode 100644 OpenThreadRCP/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 OpenThreadRCP/ZBDongleE-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch delete mode 100644 OpenThreadRCP/ZBDongleE-460/0002-config-configure-usart-460800.patch delete mode 100644 OpenThreadRCP/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 RCPMultiPAN/ZB-GW04-1v2-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch delete mode 100644 RCPMultiPAN/ZB-GW04-1v2-230/0002-config-configure-cpc-usart-230400.patch delete mode 100644 RCPMultiPAN/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 RCPMultiPAN/ZB-GW04-1v2-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch delete mode 100644 RCPMultiPAN/ZB-GW04-1v2-460/0002-config-configure-cpc-usart-460800.patch delete mode 100644 RCPMultiPAN/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 RCPMultiPAN/ZBDongleE-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch delete mode 100644 RCPMultiPAN/ZBDongleE-230/0002-config-configure-cpc-usart-230400.patch delete mode 100644 RCPMultiPAN/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch delete mode 100644 RCPMultiPAN/ZBDongleE-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch delete mode 100644 RCPMultiPAN/ZBDongleE-460/0002-config-configure-cpc-usart-460800.patch delete mode 100644 RCPMultiPAN/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch diff --git a/EmberZNet/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch b/EmberZNet/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index fde52ded..00000000 --- a/EmberZNet/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- a/config/sl_iostream_usart_vcom_config.h 2023-03-14 15:14:40.895685292 +0100 -+++ b/config/sl_iostream_usart_vcom_config.h 2023-03-14 15:32:20.543280395 +0100 -@@ -84,21 +84,24 @@ - // <<< sl:start pin_tool >>> - // SL_IOSTREAM_USART_VCOM - // $[USART_SL_IOSTREAM_USART_VCOM] --#warning "IO Stream USART peripheral not configured" --// #define SL_IOSTREAM_USART_VCOM_PERIPHERAL USART0 --// #define SL_IOSTREAM_USART_VCOM_PERIPHERAL_NO 0 -+#define SL_IOSTREAM_USART_VCOM_PERIPHERAL USART0 -+#define SL_IOSTREAM_USART_VCOM_PERIPHERAL_NO 0 - --// #define SL_IOSTREAM_USART_VCOM_TX_PORT gpioPortC --// #define SL_IOSTREAM_USART_VCOM_TX_PIN 11 -+// USART0 TX on PB01 -+#define SL_IOSTREAM_USART_VCOM_TX_PORT gpioPortB -+#define SL_IOSTREAM_USART_VCOM_TX_PIN 1 - --// #define SL_IOSTREAM_USART_VCOM_RX_PORT gpioPortC --// #define SL_IOSTREAM_USART_VCOM_RX_PIN 10 -+// USART0 RX on PB00 -+#define SL_IOSTREAM_USART_VCOM_RX_PORT gpioPortB -+#define SL_IOSTREAM_USART_VCOM_RX_PIN 0 - --// #define SL_IOSTREAM_USART_VCOM_CTS_PORT gpioPortA --// #define SL_IOSTREAM_USART_VCOM_CTS_PIN 12 -+// USART0 CTS on PD03 -+#define SL_IOSTREAM_USART_VCOM_CTS_PORT gpioPortD -+#define SL_IOSTREAM_USART_VCOM_CTS_PIN 3 - --// #define SL_IOSTREAM_USART_VCOM_RTS_PORT gpioPortC --// #define SL_IOSTREAM_USART_VCOM_RTS_PIN 8 -+// USART0 RTS on PD04 -+#define SL_IOSTREAM_USART_VCOM_RTS_PORT gpioPortD -+#define SL_IOSTREAM_USART_VCOM_RTS_PIN 4 - // [USART_SL_IOSTREAM_USART_VCOM]$ - // <<< sl:end pin_tool >>> - diff --git a/EmberZNet/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch b/EmberZNet/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch deleted file mode 100644 index 9f98222d..00000000 --- a/EmberZNet/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_iostream_usart_vcom_config.h.io 2023-03-14 15:52:18.284652010 +0100 -+++ b/config/sl_iostream_usart_vcom_config.h 2023-03-14 15:52:37.908968518 +0100 -@@ -37,7 +37,7 @@ - - // Baud rate - // Default: 115200 --#define SL_IOSTREAM_USART_VCOM_BAUDRATE 115200 -+#define SL_IOSTREAM_USART_VCOM_BAUDRATE 230400 - - // Parity mode to use - // No Parity diff --git a/EmberZNet/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch b/EmberZNet/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 0b276e35..00000000 --- a/EmberZNet/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h 2023-03-14 16:09:22.706955346 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-14 16:09:41.591168767 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/EmberZNet/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch b/EmberZNet/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index fde52ded..00000000 --- a/EmberZNet/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- a/config/sl_iostream_usart_vcom_config.h 2023-03-14 15:14:40.895685292 +0100 -+++ b/config/sl_iostream_usart_vcom_config.h 2023-03-14 15:32:20.543280395 +0100 -@@ -84,21 +84,24 @@ - // <<< sl:start pin_tool >>> - // SL_IOSTREAM_USART_VCOM - // $[USART_SL_IOSTREAM_USART_VCOM] --#warning "IO Stream USART peripheral not configured" --// #define SL_IOSTREAM_USART_VCOM_PERIPHERAL USART0 --// #define SL_IOSTREAM_USART_VCOM_PERIPHERAL_NO 0 -+#define SL_IOSTREAM_USART_VCOM_PERIPHERAL USART0 -+#define SL_IOSTREAM_USART_VCOM_PERIPHERAL_NO 0 - --// #define SL_IOSTREAM_USART_VCOM_TX_PORT gpioPortC --// #define SL_IOSTREAM_USART_VCOM_TX_PIN 11 -+// USART0 TX on PB01 -+#define SL_IOSTREAM_USART_VCOM_TX_PORT gpioPortB -+#define SL_IOSTREAM_USART_VCOM_TX_PIN 1 - --// #define SL_IOSTREAM_USART_VCOM_RX_PORT gpioPortC --// #define SL_IOSTREAM_USART_VCOM_RX_PIN 10 -+// USART0 RX on PB00 -+#define SL_IOSTREAM_USART_VCOM_RX_PORT gpioPortB -+#define SL_IOSTREAM_USART_VCOM_RX_PIN 0 - --// #define SL_IOSTREAM_USART_VCOM_CTS_PORT gpioPortA --// #define SL_IOSTREAM_USART_VCOM_CTS_PIN 12 -+// USART0 CTS on PD03 -+#define SL_IOSTREAM_USART_VCOM_CTS_PORT gpioPortD -+#define SL_IOSTREAM_USART_VCOM_CTS_PIN 3 - --// #define SL_IOSTREAM_USART_VCOM_RTS_PORT gpioPortC --// #define SL_IOSTREAM_USART_VCOM_RTS_PIN 8 -+// USART0 RTS on PD04 -+#define SL_IOSTREAM_USART_VCOM_RTS_PORT gpioPortD -+#define SL_IOSTREAM_USART_VCOM_RTS_PIN 4 - // [USART_SL_IOSTREAM_USART_VCOM]$ - // <<< sl:end pin_tool >>> - diff --git a/EmberZNet/ZBDongleE-230/0002-config-configure-usart-230400.patch b/EmberZNet/ZBDongleE-230/0002-config-configure-usart-230400.patch deleted file mode 100644 index 9f98222d..00000000 --- a/EmberZNet/ZBDongleE-230/0002-config-configure-usart-230400.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_iostream_usart_vcom_config.h.io 2023-03-14 15:52:18.284652010 +0100 -+++ b/config/sl_iostream_usart_vcom_config.h 2023-03-14 15:52:37.908968518 +0100 -@@ -37,7 +37,7 @@ - - // Baud rate - // Default: 115200 --#define SL_IOSTREAM_USART_VCOM_BAUDRATE 115200 -+#define SL_IOSTREAM_USART_VCOM_BAUDRATE 230400 - - // Parity mode to use - // No Parity diff --git a/EmberZNet/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch b/EmberZNet/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 0b276e35..00000000 --- a/EmberZNet/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h 2023-03-14 16:09:22.706955346 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-14 16:09:41.591168767 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/OpenThreadRCP/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch b/OpenThreadRCP/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index 68ed9633..00000000 --- a/OpenThreadRCP/ZB-GW04-1v2-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 01:55:55.270307126 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:00:15.095622384 +0100 -@@ -76,21 +76,21 @@ - // <<< sl:start pin_tool >>> - // SL_UARTDRV_USART_VCOM - // $[USART_SL_UARTDRV_USART_VCOM] --#warning "UARTDRV USART peripheral not configured" --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 -+// #warning "UARTDRV USART peripheral not configured" -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 - --// #define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_TX_PIN 0 -+#define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_TX_PIN 1 - --// #define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RX_PIN 1 -+#define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_RX_PIN 0 - --// #define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_CTS_PIN 2 -+#define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_CTS_PIN 3 - --// #define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RTS_PIN 3 -+#define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_RTS_PIN 4 - // [USART_SL_UARTDRV_USART_VCOM]$ - // <<< sl:end pin_tool >>> - diff --git a/OpenThreadRCP/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch b/OpenThreadRCP/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch deleted file mode 100644 index 341aef50..00000000 --- a/OpenThreadRCP/ZB-GW04-1v2-230/0002-config-configure-usart-230400.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:03:24.110344793 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:08:04.901232475 +0100 -@@ -24,7 +24,7 @@ - // UART settings - // Baud rate - // Default: 115200 --#define SL_UARTDRV_USART_VCOM_BAUDRATE 115200 -+#define SL_UARTDRV_USART_VCOM_BAUDRATE 230400 - - // Parity mode to use - // No Parity diff --git a/OpenThreadRCP/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch b/OpenThreadRCP/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 66f814c8..00000000 --- a/OpenThreadRCP/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:27.273963775 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:43.166712277 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/OpenThreadRCP/ZB-GW04-1v2-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch b/OpenThreadRCP/ZB-GW04-1v2-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index 68ed9633..00000000 --- a/OpenThreadRCP/ZB-GW04-1v2-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 01:55:55.270307126 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:00:15.095622384 +0100 -@@ -76,21 +76,21 @@ - // <<< sl:start pin_tool >>> - // SL_UARTDRV_USART_VCOM - // $[USART_SL_UARTDRV_USART_VCOM] --#warning "UARTDRV USART peripheral not configured" --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 -+// #warning "UARTDRV USART peripheral not configured" -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 - --// #define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_TX_PIN 0 -+#define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_TX_PIN 1 - --// #define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RX_PIN 1 -+#define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_RX_PIN 0 - --// #define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_CTS_PIN 2 -+#define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_CTS_PIN 3 - --// #define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RTS_PIN 3 -+#define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_RTS_PIN 4 - // [USART_SL_UARTDRV_USART_VCOM]$ - // <<< sl:end pin_tool >>> - diff --git a/OpenThreadRCP/ZB-GW04-1v2-460/0002-config-configure-usart-460800.patch b/OpenThreadRCP/ZB-GW04-1v2-460/0002-config-configure-usart-460800.patch deleted file mode 100644 index 229ce191..00000000 --- a/OpenThreadRCP/ZB-GW04-1v2-460/0002-config-configure-usart-460800.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:03:24.110344793 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:05:51.859481615 +0100 -@@ -24,7 +24,7 @@ - // UART settings - // Baud rate - // Default: 115200 --#define SL_UARTDRV_USART_VCOM_BAUDRATE 115200 -+#define SL_UARTDRV_USART_VCOM_BAUDRATE 460800 - - // Parity mode to use - // No Parity diff --git a/OpenThreadRCP/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch b/OpenThreadRCP/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 66f814c8..00000000 --- a/OpenThreadRCP/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:27.273963775 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:43.166712277 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/OpenThreadRCP/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch b/OpenThreadRCP/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index 68ed9633..00000000 --- a/OpenThreadRCP/ZBDongleE-230/0001-config-configure-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 01:55:55.270307126 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:00:15.095622384 +0100 -@@ -76,21 +76,21 @@ - // <<< sl:start pin_tool >>> - // SL_UARTDRV_USART_VCOM - // $[USART_SL_UARTDRV_USART_VCOM] --#warning "UARTDRV USART peripheral not configured" --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 -+// #warning "UARTDRV USART peripheral not configured" -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 - --// #define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_TX_PIN 0 -+#define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_TX_PIN 1 - --// #define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RX_PIN 1 -+#define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_RX_PIN 0 - --// #define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_CTS_PIN 2 -+#define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_CTS_PIN 3 - --// #define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RTS_PIN 3 -+#define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_RTS_PIN 4 - // [USART_SL_UARTDRV_USART_VCOM]$ - // <<< sl:end pin_tool >>> - diff --git a/OpenThreadRCP/ZBDongleE-230/0002-config-configure-usart-230400.patch b/OpenThreadRCP/ZBDongleE-230/0002-config-configure-usart-230400.patch deleted file mode 100644 index 341aef50..00000000 --- a/OpenThreadRCP/ZBDongleE-230/0002-config-configure-usart-230400.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:03:24.110344793 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:08:04.901232475 +0100 -@@ -24,7 +24,7 @@ - // UART settings - // Baud rate - // Default: 115200 --#define SL_UARTDRV_USART_VCOM_BAUDRATE 115200 -+#define SL_UARTDRV_USART_VCOM_BAUDRATE 230400 - - // Parity mode to use - // No Parity diff --git a/OpenThreadRCP/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch b/OpenThreadRCP/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 66f814c8..00000000 --- a/OpenThreadRCP/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:27.273963775 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:43.166712277 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/OpenThreadRCP/ZBDongleE-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch b/OpenThreadRCP/ZBDongleE-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index 68ed9633..00000000 --- a/OpenThreadRCP/ZBDongleE-460/0001-config-configure-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 01:55:55.270307126 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:00:15.095622384 +0100 -@@ -76,21 +76,21 @@ - // <<< sl:start pin_tool >>> - // SL_UARTDRV_USART_VCOM - // $[USART_SL_UARTDRV_USART_VCOM] --#warning "UARTDRV USART peripheral not configured" --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 --// #define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 -+// #warning "UARTDRV USART peripheral not configured" -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL USART0 -+#define SL_UARTDRV_USART_VCOM_PERIPHERAL_NO 0 - --// #define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_TX_PIN 0 -+#define SL_UARTDRV_USART_VCOM_TX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_TX_PIN 1 - --// #define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RX_PIN 1 -+#define SL_UARTDRV_USART_VCOM_RX_PORT gpioPortB -+#define SL_UARTDRV_USART_VCOM_RX_PIN 0 - --// #define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_CTS_PIN 2 -+#define SL_UARTDRV_USART_VCOM_CTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_CTS_PIN 3 - --// #define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortA --// #define SL_UARTDRV_USART_VCOM_RTS_PIN 3 -+#define SL_UARTDRV_USART_VCOM_RTS_PORT gpioPortD -+#define SL_UARTDRV_USART_VCOM_RTS_PIN 4 - // [USART_SL_UARTDRV_USART_VCOM]$ - // <<< sl:end pin_tool >>> - diff --git a/OpenThreadRCP/ZBDongleE-460/0002-config-configure-usart-460800.patch b/OpenThreadRCP/ZBDongleE-460/0002-config-configure-usart-460800.patch deleted file mode 100644 index 229ce191..00000000 --- a/OpenThreadRCP/ZBDongleE-460/0002-config-configure-usart-460800.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:03:24.110344793 +0100 -+++ b/config/sl_uartdrv_usart_vcom_config.h 2023-03-16 02:05:51.859481615 +0100 -@@ -24,7 +24,7 @@ - // UART settings - // Baud rate - // Default: 115200 --#define SL_UARTDRV_USART_VCOM_BAUDRATE 115200 -+#define SL_UARTDRV_USART_VCOM_BAUDRATE 460800 - - // Parity mode to use - // No Parity diff --git a/OpenThreadRCP/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch b/OpenThreadRCP/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 66f814c8..00000000 --- a/OpenThreadRCP/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:27.273963775 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-16 02:14:43.166712277 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/RCPMultiPAN/ZB-GW04-1v2-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch b/RCPMultiPAN/ZB-GW04-1v2-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index ec890bb1..00000000 --- a/RCPMultiPAN/ZB-GW04-1v2-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- - ...cpc_drv_secondary_uart_usart_vcom_config.h | 24 +++++++++---------- - 1 file changed, 12 insertions(+), 12 deletions(-) - -diff --git a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -index 66288db..56c21a9 100644 ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -@@ -62,21 +62,21 @@ - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL USART0 - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL_NO 0 - --// USART TX --#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_TX_PIN 13 -+// USART0 TX on PA06 -+#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_TX_PIN 1 - --// USART RX --#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RX_PIN 14 -+// USART0 RX on PA05 -+#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_RX_PIN 0 - --// USART CTS --#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_CTS_PIN 13 -+// USART0 CTS on PB01 -+#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_CTS_PIN 3 - --// USART RTS --#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RTS_PIN 14 -+// USART0 RTS on PB00 -+#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_RTS_PIN 4 - - // [USART_SL_CPC_DRV_UART_VCOM]$ - // <<< sl:end pin_tool >>> --- -2.39.1 - diff --git a/RCPMultiPAN/ZB-GW04-1v2-230/0002-config-configure-cpc-usart-230400.patch b/RCPMultiPAN/ZB-GW04-1v2-230/0002-config-configure-cpc-usart-230400.patch deleted file mode 100644 index 7f694d00..00000000 --- a/RCPMultiPAN/ZB-GW04-1v2-230/0002-config-configure-cpc-usart-230400.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h.115k 2023-03-11 14:55:22.736728439 +0100 -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h 2023-03-11 14:54:38.956567387 +0100 -@@ -45,7 +45,7 @@ - - // UART Baudrate - // Default: 115200 --#define SL_CPC_DRV_UART_VCOM_BAUDRATE 115200 -+#define SL_CPC_DRV_UART_VCOM_BAUDRATE 230400 - - // Flow control - // None diff --git a/RCPMultiPAN/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch b/RCPMultiPAN/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 78f5efaf..00000000 --- a/RCPMultiPAN/ZB-GW04-1v2-230/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h.orig 2023-03-11 14:40:52.065526045 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-11 14:41:23.249640718 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/RCPMultiPAN/ZB-GW04-1v2-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch b/RCPMultiPAN/ZB-GW04-1v2-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index ec890bb1..00000000 --- a/RCPMultiPAN/ZB-GW04-1v2-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- - ...cpc_drv_secondary_uart_usart_vcom_config.h | 24 +++++++++---------- - 1 file changed, 12 insertions(+), 12 deletions(-) - -diff --git a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -index 66288db..56c21a9 100644 ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -@@ -62,21 +62,21 @@ - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL USART0 - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL_NO 0 - --// USART TX --#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_TX_PIN 13 -+// USART0 TX on PA06 -+#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_TX_PIN 1 - --// USART RX --#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RX_PIN 14 -+// USART0 RX on PA05 -+#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_RX_PIN 0 - --// USART CTS --#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_CTS_PIN 13 -+// USART0 CTS on PB01 -+#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_CTS_PIN 3 - --// USART RTS --#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RTS_PIN 14 -+// USART0 RTS on PB00 -+#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_RTS_PIN 4 - - // [USART_SL_CPC_DRV_UART_VCOM]$ - // <<< sl:end pin_tool >>> --- -2.39.1 - diff --git a/RCPMultiPAN/ZB-GW04-1v2-460/0002-config-configure-cpc-usart-460800.patch b/RCPMultiPAN/ZB-GW04-1v2-460/0002-config-configure-cpc-usart-460800.patch deleted file mode 100644 index c8a115eb..00000000 --- a/RCPMultiPAN/ZB-GW04-1v2-460/0002-config-configure-cpc-usart-460800.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h.115k 2023-03-11 14:55:22.736728439 +0100 -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h 2023-03-11 14:54:38.956567387 +0100 -@@ -45,7 +45,7 @@ - - // UART Baudrate - // Default: 115200 --#define SL_CPC_DRV_UART_VCOM_BAUDRATE 115200 -+#define SL_CPC_DRV_UART_VCOM_BAUDRATE 460800 - - // Flow control - // None diff --git a/RCPMultiPAN/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch b/RCPMultiPAN/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 78f5efaf..00000000 --- a/RCPMultiPAN/ZB-GW04-1v2-460/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h.orig 2023-03-11 14:40:52.065526045 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-11 14:41:23.249640718 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/RCPMultiPAN/ZBDongleE-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch b/RCPMultiPAN/ZBDongleE-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index ec890bb1..00000000 --- a/RCPMultiPAN/ZBDongleE-230/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- - ...cpc_drv_secondary_uart_usart_vcom_config.h | 24 +++++++++---------- - 1 file changed, 12 insertions(+), 12 deletions(-) - -diff --git a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -index 66288db..56c21a9 100644 ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -@@ -62,21 +62,21 @@ - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL USART0 - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL_NO 0 - --// USART TX --#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_TX_PIN 13 -+// USART0 TX on PA06 -+#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_TX_PIN 1 - --// USART RX --#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RX_PIN 14 -+// USART0 RX on PA05 -+#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_RX_PIN 0 - --// USART CTS --#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_CTS_PIN 13 -+// USART0 CTS on PB01 -+#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_CTS_PIN 3 - --// USART RTS --#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RTS_PIN 14 -+// USART0 RTS on PB00 -+#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_RTS_PIN 4 - - // [USART_SL_CPC_DRV_UART_VCOM]$ - // <<< sl:end pin_tool >>> --- -2.39.1 - diff --git a/RCPMultiPAN/ZBDongleE-230/0002-config-configure-cpc-usart-230400.patch b/RCPMultiPAN/ZBDongleE-230/0002-config-configure-cpc-usart-230400.patch deleted file mode 100644 index 7f694d00..00000000 --- a/RCPMultiPAN/ZBDongleE-230/0002-config-configure-cpc-usart-230400.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h.115k 2023-03-11 14:55:22.736728439 +0100 -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h 2023-03-11 14:54:38.956567387 +0100 -@@ -45,7 +45,7 @@ - - // UART Baudrate - // Default: 115200 --#define SL_CPC_DRV_UART_VCOM_BAUDRATE 115200 -+#define SL_CPC_DRV_UART_VCOM_BAUDRATE 230400 - - // Flow control - // None diff --git a/RCPMultiPAN/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch b/RCPMultiPAN/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 78f5efaf..00000000 --- a/RCPMultiPAN/ZBDongleE-230/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h.orig 2023-03-11 14:40:52.065526045 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-11 14:41:23.249640718 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> - diff --git a/RCPMultiPAN/ZBDongleE-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch b/RCPMultiPAN/ZBDongleE-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch deleted file mode 100644 index ec890bb1..00000000 --- a/RCPMultiPAN/ZBDongleE-460/0001-config-configure-cpc-usart-vcom-B1B0-D3D4.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- - ...cpc_drv_secondary_uart_usart_vcom_config.h | 24 +++++++++---------- - 1 file changed, 12 insertions(+), 12 deletions(-) - -diff --git a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -index 66288db..56c21a9 100644 ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h -@@ -62,21 +62,21 @@ - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL USART0 - #define SL_CPC_DRV_UART_VCOM_PERIPHERAL_NO 0 - --// USART TX --#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_TX_PIN 13 -+// USART0 TX on PA06 -+#define SL_CPC_DRV_UART_VCOM_TX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_TX_PIN 1 - --// USART RX --#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RX_PIN 14 -+// USART0 RX on PA05 -+#define SL_CPC_DRV_UART_VCOM_RX_PORT gpioPortB -+#define SL_CPC_DRV_UART_VCOM_RX_PIN 0 - --// USART CTS --#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_CTS_PIN 13 -+// USART0 CTS on PB01 -+#define SL_CPC_DRV_UART_VCOM_CTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_CTS_PIN 3 - --// USART RTS --#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD --#define SL_CPC_DRV_UART_VCOM_RTS_PIN 14 -+// USART0 RTS on PB00 -+#define SL_CPC_DRV_UART_VCOM_RTS_PORT gpioPortD -+#define SL_CPC_DRV_UART_VCOM_RTS_PIN 4 - - // [USART_SL_CPC_DRV_UART_VCOM]$ - // <<< sl:end pin_tool >>> --- -2.39.1 - diff --git a/RCPMultiPAN/ZBDongleE-460/0002-config-configure-cpc-usart-460800.patch b/RCPMultiPAN/ZBDongleE-460/0002-config-configure-cpc-usart-460800.patch deleted file mode 100644 index c8a115eb..00000000 --- a/RCPMultiPAN/ZBDongleE-460/0002-config-configure-cpc-usart-460800.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h.115k 2023-03-11 14:55:22.736728439 +0100 -+++ b/config/sl_cpc_drv_secondary_uart_usart_vcom_config.h 2023-03-11 14:54:38.956567387 +0100 -@@ -45,7 +45,7 @@ - - // UART Baudrate - // Default: 115200 --#define SL_CPC_DRV_UART_VCOM_BAUDRATE 115200 -+#define SL_CPC_DRV_UART_VCOM_BAUDRATE 460800 - - // Flow control - // None diff --git a/RCPMultiPAN/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch b/RCPMultiPAN/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch deleted file mode 100644 index 78f5efaf..00000000 --- a/RCPMultiPAN/ZBDongleE-460/0003-config-configure-hfxo-ctune-128.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config/sl_device_init_hfxo_config.h.orig 2023-03-11 14:40:52.065526045 +0100 -+++ b/config/sl_device_init_hfxo_config.h 2023-03-11 14:41:23.249640718 +0100 -@@ -46,7 +46,7 @@ - - // CTUNE <0-255> - // Default: 140 --#define SL_DEVICE_INIT_HFXO_CTUNE 140 -+#define SL_DEVICE_INIT_HFXO_CTUNE 128 - - // <<< end of configuration section >>> -