X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=ao_log.c;h=3bb2f84562f4de8a74c669ee8c676b392b5815a3;hp=b24602e92beb13c70fb56e23c6e53ff1e1410bc5;hb=5be13b76a2e29b84cd6d1eec065e3354b0dafce5;hpb=022f83ca6fd589005d8eb3e25e633950fef69fa7 diff --git a/ao_log.c b/ao_log.c index b24602e9..3bb2f845 100644 --- a/ao_log.c +++ b/ao_log.c @@ -3,8 +3,7 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -18,10 +17,10 @@ #include "ao.h" -__data uint32_t ao_log_current_pos; -__data uint32_t ao_log_start_pos; -__xdata uint8_t ao_log_running; -__xdata uint8_t ao_log_mutex; +static __pdata uint32_t ao_log_current_pos; +static __pdata uint32_t ao_log_start_pos; +static __xdata uint8_t ao_log_running; +static __xdata uint8_t ao_log_mutex; static uint8_t ao_log_csum(uint8_t *b) @@ -192,5 +191,5 @@ ao_log_init(void) ao_log_state = ao_flight_invalid; /* Create a task to log events to eeprom */ - ao_add_task(&ao_log_task, ao_log); + ao_add_task(&ao_log_task, ao_log, "log"); }