@@ -199,7 +199,7 @@ enum QStateRet {
199199 // unhandled and need to "bubble up"
200200 Q_RET_SUPER , //!< event passed to superstate to handle
201201 Q_RET_SUPER_SUB , //!< event passed to submachine superstate
202- Q_RET_UNHANDLED , //!< event unhandled due to a guard
202+ Q_RET_UNHANDLED , //!< event unhandled due to guard
203203
204204 // handled and do not need to "bubble up"
205205 Q_RET_HANDLED , //!< event handled (internal transition)
@@ -417,13 +417,8 @@ bool QMsm_isIn_(
417417 QAsm * const me ,
418418 QStateHandler const state );
419419
420- //! @private @memberof QMsm
421- //! @deprecated instead use: QASM_IS_IN()
422- bool QMsm_isInState (QMsm const * const me ,
423- QMState const * const stateObj );
424-
425420//! @public @memberof QMsm
426- static inline QMState const * QMsm_stateObj (QMsm * const me ) {
421+ static inline QMState const * QMsm_stateObj (QMsm const * const me ) {
427422 return me -> super .state .obj ;
428423}
429424
@@ -861,10 +856,8 @@ void QActive_setAttr(QActive * const me,
861856 uint32_t attr1 ,
862857 void const * attr2 );
863858
864- // private:
865-
866- //! @private @memberof QActive
867- void QActive_start_ (QActive * const me ,
859+ //! @public @memberof QActive
860+ void QActive_start (QActive * const me ,
868861 QPrioSpec const prioSpec ,
869862 QEvt const * * const qSto ,
870863 uint_fast16_t const qLen ,
@@ -1197,11 +1190,6 @@ void QF_gcFromISR(QEvt const * const e);
11971190 (evtRef_) = (void *)0; \
11981191} while (false)
11991192
1200- //${QF-macros::QACTIVE_START} ................................................
1201- #define QACTIVE_START (me_ , prioSpec_ , qSto_ , qLen_ , stkSto_ , stkSize_ , par_ ) \
1202- (QActive_start_((QActive *)(me_), (prioSpec_), \
1203- (qSto_), (qLen_), (stkSto_), (stkSize_), (par_)))
1204-
12051193//${QF-macros::QACTIVE_POST} .................................................
12061194#ifdef Q_SPY
12071195#define QACTIVE_POST (me_ , e_ , sender_ ) \
0 commit comments