Index: firmware/App/Controllers/Bubble.c =================================================================== diff -u -ra7821aff3dc204a060233b0753253ec04d020557 -reb0949253d49058defea55b07876920d887d7f78 --- firmware/App/Controllers/Bubble.c (.../Bubble.c) (revision a7821aff3dc204a060233b0753253ec04d020557) +++ firmware/App/Controllers/Bubble.c (.../Bubble.c) (revision eb0949253d49058defea55b07876920d887d7f78) @@ -55,7 +55,7 @@ /// Interval (in ms) at which to publish air bubble detectors data on CAN bus. static OVERRIDE_U32_T bubblesDataPublishInterval = { BUBBLE_PUB_INTERVAL, BUBBLE_PUB_INTERVAL, 0, 0 }; -static U32 bubblesDataPublicationTimerCounter = 0; ///< Timer counter used to schedule air bubble detectors data publication to CAN bus. +static U32 bubblesDataPublicationTimerCounter; ///< Timer counter used to schedule air bubble detectors data publication to CAN bus. // ********** private function prototypes ********** @@ -75,7 +75,7 @@ { BUBBLES_T bubble; - for (bubble = ADV; bubble < NUM_OF_BUBBLES; bubble++) + for ( bubble = ADV; bubble < NUM_OF_BUBBLES; bubble++ ) { bubblesState[ bubble ] = BUBBLE_NORMAL_STATE; bubblesStatus[ bubble ].data = BUBBLE_NOT_DETECTED;