diff options
author | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 21:16:40 -0500 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 21:16:40 -0500 |
commit | 0d574a512ef3fe4f0751d0f3c495e347975765cf (patch) | |
tree | 2d04db9ee35c0a29f072a476959ada4ce6dc4c30 /error_utils.c | |
parent | 8e4c0d86c8df94d629413cd7863dc3a83cc21959 (diff) |
enable broadcast alarms
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); } |