93 lines
3.7 KiB
C++
Raw Normal View History

//////////////////////////////////////////////////////////////////////////////
2016-04-01 13:55:34 -04:00
// Product: DPP example for ThreadX
// Last updated for version 5.6.2
// Last updated on 2016-03-10
//
// Q u a n t u m L e a P s
// ---------------------------
// innovating embedded systems
//
2016-04-01 13:55:34 -04:00
// Copyright (C) Quantum Leaps, LLC. All rights reserved.
//
// 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
// by the Free Software Foundation, either version 3 of the License, or
// (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
2016-04-01 13:55:34 -04:00
// mailto:info@state-machine.com
//////////////////////////////////////////////////////////////////////////////
#include "qp_port.h"
#include "dpp.h"
#include "bsp.h"
2018-01-10 18:26:05 -05:00
// Local-scope objects -------------------------------------------------------
static QP::QEvt const *l_tableQueueSto[N_PHILO];
static QP::QEvt const *l_philoQueueSto[N_PHILO][N_PHILO];
static QP::QSubscrList l_subscrSto[DPP::MAX_PUB_SIG];
static union SmallEvents {
void *e0; // minimum event size
uint8_t e1[sizeof(DPP::TableEvt)];
// ... other event types to go into this pool
} l_smlPoolSto[2*N_PHILO + 10]; // storage for the small event pool
static ULONG l_philoStk[N_PHILO][256]; // stacks for the Philosophers
static ULONG l_tableStk[256]; // stack for the Table
//............................................................................
2016-04-01 13:55:34 -04:00
int main() {
2018-01-10 18:26:05 -05:00
DPP::BSP::init(); // initialize the Board Support Package
2016-04-01 13:55:34 -04:00
tx_kernel_enter(); // transfet control to the ThreadX RTOS
2018-01-10 18:26:05 -05:00
return 0; // tx_kernel_enter() does not return
}
//............................................................................
2018-01-10 18:26:05 -05:00
void tx_application_define(void * /*first_unused_memory*/) {
2015-05-14 16:05:04 -04:00
// initialize the framework and the underlying RT kernel...
QP::QF::init();
2015-05-14 16:05:04 -04:00
// init publish-subscribe
2018-01-10 18:26:05 -05:00
QP::QF::psInit(l_subscrSto, Q_DIM(l_subscrSto));
// initialize event pools...
2018-01-10 18:26:05 -05:00
QP::QF::poolInit(l_smlPoolSto, sizeof(l_smlPoolSto),
sizeof(l_smlPoolSto[0]));
2018-01-10 18:26:05 -05:00
QS_OBJ_DICTIONARY(l_smlPoolSto);
QS_OBJ_DICTIONARY(l_tableQueueSto);
QS_OBJ_DICTIONARY(l_philoQueueSto[0]);
//NOTE: can't use more active objects in the ThreadX demo!
//QS_OBJ_DICTIONARY(l_philoQueueSto[1]);
//QS_OBJ_DICTIONARY(l_philoQueueSto[2]);
//QS_OBJ_DICTIONARY(l_philoQueueSto[3]);
//QS_OBJ_DICTIONARY(l_philoQueueSto[4]);
2015-05-14 16:05:04 -04:00
// start the active objects...
for (uint8_t n = 0; n < N_PHILO; ++n) {
DPP::AO_Philo[n]->start(
static_cast<uint_fast8_t>(n + 1),
2018-01-10 18:26:05 -05:00
l_philoQueueSto[n], Q_DIM(l_philoQueueSto[n]),
l_philoStk[n], sizeof(l_philoStk[n]));
}
2015-05-14 16:05:04 -04:00
DPP::AO_Table->start(
static_cast<uint_fast8_t>(N_PHILO + 1),
2018-01-10 18:26:05 -05:00
l_tableQueueSto, Q_DIM(l_tableQueueSto),
l_tableStk, sizeof(l_tableStk));
(void)QP::QF::run(); // run the QF application
}