NuMaker Pelion Device Management example

Fork of mbed-os-example-pelion by cc li

Revision:
4:e564fd8be648
diff -r bda8852d7723 -r e564fd8be648 pre-main/mbed_main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pre-main/mbed_main.cpp	Fri Nov 22 11:16:39 2019 +0800
@@ -0,0 +1,48 @@
+/* 
+ * Copyright (c) 2019 Nuvoton Technology Corporation
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "mbed.h"
+
+/* Run pre-main tasks via mbed_main()
+ *
+ * In Mbed OS boot sequence, mbed_main(), designed for user application override, is run
+ * before main(). We use it to run the following tasks:
+ *
+ * 1. Simulate provision process for development
+ * 2. Set up event queue for dispatching host command
+ *
+ * WARNING: For mass production, remove this file.
+ */
+
+/* Check weak reference/definition at the link:
+ * http://www.keil.com/support/man/docs/ARMLINK/armlink_pge1362065917715.htm */
+
+extern "C" {
+    MBED_USED void mbed_main(void);
+    MBED_WEAK void provision(void);
+    MBED_WEAK void pump_host_command(void);
+}
+
+void mbed_main(void)
+{
+    provision();
+    /* Spare memory if event queue is unnecessary */
+    if (pump_host_command) {
+        mbed_event_queue()->call_every(2000, pump_host_command);
+    }
+}