Outputs the full board target string (including qualifiers) when using a hwmv2 board Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
15 lines
204 B
C
15 lines
204 B
C
/*
|
|
* Copyright (c) 2012-2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("Hello World! %s\n", CONFIG_BOARD_TARGET);
|
|
|
|
return 0;
|
|
}
|