Skip to content

Commit f9ee84c

Browse files
committed
8.1.0
1 parent c54eab0 commit f9ee84c

File tree

196 files changed

+15083
-15788
lines changed

Some content is hidden

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

196 files changed

+15083
-15788
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(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/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(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(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(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/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(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(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(GRP_ALL); // all records
209+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
210210
}
211211
//............................................................................
212212
void BSP_start(void) {

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

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

204204
// setup the QS filters...
205-
QS_GLB_FILTER(QS_ALL_RECORDS); // all records
206-
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
205+
QS_GLB_FILTER(GRP_ALL); // all records
206+
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
207207
}
208208
//............................................................................
209209
void BSP_start(void) {

arm-cm/blinky_nucleo-u545re/qxk/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(QS_ALL_RECORDS); // all records
208+
QS_GLB_FILTER(GRP_ALL); // all records
209209
QS_GLB_FILTER(-QS_QF_TICK); // exclude the clock tick
210210
}
211211
//............................................................................

0 commit comments

Comments
 (0)