Skip to content

Commit 6bb4af8

Browse files
committed
8.1.0
1 parent f9ee84c commit 6bb4af8

File tree

169 files changed

+484
-1635
lines changed

Some content is hidden

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

169 files changed

+484
-1635
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void BSP_init(void) {
158158
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
159159

160160
// setup the QS filters...
161-
QS_GLB_FILTER(GRP_ALL); // all records
161+
QS_GLB_FILTER(QS_GRP_ALL); // all records
162162
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
163163
}
164164
//............................................................................

arm-cm/blinky_ek-tm4c123gxl/qp_config.h

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define QP_API_VERSION 0
4949

5050
//..........................................................................
51-
// <h>QP Functional Safety (FuSa) Subsystem (Q_UNSAFE)
51+
// <h>QP Functional Safety (FuSa) Subsystem (QP_UNSAFE)
5252
// <i>The QP FuSa Subsystem consists of the following facilities:
5353
// <i>- Software assertions as a recommended technique
5454
// <i> (called Failure Assertion Programming (FAP) in IEC 61508)
@@ -63,7 +63,7 @@
6363
// <i>in development build configurations (NDEBUG undefined).
6464
// <i>NOTE: Disabling safety *violates* functional safety standards.
6565
//#ifndef NDEBUG
66-
//#define Q_UNSAFE
66+
//#define QP_UNSAFE
6767
//#endif
6868
// </c>
6969

@@ -72,26 +72,12 @@
7272
// <i>in the release build configurations (NDEBUG defined).
7373
// <i>NOTE: Disabling safety *violates* functional safety standards.
7474
//#ifdef NDEBUG
75-
//#define Q_UNSAFE
75+
//#define QP_UNSAFE
7676
//#endif
7777
// </c>
7878

7979
// </h>
8080

81-
//..........................................................................
82-
// <h>QEP Event Processor (Events)
83-
// <i>Events and state machines.
84-
85-
// <o>Event signal size (Q_SIGNAL_SIZE)
86-
// <1U=>1
87-
// <2U=>2 (default)
88-
// <4U=>4
89-
// <i>Size of the QEvt signal for QEP/QF [bytes]
90-
// <i>Default: 2
91-
#define Q_SIGNAL_SIZE 2U
92-
93-
// </h>
94-
9581
//..........................................................................
9682
// <h>QF Framework (Active Objects)
9783
// <i>Active Object framework

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ void BSP_init(void) {
155155
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
156156

157157
// setup the QS filters...
158-
QS_GLB_FILTER(GRP_ALL); // all records
158+
QS_GLB_FILTER(QS_GRP_ALL); // all records
159159
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
160160
}
161161
//............................................................................

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ void BSP_init(void) {
153153
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
154154

155155
// setup the QS filters...
156-
QS_GLB_FILTER(GRP_ALL); // all records
156+
QS_GLB_FILTER(QS_GRP_ALL); // all records
157157
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
158158
}
159159
//............................................................................

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ void BSP_init(void) {
142142
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
143143

144144
// setup the QS filters...
145-
QS_GLB_FILTER(GRP_ALL); // all records
145+
QS_GLB_FILTER(QS_GRP_ALL); // all records
146146
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
147147
}
148148
//............................................................................

arm-cm/blinky_nucleo-c031c6/qp_config.h

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define QP_API_VERSION 0
4949

5050
//..........................................................................
51-
// <h>QP Functional Safety (FuSa) Subsystem (Q_UNSAFE)
51+
// <h>QP Functional Safety (FuSa) Subsystem (QP_UNSAFE)
5252
// <i>The QP FuSa Subsystem consists of the following facilities:
5353
// <i>- Software assertions as a recommended technique
5454
// <i> (called Failure Assertion Programming (FAP) in IEC 61508)
@@ -63,7 +63,7 @@
6363
// <i>in development build configurations (NDEBUG undefined).
6464
// <i>NOTE: Disabling safety *violates* functional safety standards.
6565
//#ifndef NDEBUG
66-
//#define Q_UNSAFE
66+
//#define QP_UNSAFE
6767
//#endif
6868
// </c>
6969

