/* * Copyright (c) 2023 HPMicro * * SPDX-License-Identifier: BSD-3-Clause * */ #ifndef _TASK_H_ #define _TASK_H_ #include "start_task.h" #include "stdint.h" extern int8_t share_data[20]; extern OS_SEM sem_share_data; #endif