1 /* 2 * File : application.c 3 * This file is part of RT-Thread RTOS 4 * COPYRIGHT (C) 2015, RT-Thread Development Team 5 * 6 * The license and distribution terms for this file may be 7 * found in the file LICENSE in this distribution or at 8 * http://www.rt-thread.org/license/LICENSE 9 * 10 * Change Logs: 11 * Date Author Notes 12 * 2015-03-01 Yangfs the first version 13 * 2015-03-27 Bernard code cleanup. 14 */ 15 16 /** 17 * @addtogroup NRF52832 18 */ 19 /*@{*/ 20 21 #include <rtthread.h> 22 main(void)23int main(void) 24 { 25 rt_kprintf("hello world \r\n"); 26 27 } 28 29 /*@}*/ 30