@@ -72,26 +72,12 @@
7272
// <i>in the release build configurations (NDEBUG defined).
7373
// <i>NOTE: Disabling safety *violates* functional safety standards.
7474
//#ifdef NDEBUG
75-
//#define Q_UNSAFE
75+
//#define QP_UNSAFE
7676
//#endif
7777
// </c>
7878

7979
// </h>
8080

81-
//..........................................................................
82-
// <h>QEP Event Processor (Events)
83-
// <i>Events and state machines.
84-
85-
// <o>Event signal size (Q_SIGNAL_SIZE)
86-
// <1U=>1
87-
// <2U=>2 (default)
88-
// <4U=>4
89-
// <i>Size of the QEvt signal for QEP/QF [bytes]
90-
// <i>Default: 2
91-
#define Q_SIGNAL_SIZE 2U
92-
93-
// </h>
94-
9581
//..........................................................................
9682
// <h>QF Framework (Active Objects)
9783
// <i>Active Object framework

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void BSP_init(void) {
140140
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
141141

142142
// setup the QS filters...
143-
QS_GLB_FILTER(GRP_ALL); // all records
143+
QS_GLB_FILTER(QS_GRP_ALL); // all records
144144
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
145145
}
146146
//............................................................................

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ void BSP_init(void) {
142142
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
143143

144144
// setup the QS filters...
145-
QS_GLB_FILTER(GRP_ALL); // all records
145+
QS_GLB_FILTER(QS_GRP_ALL); // all records
146146
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
147147
}
148148
//............................................................................

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ void BSP_init(void) {
205205
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
206206

207207
// setup the QS filters...
208-
QS_GLB_FILTER(GRP_ALL); // all records
208+
QS_GLB_FILTER(QS_GRP_ALL); // all records
209209
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
210210
}
211211
//............................................................................

arm-cm/blinky_nucleo-u545re/qp_config.h

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define QP_API_VERSION 0
4949

5050
//..........................................................................
51-
// <h>QP Functional Safety (FuSa) Subsystem (Q_UNSAFE)
51+
// <h>QP Functional Safety (FuSa) Subsystem (QP_UNSAFE)
5252
// <i>The QP FuSa Subsystem consists of the following facilities:
5353
// <i>- Software assertions as a recommended technique
5454
// <i> (called Failure Assertion Programming (FAP) in IEC 61508)
@@ -63,7 +63,7 @@
6363
// <i>in development build configurations (NDEBUG undefined).
6464
// <i>NOTE: Disabling safety *violates* functional safety standards.
6565
//#ifndef NDEBUG
66-
//#define Q_UNSAFE
66+
//#define QP_UNSAFE
6767
//#endif
6868
// </c>
6969

@@ -72,26 +72,12 @@
7272
// <i>in the release build configurations (NDEBUG defined).
7373
// <i>NOTE: Disabling safety *violates* functional safety standards.
7474
//#ifdef NDEBUG
75-
//#define Q_UNSAFE
75+
//#define QP_UNSAFE
7676
//#endif
7777
// </c>
7878

7979
// </h>
8080

81-
//..........................................................................
82-
// <h>QEP Event Processor (Events)
83-
// <i>Events and state machines.
84-
85-
// <o>Event signal size (Q_SIGNAL_SIZE)
86-
// <1U=>1
87-
// <2U=>2 (default)
88-
// <4U=>4
89-
// <i>Size of the QEvt signal for QEP/QF [bytes]
90-
// <i>Default: 2
91-
#define Q_SIGNAL_SIZE 2U
92-
93-
// </h>
94-
9581
//..........................................................................
9682
// <h>QF Framework (Active Objects)
9783
// <i>Active Object framework

0 commit comments

Comments
 (0)