@@ -1,6 +1,6 | |||||
1 | ############################################################################# |
|
1 | ############################################################################# | |
2 | # Makefile for building: bin/fsw |
|
2 | # Makefile for building: bin/fsw | |
3 |
# Generated by qmake (2.01a) (Qt 4.8.5) on: Tue Nov 12 1 |
|
3 | # Generated by qmake (2.01a) (Qt 4.8.5) on: Tue Nov 12 13:28:25 2013 | |
4 | # Project: fsw-qt.pro |
|
4 | # Project: fsw-qt.pro | |
5 | # Template: app |
|
5 | # Template: app | |
6 | # Command: /usr/bin/qmake-qt4 -spec /usr/lib64/qt4/mkspecs/linux-g++ -o Makefile fsw-qt.pro |
|
6 | # Command: /usr/bin/qmake-qt4 -spec /usr/lib64/qt4/mkspecs/linux-g++ -o Makefile fsw-qt.pro |
@@ -17,6 +17,10 contains( CONFIG, verbose ) { | |||||
17 | DEFINES += PRINT_MESSAGES_ON_CONSOLE |
|
17 | DEFINES += PRINT_MESSAGES_ON_CONSOLE | |
18 | } |
|
18 | } | |
19 |
|
19 | |||
|
20 | contains( CONFIG, debug_messages ) { | |||
|
21 | DEFINES += DEBUG_MESSAGES | |||
|
22 | } | |||
|
23 | ||||
20 | contains( CONFIG, cpu_usage_report ) { |
|
24 | contains( CONFIG, cpu_usage_report ) { | |
21 | DEFINES += PRINT_TASK_STATISTICS |
|
25 | DEFINES += PRINT_TASK_STATISTICS | |
22 | } |
|
26 | } |
@@ -1,6 +1,6 | |||||
1 | <?xml version="1.0" encoding="UTF-8"?> |
|
1 | <?xml version="1.0" encoding="UTF-8"?> | |
2 | <!DOCTYPE QtCreatorProject> |
|
2 | <!DOCTYPE QtCreatorProject> | |
3 |
<!-- Written by QtCreator 2.8.1, 2013-11-12T1 |
|
3 | <!-- Written by QtCreator 2.8.1, 2013-11-12T13:25:37. --> | |
4 | <qtcreator> |
|
4 | <qtcreator> | |
5 | <data> |
|
5 | <data> | |
6 | <variable>ProjectExplorer.Project.ActiveTarget</variable> |
|
6 | <variable>ProjectExplorer.Project.ActiveTarget</variable> |
@@ -472,7 +472,7 void increment_seq_counter_destination_i | |||||
472 | packet_sequence_control[0] = (unsigned char) (new_packet_sequence_control >> 8); |
|
472 | packet_sequence_control[0] = (unsigned char) (new_packet_sequence_control >> 8); | |
473 | packet_sequence_control[1] = (unsigned char) (new_packet_sequence_control ); |
|
473 | packet_sequence_control[1] = (unsigned char) (new_packet_sequence_control ); | |
474 |
|
474 | |||
475 |
// increment the se |
|
475 | // increment the sequence counter for the next packet | |
476 | if ( sequenceCounters_TC_EXE[ i ] < SEQ_CNT_MAX) |
|
476 | if ( sequenceCounters_TC_EXE[ i ] < SEQ_CNT_MAX) | |
477 | { |
|
477 | { | |
478 | sequenceCounters_TC_EXE[ i ] = sequenceCounters_TC_EXE[ i ] + 1; |
|
478 | sequenceCounters_TC_EXE[ i ] = sequenceCounters_TC_EXE[ i ] + 1; | |
@@ -484,7 +484,7 void increment_seq_counter_destination_i | |||||
484 | } |
|
484 | } | |
485 | else |
|
485 | else | |
486 | { |
|
486 | { | |
487 | PRINTF1("in increment_seq_counter_destination_id *** ERR destination ID %d not known\n", destination_id) |
|
487 | DEBUG_PRINTF1("in increment_seq_counter_destination_id *** ERR destination ID %d not known\n", destination_id) | |
488 | } |
|
488 | } | |
489 |
|
489 | |||
490 | } |
|
490 | } |
General Comments 0
You need to be logged in to leave comments.
Login now