Start using pdata area for less-frequently used data
[fw/altos] / ao_log.c
index b24602e92beb13c70fb56e23c6e53ff1e1410bc5..3bb2f84562f4de8a74c669ee8c676b392b5815a3 100644 (file)
--- 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
 
 #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");
 }