altos: use %lu for APRS altitude in sprintf
[fw/altos] / src / cc1111 / ao_battery.c
index 070f682fa60ded378db1b6f646b0a2caf14baae4..9fb4c26b538e65db1fee2e380d79d842a6fda510 100644 (file)
@@ -3,7 +3,8 @@
  *
  * 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; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -36,7 +37,7 @@ ao_battery_get(void)
                ADCCON3 = ADCCON3_EREF_VDD | ADCCON3_EDIV_512 | BATTERY_PIN;
                ao_sleep(DATA_TO_XDATA(&ao_battery_value));
                );
-       return (uint16_t) ((int32_t) ao_battery_value.v * (int32_t) 3333 >> 15);
+       return (uint16_t) ((int32_t) ao_battery_value.v * (int32_t) 4950 >> 15);
 }
 
 static void