File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ void i2c_task(void *dummy)
76
76
// See if we are at the top of the next second
77
77
if (memcmp (&message_anim.ds3231 , &old_ds3231, sizeof (ds3231_t )) != 0 ) {
78
78
if (xQueueSend (animate_queue, &message_anim, 10 ) != pdTRUE) {
79
- printf (" Could not send clock data; dropping" );
79
+ printf (" Could not send clock data; dropping\n " );
80
80
}
81
81
82
82
if (climate_count == CLIMATE_SEND_INTERVAL) {
@@ -98,14 +98,14 @@ void i2c_task(void *dummy)
98
98
message_mqtt.climate .humidity = get_humidity ();
99
99
100
100
if (xQueueSend (mqtt_queue, &message_mqtt, 10 ) != pdTRUE) {
101
- printf (" Could not send climate data; dropping" );
101
+ printf (" Could not send climate data; dropping\n " );
102
102
}
103
103
}
104
104
#else
105
105
message_mqtt.climate .temperature = get_temperature ();
106
106
107
107
if (xQueueSend (mqtt_queue, &message_mqtt, 10 ) != pdTRUE) {
108
- printf (" Could not send climate data; dropping" );
108
+ printf (" Could not send climate data; dropping\n " );
109
109
}
110
110
111
111
#endif
You can’t perform that action at this time.
0 commit comments