kopia lustrzana https://github.com/OpenRTX/OpenRTX
37 wiersze
1.2 KiB
C
37 wiersze
1.2 KiB
C
/*
|
|
*********************************************************************************************************
|
|
* uC/OS-III
|
|
* The Real-Time Kernel
|
|
*
|
|
* Copyright 2009-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.
|
|
*
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
*
|
|
* CONFIGURATION FILE
|
|
*
|
|
* Filename : os_cfg.h
|
|
* Version : V3.08.00
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
#ifndef OS_CFG_H
|
|
#define OS_CFG_H
|
|
|
|
#ifdef __arm__
|
|
#include "os_cfg_arm.h"
|
|
#else
|
|
#include "os_cfg_x64.h"
|
|
#endif
|
|
|
|
#endif
|