diff options
Diffstat (limited to 'error_utils.c')
-rw-r--r-- | error_utils.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/error_utils.c b/error_utils.c index a92c8dd..d4c48a3 100644 --- a/error_utils.c +++ b/error_utils.c @@ -143,8 +143,9 @@ void queue_error_and_display_on_LCD(int error_num) g_free (response); } +extern void send_message(gchar* message); -void queue_and_broadcast_sensor_alarm(int error_num) // FIXME - implement +void queue_and_broadcast_sensor_alarm(int error_num) { if (error_num == OK) { return; @@ -153,6 +154,11 @@ void queue_and_broadcast_sensor_alarm(int error_num) // FIXME - implement gchar* response = NULL; queue_error_and_get_text(&response, error_num); LCD_display_extended_message (response, TRUE, TRUE); + + gchar *broadcast_str = g_strdup_printf ("%s\r\n> ", response); + send_message(broadcast_str); + g_free (broadcast_str); + g_free (response); } |