62 lines
2.3 KiB
C++
Raw Normal View History

2013-10-10 20:01:51 -04:00
//****************************************************************************
2013-12-30 17:41:15 -05:00
// Model: dpp.qm
// File: ./main.cpp
2012-08-14 18:00:48 -04:00
//
2013-12-30 17:41:15 -05:00
// This code has been generated by QM tool (see state-machine.com/qm).
// DO NOT EDIT THIS FILE MANUALLY. All your changes will be lost.
2012-08-14 18:00:48 -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-12-30 17:41:15 -05:00
// by the Free Software Foundation.
2012-08-14 18:00:48 -04:00
//
2013-12-30 17:41:15 -05:00
// 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.
2013-10-10 20:01:51 -04:00
//****************************************************************************
2014-04-13 21:35:34 -04:00
//${.::main.cpp} .............................................................
2012-08-14 18:00:48 -04:00
#include "qp_port.h"
#include "dpp.h"
#include "bsp.h"
2013-12-30 17:41:15 -05:00
//............................................................................
int main() {
static QP::QEvt const *tableQueueSto[N_PHILO];
static QP::QEvt const *philoQueueSto[N_PHILO][N_PHILO];
static QP::QSubscrList subscrSto[DPP::MAX_PUB_SIG];
2012-08-14 18:00:48 -04:00
2013-12-30 17:41:15 -05:00
static QF_MPOOL_EL(DPP::TableEvt) smlPoolSto[2*N_PHILO];
2012-08-14 18:00:48 -04:00
2013-12-30 17:41:15 -05:00
QP::QF::init(); // initialize the framework and the underlying RT kernel
2012-08-14 18:00:48 -04:00
2013-12-30 17:41:15 -05:00
DPP::BSP_init(); // initialize the BSP
2012-08-14 18:00:48 -04:00
2013-12-30 17:41:15 -05:00
// object dictionaries...
QS_OBJ_DICTIONARY(smlPoolSto);
QS_OBJ_DICTIONARY(tableQueueSto);
QS_OBJ_DICTIONARY(philoQueueSto[0]);
QS_OBJ_DICTIONARY(philoQueueSto[1]);
QS_OBJ_DICTIONARY(philoQueueSto[2]);
QS_OBJ_DICTIONARY(philoQueueSto[3]);
QS_OBJ_DICTIONARY(philoQueueSto[4]);
2012-08-14 18:00:48 -04:00
2013-12-30 17:41:15 -05:00
QP::QF::psInit(subscrSto, Q_DIM(subscrSto)); // init publish-subscribe
2012-08-14 18:00:48 -04:00
2013-12-30 17:41:15 -05:00
// initialize event pools...
QP::QF::poolInit(smlPoolSto,
sizeof(smlPoolSto), sizeof(smlPoolSto[0]));
2012-08-14 18:00:48 -04:00
2013-12-30 17:41:15 -05:00
// start the active objects...
2012-08-14 18:00:48 -04:00
for (uint8_t n = 0U; n < N_PHILO; ++n) {
2013-12-30 17:41:15 -05:00
DPP::AO_Philo[n]->start((uint8_t)(n + 1U),
philoQueueSto[n], Q_DIM(philoQueueSto[n]),
2012-08-14 18:00:48 -04:00
(void *)0, 0U);
}
2013-12-30 17:41:15 -05:00
DPP::AO_Table->start((uint8_t)(N_PHILO + 1U),
tableQueueSto, Q_DIM(tableQueueSto),
2012-08-14 18:00:48 -04:00
(void *)0, 0U);
2013-12-30 17:41:15 -05:00
return QP::QF::run(); // run the QF application
2012-08-14 18:00:48 -04:00
}