mirror of
https://github.com/ARMmbed/DAPLink.git
synced 2025-07-16 15:07:29 +08:00
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
/**
|
|
* @file rt_System.h
|
|
* @brief
|
|
*
|
|
* DAPLink Interface Firmware
|
|
* Copyright (c) 2009-2016, ARM Limited, All Rights Reserved
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/* Variables */
|
|
#define os_psq ((P_PSQ)&os_fifo)
|
|
extern int os_tick_irqn;
|
|
|
|
/* Functions */
|
|
extern U32 rt_suspend (void);
|
|
extern void rt_resume (U32 sleep_time);
|
|
extern void rt_tsk_lock (void);
|
|
extern void rt_tsk_unlock (void);
|
|
extern void rt_psh_req (void);
|
|
extern void rt_pop_req (void);
|
|
extern void rt_systick (void);
|
|
extern void rt_stk_check (void);
|
|
|
|
/*----------------------------------------------------------------------------
|
|
* end of file
|
|
*---------------------------------------------------------------------------*/
|
|
|