Adds a sample application that can be used for trying out llext with the shell. The docs cover how to load a hello world ELF on to the device, assuming its an arm v7 architecture. Signed-off-by: Tom Burdick <thomas.burdick@intel.com>
16 lines
223 B
C
16 lines
223 B
C
/*
|
|
* Copyright (c) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
#define LOG_LEVEL CONFIG_LOG_DEFAULT_LEVEL
|
|
#include <zephyr/logging/log.h>
|
|
LOG_MODULE_REGISTER(app);
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|