qpc/ports/lint-plus/qxk/qxk_port.h

105 lines
3.6 KiB
C
Raw Normal View History

2015-12-24 14:33:20 -05:00
/**
* @file
* @brief QXK/C port example for a generic C compiler.
* @ingroup qxk
* @cond
******************************************************************************
2020-07-18 17:56:40 -04:00
* Last updated for version 6.8.2
* Last updated on 2020-07-17
2015-12-24 14:33:20 -05:00
*
2019-12-31 15:55:08 -05:00
* Q u a n t u m L e a P s
* ------------------------
* Modern Embedded Software
2015-12-24 14:33:20 -05:00
*
2020-07-18 17:56:40 -04:00
* Copyright (C) 2005-2020 Quantum Leaps, LLC. All rights reserved.
2015-12-24 14:33:20 -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
* (at your option) any later version.
*
* Alternatively, this program may be distributed and modified under the
* terms of Quantum Leaps commercial licenses, which expressly supersede
* 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>.
2015-12-24 14:33:20 -05:00
*
* Contact information:
2019-12-31 15:55:08 -05:00
* <www.state-machine.com/licensing>
* <info@state-machine.com>
2015-12-24 14:33:20 -05:00
******************************************************************************
* @endcond
*/
2019-10-27 11:57:33 -04:00
#ifndef QXK_PORT_H
#define QXK_PORT_H
2015-12-24 14:33:20 -05:00
/****************************************************************************/
/*! determination if the code executes in the ISR context
* (used internally in QXK only)
2015-12-31 14:55:40 -05:00
*/
2020-07-18 17:56:40 -04:00
/*! determination if the code executes in the ISR context */
/**
* @note This is just an example of #QXK_ISR_CONTEXT_ (for ARM Cortex-M).
* 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 might
* test the interrupt nesting up-down counter (QXK_intNest_).
*/
2020-03-17 21:33:20 -04:00
#define QXK_ISR_CONTEXT_() (getSR() != 0U)
2015-12-24 14:33:20 -05:00
2018-02-18 12:11:16 -05:00
/*! activate the context-switch callback */
#define QXK_ON_CONTEXT_SW 1
2015-12-24 14:33:20 -05:00
/*! trigger context switch (used internally in QXK only) */
#define QXK_CONTEXT_SWITCH_() (trigSWI())
/* QXK interrupt entry and exit... */
/*! Define the ISR entry sequence, if the compiler supports writing
* interrupts in C.
*/
/**
* @note This is just an example of #QXK_ISR_ENTRY. You need to define
* the macro appropriately for the CPU/compiler you're using. Also, some
* QXK ports will not define this macro, but instead will provide ISR
* skeleton code in assembly.
*/
2020-03-17 21:33:20 -04:00
#define QXK_ISR_ENTRY() do { \
QF_INT_DISABLE(); \
++QXK_intNest_; \
2015-12-24 14:33:20 -05:00
QF_QS_ISR_ENTRY(QXK_intNest_, QXK_currPrio_); \
2020-03-17 21:33:20 -04:00
QF_INT_ENABLE(); \
2019-12-31 15:55:08 -05:00
} while (false)
2015-12-24 14:33:20 -05:00
/*! Define the ISR exit sequence, if the compiler supports writing
* interrupts in C. */
/**
* @note
* This is just an example of #QXK_ISR_EXIT. You need to define the macro
* appropriately for the CPU/compiler you're using. Also, some QXK ports will
* not define this macro, but instead will provide ISR skeleton in assembly.
*/
2020-03-17 21:33:20 -04:00
#define QXK_ISR_EXIT() do { \
QF_INT_DISABLE(); \
--QXK_intNest_; \
if (QXK_intNest_ == 0U) { \
QXK_sched_(); \
} \
QF_INT_ENABLE(); \
2019-12-31 15:55:08 -05:00
} while (false)
2015-12-24 14:33:20 -05:00
uint32_t getSR(void);
void trigSWI(void);
2020-07-18 17:56:40 -04:00
#include "qxk.h" /* QXK platform-independent public interface */
2019-10-27 11:57:33 -04:00
#endif /* QXK_PORT_H */
2015-12-24 14:33:20 -05:00