2013-10-10 20:01:51 -04:00
|
|
|
//****************************************************************************
|
|
|
|
// Product: BSP for DPP-console example with Qt5
|
2017-05-17 13:15:09 -04:00
|
|
|
// Last Updated for Version: QP 5.9.0/Qt 5.x
|
|
|
|
// Last updated on 2017-05-09
|
2013-10-10 20:01:51 -04:00
|
|
|
//
|
|
|
|
// Q u a n t u m L e a P s
|
|
|
|
// ---------------------------
|
|
|
|
// innovating embedded systems
|
|
|
|
//
|
2015-09-29 11:34:38 -04:00
|
|
|
// Copyright (C) Quantum Leaps, LLC. All rights reserved.
|
2013-10-10 20:01:51 -04: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
|
2013-10-16 16:46:00 -04:00
|
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
2013-10-10 20:01:51 -04:00
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Alternatively, this program may be distributed and modified under the
|
|
|
|
// terms of Quantum Leaps commercial licenses, which expressly supersede
|
|
|
|
// 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/>.
|
|
|
|
//
|
|
|
|
// Contact information:
|
2017-05-17 13:15:09 -04:00
|
|
|
// https://state-machine.com
|
2015-09-29 11:34:38 -04:00
|
|
|
// mailto:info@state-machine.com
|
2013-10-10 20:01:51 -04:00
|
|
|
//****************************************************************************
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <QTime>
|
|
|
|
#include <QTextStream>
|
|
|
|
//-----------------
|
2015-09-29 11:34:38 -04:00
|
|
|
#include "qpcpp.h"
|
2013-10-10 20:01:51 -04:00
|
|
|
#include "bsp.h"
|
|
|
|
#include "bsp.h"
|
|
|
|
|
|
|
|
#ifdef Q_SPY
|
|
|
|
enum {
|
|
|
|
PHILO_STAT = QP::QS_USER
|
|
|
|
};
|
2014-04-21 21:48:04 -04:00
|
|
|
static uint8_t const l_time_tick = 0U; // for QS
|
2013-10-10 20:01:51 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
Q_DEFINE_THIS_FILE
|
|
|
|
|
|
|
|
//............................................................................
|
2014-04-21 21:48:04 -04:00
|
|
|
static uint32_t l_rnd; // random seed
|
2013-10-10 20:01:51 -04:00
|
|
|
//static QTextStream l_stdInStream(stdin, QIODevice::ReadOnly);
|
|
|
|
static QTextStream l_stdOutStream(stdout, QIODevice::WriteOnly);
|
|
|
|
|
|
|
|
//............................................................................
|
|
|
|
void BSP_init(void) {
|
|
|
|
Q_ALLEGE(QS_INIT((char *)0));
|
2014-04-21 21:48:04 -04:00
|
|
|
QS_RESET();
|
2013-10-10 20:01:51 -04:00
|
|
|
QS_OBJ_DICTIONARY(&l_time_tick);
|
|
|
|
QS_USR_DICTIONARY(PHILO_STAT);
|
|
|
|
|
2015-05-14 16:05:04 -04:00
|
|
|
l_stdOutStream << "DPP-Qt console example" << endl
|
2013-10-10 20:01:51 -04:00
|
|
|
<< "QP " << QP::QF::getVersion() << endl;
|
|
|
|
|
|
|
|
BSP_randomSeed(1234U);
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void BSP_terminate(int) {
|
|
|
|
qDebug("terminate");
|
2014-04-21 21:48:04 -04:00
|
|
|
QP::QF::stop(); // stop the QF::run() thread
|
2013-10-10 20:01:51 -04:00
|
|
|
qApp->quit(); // quit the Qt application *after* the QF::run() has stopped
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void BSP_displayPhilStat(uint8_t n, char_t const *stat) {
|
|
|
|
//qDebug("philo[%d] is %s", n, stat);
|
|
|
|
l_stdOutStream << "philo[" << n << "] is " << stat << endl;
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void BSP_displayPaused(uint8_t paused) {
|
|
|
|
if (paused != 0U) {
|
|
|
|
l_stdOutStream << "PAUSED" << endl;
|
|
|
|
//qDebug("PAUSED");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
l_stdOutStream << "SERVING" << endl;
|
|
|
|
//qDebug("SERVING");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//............................................................................
|
2014-04-21 21:48:04 -04:00
|
|
|
uint32_t BSP_random(void) { // a very cheap pseudo-random-number generator
|
2013-10-10 20:01:51 -04:00
|
|
|
// "Super-Duper" Linear Congruential Generator (LCG)
|
|
|
|
// LCG(2^32, 3*7*11*13*23, 0, seed)
|
2015-09-29 11:34:38 -04:00
|
|
|
//
|
2015-05-14 16:05:04 -04:00
|
|
|
l_rnd = l_rnd * (3U*7U*11U*13U*23U);
|
2013-10-10 20:01:51 -04:00
|
|
|
return l_rnd >> 8;
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void BSP_randomSeed(uint32_t seed) {
|
|
|
|
l_rnd = seed;
|
|
|
|
}
|
|
|
|
|
|
|
|
//****************************************************************************
|
2015-09-29 11:34:38 -04:00
|
|
|
void Q_onAssert(char_t const * const module, int loc) {
|
|
|
|
QS_ASSERTION(module, loc, 10000U); // send assertion info to the QS trace
|
|
|
|
qFatal("Assertion failed in module %s, location %d", module, loc);
|
2013-10-10 20:01:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
//****************************************************************************
|
|
|
|
namespace QP {
|
|
|
|
|
|
|
|
//............................................................................
|
|
|
|
void QF_onClockTick(void) {
|
|
|
|
QF::TICK_X(0U, &l_time_tick);
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void QP::QF::onStartup(void) {
|
|
|
|
QP::QF_setTickRate(BSP_TICKS_PER_SEC);
|
|
|
|
QS_OBJ_DICTIONARY(&l_time_tick);
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void QP::QF::onCleanup(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef Q_SPY
|
|
|
|
|
|
|
|
#include "qspy.h"
|
|
|
|
|
|
|
|
static QTime l_time;
|
|
|
|
|
|
|
|
//............................................................................
|
|
|
|
bool QS::onStartup(void const *) {
|
2014-04-21 21:48:04 -04:00
|
|
|
static uint8_t qsBuf[4*1024]; // 4K buffer for Quantum Spy
|
2013-10-10 20:01:51 -04:00
|
|
|
initBuf(qsBuf, sizeof(qsBuf));
|
|
|
|
|
|
|
|
QSPY_config(QP_VERSION, // version
|
|
|
|
QS_OBJ_PTR_SIZE, // objPtrSize
|
|
|
|
QS_FUN_PTR_SIZE, // funPtrSize
|
|
|
|
QS_TIME_SIZE, // tstampSize
|
|
|
|
Q_SIGNAL_SIZE, // sigSize,
|
|
|
|
QF_EVENT_SIZ_SIZE, // evtSize
|
|
|
|
QF_EQUEUE_CTR_SIZE, // queueCtrSize
|
|
|
|
QF_MPOOL_CTR_SIZE, // poolCtrSize
|
|
|
|
QF_MPOOL_SIZ_SIZE, // poolBlkSize
|
|
|
|
QF_TIMEEVT_CTR_SIZE,// tevtCtrSize
|
|
|
|
(void *)0, // matFile,
|
|
|
|
(void *)0,
|
2015-09-29 11:34:38 -04:00
|
|
|
(QSPY_CustParseFun)0); // no customized parser function
|
2013-10-10 20:01:51 -04:00
|
|
|
|
|
|
|
l_time.start(); // start the time stamp
|
|
|
|
|
2015-05-14 16:05:04 -04:00
|
|
|
// set up the QS filters...
|
|
|
|
QS_FILTER_ON(QS_QEP_STATE_ENTRY);
|
|
|
|
QS_FILTER_ON(QS_QEP_STATE_EXIT);
|
|
|
|
QS_FILTER_ON(QS_QEP_STATE_INIT);
|
|
|
|
QS_FILTER_ON(QS_QEP_INIT_TRAN);
|
|
|
|
QS_FILTER_ON(QS_QEP_INTERN_TRAN);
|
|
|
|
QS_FILTER_ON(QS_QEP_TRAN);
|
|
|
|
QS_FILTER_ON(QS_QEP_IGNORED);
|
|
|
|
QS_FILTER_ON(QS_QEP_DISPATCH);
|
|
|
|
QS_FILTER_ON(QS_QEP_UNHANDLED);
|
|
|
|
|
2015-09-29 11:34:38 -04:00
|
|
|
QS_FILTER_ON(QS_QF_ACTIVE_POST_FIFO);
|
|
|
|
QS_FILTER_ON(QS_QF_ACTIVE_POST_LIFO);
|
|
|
|
QS_FILTER_ON(QS_QF_PUBLISH);
|
2015-05-14 16:05:04 -04:00
|
|
|
|
2015-09-29 11:34:38 -04:00
|
|
|
QS_FILTER_ON(PHILO_STAT);
|
2013-10-10 20:01:51 -04:00
|
|
|
|
2014-04-21 21:48:04 -04:00
|
|
|
return true; // success
|
2013-10-10 20:01:51 -04:00
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void QS::onCleanup(void) {
|
|
|
|
QSPY_stop();
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
void QS::onFlush(void) {
|
|
|
|
uint16_t nBytes = 1024U;
|
|
|
|
uint8_t const *block;
|
|
|
|
while ((block = getBlock(&nBytes)) != (uint8_t *)0) {
|
|
|
|
QSPY_parse(block, nBytes);
|
|
|
|
nBytes = 1024U;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
QP::QSTimeCtr QS::onGetTime(void) {
|
|
|
|
return (QSTimeCtr)l_time.elapsed();
|
|
|
|
}
|
2015-09-29 11:34:38 -04:00
|
|
|
//............................................................................
|
|
|
|
//! callback function to reset the target (to be implemented in the BSP)
|
|
|
|
void QP::QS::onReset(void) {
|
|
|
|
//TBD
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
//! callback function to execute a uesr command (to be implemented in BSP)
|
2017-05-17 13:15:09 -04:00
|
|
|
void QS::onCommand(uint8_t cmdId, uint32_t param1,
|
|
|
|
uint32_t param2, uint32_t param3)
|
|
|
|
{
|
2015-09-29 11:34:38 -04:00
|
|
|
(void)cmdId;
|
2017-05-17 13:15:09 -04:00
|
|
|
(void)param1;
|
|
|
|
(void)param2;
|
|
|
|
(void)param3;
|
2015-09-29 11:34:38 -04:00
|
|
|
//TBD
|
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
|
|
|
|
//............................................................................
|
|
|
|
void QS_onEvent(void) {
|
|
|
|
uint16_t nBytes = 1024;
|
|
|
|
uint8_t const *block;
|
|
|
|
QF_CRIT_ENTRY(dummy);
|
|
|
|
if ((block = QS::getBlock(&nBytes)) != (uint8_t *)0) {
|
|
|
|
QF_CRIT_EXIT(dummy);
|
|
|
|
QSPY_parse(block, nBytes);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
QF_CRIT_EXIT(dummy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
extern "C" void QSPY_onPrintLn(void) {
|
|
|
|
qDebug(QSPY_line);
|
|
|
|
}
|
|
|
|
|
2014-04-21 21:48:04 -04:00
|
|
|
#endif // Q_SPY
|
2013-10-10 20:01:51 -04:00
|
|
|
|
2014-04-21 21:48:04 -04:00
|
|
|
} // namespace QP
|