qpc/ports/lint/qk/qk_port.h

96 lines
3.0 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
******************************************************************************
2018-02-18 12:11:16 -05:00
* Last updated for version 6.1.1
* Last updated on 2018-02-15
2012-08-14 18:07:04 -04:00
*
* Q u a n t u m L e a P s
* ---------------------------
* innovating embedded systems
*
2015-12-24 14:33:20 -05:00
* Copyright (C) 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2012-08-14 18:07:04 -04:00
*
* Contact information:
2018-02-18 12:11:16 -05:00
* https://www.state-machine.com
2015-12-24 14:33:20 -05:00
* mailto: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 */
#define QK_ISR_CONTEXT_() (get_IPSR() != (uint32_t)0)
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(); \
2012-08-14 18:07:04 -04:00
} while (0)
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
*/
#define QK_ISR_EXIT() do { \
2015-12-24 14:33:20 -05:00
QF_INT_DISABLE(); \
2012-08-14 18:07:04 -04:00
--QK_intNest_; \
2015-04-28 13:45:35 -04:00
if (QK_intNest_ == (uint_fast8_t)0) { \
2016-09-29 18:08:33 -04:00
if (QK_sched_() != (uint_fast8_t)0) { \
QK_activate_(); \
2015-12-24 14:33:20 -05:00
} \
2012-08-14 18:07:04 -04:00
} \
2015-12-24 14:33:20 -05:00
QF_INT_ENABLE(); \
2012-08-14 18:07:04 -04:00
} while (0)
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