[Feature] add GA346 baseline version

Change-Id: Ic62933698569507dcf98240cdf5d9931ae34348f
diff --git a/src/bsp/lk/app/tests/float_print_host.c b/src/bsp/lk/app/tests/float_print_host.c
new file mode 100644
index 0000000..1176876
--- /dev/null
+++ b/src/bsp/lk/app/tests/float_print_host.c
@@ -0,0 +1,17 @@
+#include <stdio.h>
+
+#define countof(a) (sizeof(a) / sizeof((a)[0]))
+
+#include "float_test_vec.c"
+
+int main(void)
+{
+    printf("floating point printf tests\n");
+
+    for (size_t i = 0; i < float_test_vec_size; i++) {
+        PRINT_FLOAT;
+    }
+
+    return 0;
+}
+