temp: add T108 temp api

Change-Id: Icef782cc595f090c4dd2a732c4fa34b1acac6cbc
diff --git a/mbtk/test/asr1806/qser_thermal_test.c b/mbtk/test/asr1806/qser_thermal_test.c
new file mode 100644
index 0000000..62af03a
--- /dev/null
+++ b/mbtk/test/asr1806/qser_thermal_test.c
@@ -0,0 +1,27 @@
+#include <sys/types.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <string.h>
+#include <fcntl.h>
+#include <stdlib.h>
+
+#include"lynq_qser_thermal.h"
+#define MAX_SIZE 3
+
+int main(int argc, char *argv[]){
+    int numbers[MAX_SIZE];
+    int ret = 0;
+    ret = get_thermal_zone(numbers, MAX_SIZE);
+    if (ret <= 0)
+    {
+        printf("get_thermal_zone error\n");
+        return -1;
+    }
+
+    for (int j = 0; j < ret; ++j) {
+        printf("[%s-%d] temp[%d] = %d \n", __func__, __LINE__, j, numbers[j]);
+    }
+
+    return 0;
+}
+