qpc/ports/lint-plus/qk/qk_port.h

95 lines
3.1 KiB
C
Raw Normal View History

2014-04-06 11:43:13 -04:00
/**
2015-04-28 13:45:35 -04:00
* @file
* @brief QK/C port example for a generic C compiler.
* @ingroup qk
* @cond
2014-04-06 11:43:13 -04:00
******************************************************************************
2019-12-31 15:55:08 -05:00
* Last updated for version 6.7.0
* Last updated on 2019-12-18
2012-08-14 18:07:04 -04:00
*
2019-12-31 15:55:08 -05:00
* Q u a n t u m L e a P s
* ------------------------
* Modern Embedded Software
2012-08-14 18:07:04 -04:00
*
2019-12-31 15:55:08 -05:00
* Copyright (C) 2005-2019 Quantum Leaps, LLC. All rights reserved.
2012-08-14 18:07:04 -04:00
*
2013-02-12 10:04:39 -05:00
* This program is open source software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
2013-02-12 10:04:39 -05:00
* (at your option) any later version.
2012-08-14 18:07:04 -04:00
*
2013-02-12 10:04:39 -05:00
* Alternatively, this program may be distributed and modified under the
2012-08-14 18:07:04 -04:00
* terms of Quantum Leaps commercial licenses, which expressly supersede
2013-02-12 10:04:39 -05:00
* the GNU General Public License and are specifically designed for
* licensees interested in retaining the proprietary status of their code.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-12-31 15:55:08 -05:00
* along with this program. If not, see <www.gnu.org/licenses>.
2012-08-14 18:07:04 -04:00
*
* Contact information:
2019-12-31 15:55:08 -05:00
* <www.state-machine.com/licensing>
* <info@state-machine.com>
2014-04-06 11:43:13 -04:00
******************************************************************************
2015-04-28 13:45:35 -04:00
* @endcond
2014-04-06 11:43:13 -04:00
*/
2019-10-27 11:57:33 -04:00
#ifndef QK_PORT_H
#define QK_PORT_H
2012-08-14 18:07:04 -04:00
/****************************************************************************/
2018-02-18 12:11:16 -05:00
/*! enable the context-switch callback */
#define QK_ON_CONTEXT_SW 1
2015-12-24 14:33:20 -05:00
/*! determination if the code executes in the ISR context */
2020-03-17 21:33:20 -04:00
#define QK_ISR_CONTEXT_() (get_IPSR() != 0U)
2012-08-14 18:07:04 -04:00
2015-12-24 14:33:20 -05:00
/* QK interrupt entry and exit... */
2014-04-06 11:43:13 -04:00
/*! Define the ISR entry sequence, if the compiler supports writing
2012-08-14 18:07:04 -04:00
* interrupts in C.
2014-04-06 11:43:13 -04:00
*/
/**
2015-04-28 13:45:35 -04:00
* @note This is just an example of #QK_ISR_ENTRY. You need to define
2012-08-14 18:07:04 -04:00
* the macro appropriately for the CPU/compiler you're using. Also, some
* QK ports will not define this macro, but instead will provide ISR
* skeleton code in assembly.
*/
#define QK_ISR_ENTRY() do { \
2015-12-24 14:33:20 -05:00
QF_INT_DISABLE(); \
2012-08-14 18:07:04 -04:00
++QK_intNest_; \
QF_QS_ISR_ENTRY(QK_intNest_, QK_currPrio_); \
2015-12-24 14:33:20 -05:00
QF_INT_ENABLE(); \
2019-12-31 15:55:08 -05:00
} while (false)
2012-08-14 18:07:04 -04:00
2014-04-06 11:43:13 -04:00
/*! Define the ISR exit sequence, if the compiler supports writing
2012-08-14 18:07:04 -04:00
* interrupts in C.
2014-04-06 11:43:13 -04:00
*/
/**
2015-04-28 13:45:35 -04:00
* @note
2014-04-06 11:43:13 -04:00
* This is just an example of #QK_ISR_EXIT. You need to define the macro
* appropriately for the CPU/compiler you're using. Also, some QK ports will
* not define this macro, but instead will provide ISR skeleton in assembly.
2012-08-14 18:07:04 -04:00
*/
2020-03-17 21:33:20 -04:00
#define QK_ISR_EXIT() do { \
QF_INT_DISABLE(); \
--QK_intNest_; \
if (QK_intNest_ == 0U) { \
if (QK_sched_() != 0U) { \
QK_activate_(); \
} \
} \
QF_INT_ENABLE(); \
2019-12-31 15:55:08 -05:00
} while (false)
2016-03-30 18:50:33 -04:00
2014-04-06 11:43:13 -04:00
#include "qk.h" /* QK platform-independent public interface */
2012-08-14 18:07:04 -04:00
2015-12-24 14:33:20 -05:00
uint32_t get_IPSR(void);
2019-10-27 11:57:33 -04:00
#endif /* QK_PORT_H */
2012-08-14 18:07:04 -04:00