From 1e563e2b731d928942f43e1341c8c50b0faf1c01 Mon Sep 17 00:00:00 2001 From: guowenxue <guowenxue@gmail.com> Date: Fri, 31 May 2024 11:39:31 +0800 Subject: [PATCH] APPS:IGKBoard-IMX6ULL: Add test-apps source code: --- drivers/test-apps/hello.c | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/drivers/test-apps/hello.c b/drivers/test-apps/hello.c new file mode 100644 index 0000000..279e45c --- /dev/null +++ b/drivers/test-apps/hello.c @@ -0,0 +1,21 @@ +/********************************************************************************* + * Copyright: (C) 2021 LingYun IoT System Studio + * All rights reserved. + * + * Filename: hello.c + * Description: This file is hello world test program. + * + * Version: 1.0.0(2021-12-10) + * Author: Guo Wenxue <guowenxue@gmail.com> + * ChangeLog: 1, Release initial version on "2021-12-10 22:41:49" + * + ********************************************************************************/ + +#include <stdio.h> + +int main (int argc, char **argv) +{ + printf("Hello, LingYun IoT System Studio.\n"); + + return 0; +} -- Gitblit v1.9.1