QP/C++ 6.9.3
qv_port.hpp
Go to the documentation of this file.
1 
39 #ifndef QV_PORT_HPP
40 #define QV_PORT_HPP
41 
43 // QV kernel (inside QV::onIdle()).
44 //
52 #define QV_CPU_SLEEP() do { \
53  __disable_interrupt(); \
54  QF_INT_ENABLE(); \
55  __WFI(); \
56  __enable_interrupt(); \
57 } while (false)
58 
59 #include "qv.hpp" // QK platform-independent public interface
60 
61 #endif // QV_PORT_HPP
62 
QV/C++ platform-independent public interface.