|
- /*
- *********************************************************************************************************
- * uC/OS-II
- * The Real-Time Kernel
- *
- * Copyright 1992-2021 Silicon Laboratories Inc. www.silabs.com
- *
- * SPDX-License-Identifier: APACHE-2.0
- *
- * This software is subject to an open source license and is distributed by
- * Silicon Laboratories Inc. pursuant to the terms of the Apache License,
- * Version 2.0 available at www.apache.org/licenses/LICENSE-2.0.
- *
- *********************************************************************************************************
- */
-
-
- /*
- *********************************************************************************************************
- * Filename : ucos_ii.c
- * Version : V2.93.01
- *********************************************************************************************************
- */
-
- #define OS_GLOBALS /* Declare GLOBAL variables */
- #include <ucos_ii.h>
-
-
- #define OS_MASTER_FILE /* Prevent the following files from including includes.h */
- #include <os_core.c>
- #include <os_flag.c>
- #include <os_mbox.c>
- #include <os_mem.c>
- #include <os_mutex.c>
- #include <os_q.c>
- #include <os_sem.c>
- #include <os_task.c>
- #include <os_time.c>
- #include <os_tmr.c>
|