| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * Copyright (c) 2021, Meco Jianting Man <jiantingman@foxmail.com>
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2020-09-17 Meco Man first version
- */
- /*
- *********************************************************************************************************
- * uC/OS-II
- * The Real-Time Kernel
- *
- * Copyright 1992-2020 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 : os.h
- * Version : V2.93.00
- *********************************************************************************************************
- * Note : This file is included in the uC/OS-II for compatibility with uC/OS-III and should not be used
- * in normal circumstances.
- *********************************************************************************************************
- */
- #ifndef OS_H
- #define OS_H
- #include "ucos_ii.h"
- typedef INT8U OS_ERR;
- #endif
|