You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
361 B
21 lines
361 B
/* |
|
* Copyright (c) 2025 Croxel Inc. |
|
* Copyright (c) 2025 CogniPilot Foundation |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <platform/argus_print.h> |
|
#include <api/argus_status.h> |
|
#include <zephyr/kernel.h> |
|
|
|
status_t print(const char *fmt_s, ...) |
|
{ |
|
va_list args; |
|
|
|
va_start(args, fmt_s); |
|
vprintk(fmt_s, args); |
|
va_end(args); |
|
|
|
return STATUS_OK; |
|
}
|
|
|