mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-12 03:49:35 +08:00
28 lines
387 B
C
28 lines
387 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
*/
|
|
#include <rtthread.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef RT_USING_GMAC
|
|
#include <drv_gmac.h>
|
|
#endif
|
|
|
|
int main(void)
|
|
{
|
|
#ifdef RT_USING_GMAC
|
|
rt_app_gk_gmac_init();
|
|
#endif
|
|
|
|
printf("Hello\n");
|
|
|
|
return 0;
|
|
}
|