mirror of https://github.com/ARMmbed/mbed-os.git
14 lines
233 B
C++
14 lines
233 B
C++
|
#include "test_env.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
MBED_HOSTTEST_TIMEOUT(5);
|
||
|
MBED_HOSTTEST_SELECT(hello_auto);
|
||
|
MBED_HOSTTEST_DESCRIPTION(Hello World);
|
||
|
MBED_HOSTTEST_START("MBED_10");
|
||
|
|
||
|
printf("Hello World\r\n");
|
||
|
|
||
|
while(1);
|
||
|
}
|