From 5e714b010a6c9617f4ace2b50eb468b98dce8048 Mon Sep 17 00:00:00 2001 From: adbridge Date: Fri, 27 Sep 2019 15:51:41 +0100 Subject: [PATCH 1/3] Add mbed-os-example-pelion Primarily so that this example can be updated automatically with a pull request when updating Mbed OS version. Set to compile in the CI but not export or test. --- tools/test/examples/examples.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tools/test/examples/examples.json b/tools/test/examples/examples.json index 3d9bbf24b50..245ac9cd5a0 100644 --- a/tools/test/examples/examples.json +++ b/tools/test/examples/examples.json @@ -463,6 +463,22 @@ "baud_rate": 9600, "compare_log": ["mbed-os-example-attestation/tests/attestation.log"], "auto-update" : true + }, + { + "name": "mbed-os-example-pelion", + "github": "https://github.com/ARMmbed/mbed-os-example-pelion", + "mbed": [], + "test-repo-source": "github", + "features" : [], + "targets" : [], + "toolchains" : [], + "exporters": [], + "compile" : true, + "export": false, + "test" : false, + "baud_rate": 9600, + "compare_log": [], + "auto-update" : true } ] } From b0869654259a3d4314331e4f554a436e0e355a85 Mon Sep 17 00:00:00 2001 From: Anna Bridge Date: Fri, 11 Oct 2019 11:15:39 +0100 Subject: [PATCH 2/3] Update baud rate of pelion example Should be 115200 --- tools/test/examples/examples.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/examples/examples.json b/tools/test/examples/examples.json index 245ac9cd5a0..beec1dbab6d 100644 --- a/tools/test/examples/examples.json +++ b/tools/test/examples/examples.json @@ -476,7 +476,7 @@ "compile" : true, "export": false, "test" : false, - "baud_rate": 9600, + "baud_rate": 115200, "compare_log": [], "auto-update" : true } From 23af29028da2172e2198b87b28b9e5b53829a34a Mon Sep 17 00:00:00 2001 From: Anna Bridge Date: Mon, 14 Oct 2019 11:45:22 +0100 Subject: [PATCH 3/3] Update mbed-os-example-pelion for supported targets According to mbed_app.json in the example itself only these specific targets are listed. "K64F", "K66F", "NUCLEO_F429ZI", "UBLOX_EVK_ODIN_W2", "NUCLEO_F411RE", "DISCO_L475VG_IOT01A" --- tools/test/examples/examples.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/examples/examples.json b/tools/test/examples/examples.json index beec1dbab6d..f3f2a75fdec 100644 --- a/tools/test/examples/examples.json +++ b/tools/test/examples/examples.json @@ -470,7 +470,7 @@ "mbed": [], "test-repo-source": "github", "features" : [], - "targets" : [], + "targets" : ["K64F", "K66F", "NUCLEO_F429ZI", "UBLOX_EVK_ODIN_W2", "NUCLEO_F411RE", "DISCO_L475VG_IOT01A"], "toolchains" : [], "exporters": [], "compile" : true,