1 /*
2 * Copyright (c) 2022 Grant Ramsay <grant.ramsay@hotmail.com>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
main(void)7 int main(void)
8 {
9 /* NET_CONFIG_SETTINGS will init DHCP
10 * NET_SHELL is enabled to test ping, DNS etc
11 */
12 return 0;
13 }
14