Skip to content

Commit 16ea07c

Browse files
committed
7.4.0
1 parent 0b1e9e4 commit 16ea07c

File tree

155 files changed

+3642
-3016
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+3642
-3016
lines changed

arm-cm/blinky_ek-tm4c123gxl/qk/bsp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ void BSP_start(void) {
156156

157157
static QEvt const *blinkyQueueSto[10];
158158
Blinky_ctor();
159-
QACTIVE_START(AO_Blinky,
159+
QActive_start(AO_Blinky,
160160
1U, // QP prio. of the AO
161161
blinkyQueueSto, // event queue storage
162162
Q_DIM(blinkyQueueSto), // queue length [events]

arm-cm/blinky_ek-tm4c123gxl/qv/bsp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ void BSP_start(void) {
153153

154154
static QEvt const *blinkyQueueSto[10];
155155
Blinky_ctor();
156-
QACTIVE_START(AO_Blinky,
156+
QActive_start(AO_Blinky,
157157
1U, // QP prio. of the AO
158158
blinkyQueueSto, // event queue storage
159159
Q_DIM(blinkyQueueSto), // queue length [events]

arm-cm/blinky_nucleo-c031c6/qk/bsp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void BSP_start(void) {
140140

141141
static QEvt const *blinkyQueueSto[10];
142142
Blinky_ctor();
143-
QACTIVE_START(AO_Blinky,
143+
QActive_start(AO_Blinky,
144144
1U, // QP prio. of the AO
145145
blinkyQueueSto, // event queue storage
146146
Q_DIM(blinkyQueueSto), // queue length [events]

arm-cm/blinky_nucleo-c031c6/qv/bsp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void BSP_start(void) {
137137

138138
static QEvt const *blinkyQueueSto[10];
139139
Blinky_ctor();
140-
QACTIVE_START(AO_Blinky,
140+
QActive_start(AO_Blinky,
141141
1U, // QP prio. of the AO
142142
blinkyQueueSto, // event queue storage
143143
Q_DIM(blinkyQueueSto), // queue length [events]

arm-cm/dpp_efm32-slstk3401a/qk/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ void BSP_start(void) {
266266
static QEvt const *philoQueueSto[N_PHILO][10];
267267
for (uint8_t n = 0U; n < N_PHILO; ++n) {
268268
Philo_ctor(n);
269-
QACTIVE_START(AO_Philo[n],
269+
QActive_start(AO_Philo[n],
270270

271271
// NOTE: set the preemption-threshold of all Philos to
272272
// the same level, so that they cannot preempt each other.
@@ -280,7 +280,7 @@ void BSP_start(void) {
280280

281281
static QEvt const *tableQueueSto[N_PHILO];
282282
Table_ctor();
283-
QACTIVE_START(AO_Table,
283+
QActive_start(AO_Table,
284284
N_PHILO + 7U, // QP prio. of the AO
285285
tableQueueSto, // event queue storage
286286
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_efm32-slstk3401a/qv/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ void BSP_start(void) {
262262
static QEvt const *philoQueueSto[N_PHILO][10];
263263
for (uint8_t n = 0U; n < N_PHILO; ++n) {
264264
Philo_ctor(n);
265-
QACTIVE_START(AO_Philo[n],
265+
QActive_start(AO_Philo[n],
266266
n + 3U, // QF-prio.
267267
philoQueueSto[n], // event queue storage
268268
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -272,7 +272,7 @@ void BSP_start(void) {
272272

273273
static QEvt const *tableQueueSto[N_PHILO];
274274
Table_ctor();
275-
QACTIVE_START(AO_Table,
275+
QActive_start(AO_Table,
276276
N_PHILO + 7U, // QP prio. of the AO
277277
tableQueueSto, // event queue storage
278278
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_efm32-slstk3401a/qxk/bsp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ void BSP_start(void) {
265265
static QEvt const *xThread1QueueSto[5];
266266
static uint64_t xThread1StackSto[64];
267267
XThread1_ctor();
268-
QXTHREAD_START(TH_XThread1,
268+
QXThread_start(TH_XThread1,
269269
1U, // QP priority of the thread
270270
xThread1QueueSto, // event queue storage
271271
Q_DIM(xThread1QueueSto), // event length [events]
@@ -276,7 +276,7 @@ void BSP_start(void) {
276276
static QEvt const *philoQueueSto[N_PHILO][10];
277277
for (uint8_t n = 0U; n < N_PHILO; ++n) {
278278
Philo_ctor(n);
279-
QACTIVE_START(AO_Philo[n],
279+
QActive_start(AO_Philo[n],
280280
n + 3U, // QF-prio.
281281
philoQueueSto[n], // event queue storage
282282
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -287,7 +287,7 @@ void BSP_start(void) {
287287
static QEvt const *xThread2QueueSto[5];
288288
static uint64_t xThread2StackSto[64];
289289
XThread2_ctor();
290-
QXTHREAD_START(TH_XThread2,
290+
QXThread_start(TH_XThread2,
291291
N_PHILO + 5U, // QP priority of the thread
292292
xThread2QueueSto, // event queue storage
293293
Q_DIM(xThread2QueueSto), // event length [events]
@@ -297,7 +297,7 @@ void BSP_start(void) {
297297

298298
static QEvt const *tableQueueSto[N_PHILO];
299299
Table_ctor();
300-
QACTIVE_START(AO_Table,
300+
QActive_start(AO_Table,
301301
N_PHILO + 7U, // QP prio. of the AO
302302
tableQueueSto, // event queue storage
303303
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_ek-tm4c123gxl/qk/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ void BSP_start(void) {
270270
static QEvt const *philoQueueSto[N_PHILO][10];
271271
for (uint8_t n = 0U; n < N_PHILO; ++n) {
272272
Philo_ctor(n);
273-
QACTIVE_START(AO_Philo[n],
273+
QActive_start(AO_Philo[n],
274274

275275
// NOTE: set the preemption-threshold of all Philos to
276276
// the same level, so that they cannot preempt each other.
@@ -284,7 +284,7 @@ void BSP_start(void) {
284284

285285
static QEvt const *tableQueueSto[N_PHILO];
286286
Table_ctor();
287-
QACTIVE_START(AO_Table,
287+
QActive_start(AO_Table,
288288
N_PHILO + 7U, // QP prio. of the AO
289289
tableQueueSto, // event queue storage
290290
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_ek-tm4c123gxl/qube/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void BSP_start(void) {
3636
static QEvt const *philoQueueSto[N_PHILO][10];
3737
for (uint8_t n = 0U; n < N_PHILO; ++n) {
3838
Philo_ctor(n);
39-
QACTIVE_START(AO_Philo[n],
39+
QActive_start(AO_Philo[n],
4040

4141
// NOTE: set the preemption-threshold of all Philos to
4242
// the same level, so that they cannot preempt each other.
@@ -50,7 +50,7 @@ void BSP_start(void) {
5050

5151
static QEvt const *tableQueueSto[N_PHILO];
5252
Table_ctor();
53-
QACTIVE_START(AO_Table,
53+
QActive_start(AO_Table,
5454
N_PHILO + 7U, // QP prio. of the AO
5555
tableQueueSto, // event queue storage
5656
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_ek-tm4c123gxl/qv/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ void BSP_start(void) {
265265
static QEvt const *philoQueueSto[N_PHILO][10];
266266
for (uint8_t n = 0U; n < N_PHILO; ++n) {
267267
Philo_ctor(n);
268-
QACTIVE_START(AO_Philo[n],
268+
QActive_start(AO_Philo[n],
269269
n + 3U, // QF-prio.
270270
philoQueueSto[n], // event queue storage
271271
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -275,7 +275,7 @@ void BSP_start(void) {
275275

276276
static QEvt const *tableQueueSto[N_PHILO];
277277
Table_ctor();
278-
QACTIVE_START(AO_Table,
278+
QActive_start(AO_Table,
279279
N_PHILO + 7U, // QP prio. of the AO
280280
tableQueueSto, // event queue storage
281281
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_ek-tm4c123gxl/qxk/bsp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ void BSP_start(void) {
269269
static QEvt const *xThread1QueueSto[5];
270270
static uint64_t xThread1StackSto[64];
271271
XThread1_ctor();
272-
QXTHREAD_START(TH_XThread1,
272+
QXThread_start(TH_XThread1,
273273
1U, // QP priority of the thread
274274
xThread1QueueSto, // event queue storage
275275
Q_DIM(xThread1QueueSto), // event length [events]
@@ -280,7 +280,7 @@ void BSP_start(void) {
280280
static QEvt const *philoQueueSto[N_PHILO][10];
281281
for (uint8_t n = 0U; n < N_PHILO; ++n) {
282282
Philo_ctor(n);
283-
QACTIVE_START(AO_Philo[n],
283+
QActive_start(AO_Philo[n],
284284
n + 3U, // QF-prio.
285285
philoQueueSto[n], // event queue storage
286286
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -291,7 +291,7 @@ void BSP_start(void) {
291291
static QEvt const *xThread2QueueSto[5];
292292
static uint64_t xThread2StackSto[64];
293293
XThread2_ctor();
294-
QXTHREAD_START(TH_XThread2,
294+
QXThread_start(TH_XThread2,
295295
N_PHILO + 5U, // QP priority of the thread
296296
xThread2QueueSto, // event queue storage
297297
Q_DIM(xThread2QueueSto), // event length [events]
@@ -301,7 +301,7 @@ void BSP_start(void) {
301301

302302
static QEvt const *tableQueueSto[N_PHILO];
303303
Table_ctor();
304-
QACTIVE_START(AO_Table,
304+
QActive_start(AO_Table,
305305
N_PHILO + 7U, // QP prio. of the AO
306306
tableQueueSto, // event queue storage
307307
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_ek-tm4c123gxl_mpu/qk/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ void BSP_start(void) {
636636
#else
637637
Philo_ctor(n, Philo_sto[n], sizeof(Philo_sto[n]), (void *)0);
638638
#endif
639-
QACTIVE_START(AO_Philo[n],
639+
QActive_start(AO_Philo[n],
640640

641641
// NOTE: set the preemption-threshold of all Philos to
642642
// the same level, so that they cannot preempt each other.
@@ -654,7 +654,7 @@ void BSP_start(void) {
654654
#else
655655
Table_ctor(Table_sto, sizeof(Table_sto), (void *)0);
656656
#endif
657-
QACTIVE_START(AO_Table,
657+
QActive_start(AO_Table,
658658
N_PHILO + 7U, // QP prio. of the AO
659659
tableQueueSto, // event queue storage
660660
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_ek-tm4c123gxl_mpu/qv/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ void BSP_start(void) {
632632
#else
633633
Philo_ctor(n, Philo_sto[n], sizeof(Philo_sto[n]), (void *)0);
634634
#endif
635-
QACTIVE_START(AO_Philo[n],
635+
QActive_start(AO_Philo[n],
636636
n + 3U, // QF-prio/pthre. see NOTE1
637637
philoQueueSto[n], // event queue storage
638638
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -646,7 +646,7 @@ void BSP_start(void) {
646646
#else
647647
Table_ctor(Table_sto, sizeof(Table_sto), (void *)0);
648648
#endif
649-
QACTIVE_START(AO_Table,
649+
QActive_start(AO_Table,
650650
N_PHILO + 7U, // QP prio. of the AO
651651
tableQueueSto, // event queue storage
652652
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_ek-tm4c123gxl_mpu/qxk/bsp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ void BSP_start(void) {
708708
XThread1_ctor(XThread1_inst,
709709
sizeof(XThread1_sto) - XTHREAD1_STACK_SIZE, (void *)0);
710710
#endif
711-
QXTHREAD_START(TH_XThread1,
711+
QXThread_start(TH_XThread1,
712712
1U, // QP priority of the thread
713713
xThread1QueueSto, // event queue storage
714714
Q_DIM(xThread1QueueSto), // event length [events]
@@ -723,7 +723,7 @@ void BSP_start(void) {
723723
#else
724724
Philo_ctor(n, Philo_sto[n], sizeof(Philo_sto[n]), (void *)0);
725725
#endif
726-
QACTIVE_START(AO_Philo[n],
726+
QActive_start(AO_Philo[n],
727727
n + 3U, // QF-prio/pthre. see NOTE1
728728
philoQueueSto[n], // event queue storage
729729
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -739,7 +739,7 @@ void BSP_start(void) {
739739
XThread2_ctor(XThread2_inst,
740740
sizeof(XThread2_sto) - XTHREAD2_STACK_SIZE, (void *)0);
741741
#endif
742-
QXTHREAD_START(TH_XThread2,
742+
QXThread_start(TH_XThread2,
743743
N_PHILO + 5U, // QP priority of the thread
744744
xThread2QueueSto, // event queue storage
745745
Q_DIM(xThread2QueueSto), // event length [events]
@@ -753,7 +753,7 @@ void BSP_start(void) {
753753
#else
754754
Table_ctor(Table_sto, sizeof(Table_sto), (void *)0);
755755
#endif
756-
QACTIVE_START(AO_Table,
756+
QActive_start(AO_Table,
757757
N_PHILO + 7U, // QP prio. of the AO
758758
tableQueueSto, // event queue storage
759759
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_mbed-lpc1768/qk/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ void BSP_start(void) {
247247
static QEvt const *philoQueueSto[N_PHILO][10];
248248
for (uint8_t n = 0U; n < N_PHILO; ++n) {
249249
Philo_ctor(n);
250-
QACTIVE_START(AO_Philo[n],
250+
QActive_start(AO_Philo[n],
251251

252252
// NOTE: set the preemption-threshold of all Philos to
253253
// the same level, so that they cannot preempt each other.
@@ -261,7 +261,7 @@ void BSP_start(void) {
261261

262262
static QEvt const *tableQueueSto[N_PHILO];
263263
Table_ctor();
264-
QACTIVE_START(AO_Table,
264+
QActive_start(AO_Table,
265265
N_PHILO + 7U, // QP prio. of the AO
266266
tableQueueSto, // event queue storage
267267
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_mbed-lpc1768/qv/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ void BSP_start(void) {
248248
static QEvt const *philoQueueSto[N_PHILO][10];
249249
for (uint8_t n = 0U; n < N_PHILO; ++n) {
250250
Philo_ctor(n);
251-
QACTIVE_START(AO_Philo[n],
251+
QActive_start(AO_Philo[n],
252252
n + 3U, // QF-prio.
253253
philoQueueSto[n], // event queue storage
254254
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -258,7 +258,7 @@ void BSP_start(void) {
258258

259259
static QEvt const *tableQueueSto[N_PHILO];
260260
Table_ctor();
261-
QACTIVE_START(AO_Table,
261+
QActive_start(AO_Table,
262262
N_PHILO + 7U, // QP prio. of the AO
263263
tableQueueSto, // event queue storage
264264
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_mbed-lpc1768/qxk/bsp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ void BSP_start(void) {
243243
static QEvt const *xThread1QueueSto[5];
244244
static uint64_t xThread1StackSto[64];
245245
XThread1_ctor();
246-
QXTHREAD_START(TH_XThread1,
246+
QXThread_start(TH_XThread1,
247247
1U, // QP priority of the thread
248248
xThread1QueueSto, // event queue storage
249249
Q_DIM(xThread1QueueSto), // event length [events]
@@ -254,7 +254,7 @@ void BSP_start(void) {
254254
static QEvt const *philoQueueSto[N_PHILO][10];
255255
for (uint8_t n = 0U; n < N_PHILO; ++n) {
256256
Philo_ctor(n);
257-
QACTIVE_START(AO_Philo[n],
257+
QActive_start(AO_Philo[n],
258258
n + 3U, // QF-prio.
259259
philoQueueSto[n], // event queue storage
260260
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -265,7 +265,7 @@ void BSP_start(void) {
265265
static QEvt const *xThread2QueueSto[5];
266266
static uint64_t xThread2StackSto[64];
267267
XThread2_ctor();
268-
QXTHREAD_START(TH_XThread2,
268+
QXThread_start(TH_XThread2,
269269
N_PHILO + 5U, // QP priority of the thread
270270
xThread2QueueSto, // event queue storage
271271
Q_DIM(xThread2QueueSto), // event length [events]
@@ -275,7 +275,7 @@ void BSP_start(void) {
275275

276276
static QEvt const *tableQueueSto[N_PHILO];
277277
Table_ctor();
278-
QACTIVE_START(AO_Table,
278+
QActive_start(AO_Table,
279279
N_PHILO + 7U, // QP prio. of the AO
280280
tableQueueSto, // event queue storage
281281
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_nucleo-c031c6/qk/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ void BSP_start(void) {
252252
static QEvt const *philoQueueSto[N_PHILO][10];
253253
for (uint8_t n = 0U; n < N_PHILO; ++n) {
254254
Philo_ctor(n);
255-
QACTIVE_START(AO_Philo[n],
255+
QActive_start(AO_Philo[n],
256256

257257
// NOTE: set the preemption-threshold of all Philos to
258258
// the same level, so that they cannot preempt each other.
@@ -266,7 +266,7 @@ void BSP_start(void) {
266266

267267
static QEvt const *tableQueueSto[N_PHILO];
268268
Table_ctor();
269-
QACTIVE_START(AO_Table,
269+
QActive_start(AO_Table,
270270
N_PHILO + 7U, // QP prio. of the AO
271271
tableQueueSto, // event queue storage
272272
Q_DIM(tableQueueSto), // queue length [events]

arm-cm/dpp_nucleo-c031c6/qv/bsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ void BSP_start(void) {
258258
static QEvt const *philoQueueSto[N_PHILO][10];
259259
for (uint8_t n = 0U; n < N_PHILO; ++n) {
260260
Philo_ctor(n);
261-
QACTIVE_START(AO_Philo[n],
261+
QActive_start(AO_Philo[n],
262262
n + 3U, // QF-prio.
263263
philoQueueSto[n], // event queue storage
264264
Q_DIM(philoQueueSto[n]), // queue length [events]
@@ -268,7 +268,7 @@ void BSP_start(void) {
268268

269269
static QEvt const *tableQueueSto[N_PHILO];
270270
Table_ctor();
271-
QACTIVE_START(AO_Table,
271+
QActive_start(AO_Table,
272272
N_PHILO + 7U, // QP prio. of the AO
273273
tableQueueSto, // event queue storage
274274
Q_DIM(tableQueueSto), // queue length [events]

0 commit comments

Comments
 (0)