QP/C++ 6.9.3
qv_port.hpp File Reference

QV/C++ port to Lint, Generic C++ compiler. More...

#include "qv.hpp"
Include dependency graph for qv_port.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define QV_CPU_SLEEP()
 Macro to put the CPU to sleep safely in the cooperative. More...
 

Detailed Description

QV/C++ port to Lint, Generic C++ compiler.

Note
This is just an EXAMPLE of a QV port used for "linting" the QV.

Definition in file qv_port.hpp.

Macro Definition Documentation

◆ QV_CPU_SLEEP

#define QV_CPU_SLEEP ( )
Value:
do { \
__disable_interrupt(); \
QF_INT_ENABLE(); \
__WFI(); \
__enable_interrupt(); \
} while (false)

Macro to put the CPU to sleep safely in the cooperative.

Description
This macro is provided in some QP ports for the QV kernel and in general it depends on the interrupt disabling policy.
Note
The provided code is just an example (for ARM Cortex-M).

Definition at line 52 of file qv_port.hpp.