Skip to content

Commit 154c1ee

Browse files
committed
8.1.0
1 parent c54eab0 commit 154c1ee

File tree

292 files changed

+15252
-17106
lines changed

Some content is hidden

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

292 files changed

+15252
-17106
lines changed

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44
# Prerequisites
55
*.d
66

7-
# QUTest log files
7+
# QUTest output files
88
*.log
9+
*.cov
10+
*.host
11+
*.trg
912

1013
# Object files
1114
*.o
@@ -50,9 +53,12 @@
5053
*.idb
5154
*.pdb
5255

53-
# GCOV files
56+
# GCOV files and coverage logs
5457
*.gcda
5558
*.gcno
59+
*.cov
60+
*.host
61+
*.trg
5662

5763
# Kernel Module Compile Results
5864
*.mod*

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#include "bsp.h" // Board Support Package
3737

3838
#include "TM4C123GH6PM.h" // the device specific header (TI)
39-
#include "rom.h" // the built-in ROM functions (TI)
4039
#include "sysctl.h" // system control driver (TI)
4140
#include "gpio.h" // GPIO driver (TI)
4241
// add other drivers if necessary...
@@ -159,8 +158,8 @@ void BSP_init(void) {
159158
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
160159

161160
// setup the QS filters...
162-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
163-
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
161+
QS_GLB_FILTER(QS_GRP_ALL); // all records
162+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
164163
}
165164
//............................................................................
166165
void BSP_start(void) {

arm-cm/blinky_ek-tm4c123gxl/qp_config.h

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -78,20 +78,6 @@
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: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#include "bsp.h" // Board Support Package
3737

3838
#include "TM4C123GH6PM.h" // the device specific header (TI)
39-
#include "rom.h" // the built-in ROM functions (TI)
4039
#include "sysctl.h" // system control driver (TI)
4140
#include "gpio.h" // GPIO driver (TI)
4241
// add other drivers if necessary...
@@ -156,8 +155,8 @@ void BSP_init(void) {
156155
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
157156

158157
// setup the QS filters...
159-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
160-
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
158+
QS_GLB_FILTER(QS_GRP_ALL); // all records
159+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
161160
}
162161
//............................................................................
163162
void BSP_start(void) {

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
#include "bsp.h" // Board Support Package
3232

3333
#include "TM4C123GH6PM.h" // the device specific header (TI)
34-
#include "rom.h" // the built-in ROM functions (TI)
3534
#include "sysctl.h" // system control driver (TI)
3635
#include "gpio.h" // GPIO driver (TI)
3736
// add other drivers if necessary...
@@ -154,7 +153,7 @@ void BSP_init(void) {
154153
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
155154

156155
// setup the QS filters...
157-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
156+
QS_GLB_FILTER(QS_GRP_ALL); // all records
158157
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
159158
}
160159
//............................................................................

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ void BSP_init(void) {
142142
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
143143

144144
// setup the QS filters...
145-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
146-
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
145+
QS_GLB_FILTER(QS_GRP_ALL); // all records
146+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
147147
}
148148
//............................................................................
149149
void BSP_start(void) {

arm-cm/blinky_nucleo-c031c6/qp_config.h

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -78,20 +78,6 @@
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ void BSP_init(void) {
140140
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
141141

142142
// setup the QS filters...
143-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
144-
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
143+
QS_GLB_FILTER(QS_GRP_ALL); // all records
144+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
145145
}
146146
//............................................................................
147147
void BSP_start(void) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ void BSP_init(void) {
142142
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
143143

144144
// setup the QS filters...
145-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
146-
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
145+
QS_GLB_FILTER(QS_GRP_ALL); // all records
146+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
147147
}
148148
//............................................................................
149149
void BSP_start(void) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ void BSP_init(void) {
205205
QS_OBJ_DICTIONARY(&l_SysTick_Handler);
206206

207207
// setup the QS filters...
208-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
209-
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
208+
QS_GLB_FILTER(QS_GRP_ALL); // all records
209+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
210210
}
211211
//............................................................................
212212
void BSP_start(void) {

0 commit comments

Comments
 (0)