The assertion qpccodec:1184 indicates that you attempt to generate state machine code from a class that is not subclass of QHsm or QMsm. Most likely you have a subclass of QFsm, which is no longer supported (it has been dropped in QP 5.4.0 over one and a half years ago).
RECOMMENDATION: To fix this problem, replace the QFsm superclass with either QHsm or QMsm. Also, please don't forget to change the constructor from QFsm_ctor() to QHsm_ctor() or QMsm_ctor(), respectively.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The assertion qpccodec:1184 indicates that you attempt to generate state machine code from a class that is not subclass of
QHsmorQMsm. Most likely you have a subclass ofQFsm, which is no longer supported (it has been dropped in QP 5.4.0 over one and a half years ago).RECOMMENDATION: To fix this problem, replace the
QFsmsuperclass with eitherQHsmorQMsm. Also, please don't forget to change the constructor fromQFsm_ctor()toQHsm_ctor()orQMsm_ctor(), respectively.This issue is closed as caused by the use of outdated QP base classes.
--MMS