display.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. #include <avr/pgmspace.h>
  2. #include "main.h"
  3. #include "display.h"
  4. #include "HD44780-I2C.h"
  5. #include "xprintf.h"
  6. #include "working_modes.h"
  7. #include "timec.h"
  8. __flash const unsigned char battery_states[][8] = {
  9. {
  10. 0b01110,
  11. 0b11111,
  12. 0b11111,
  13. 0b11111,
  14. 0b11111,
  15. 0b11111,
  16. 0b11111,
  17. 0b11111,
  18. },
  19. {
  20. 0b01110,
  21. 0b11111,
  22. 0b10001,
  23. 0b11111,
  24. 0b11111,
  25. 0b11111,
  26. 0b11111,
  27. 0b11111,
  28. },
  29. {
  30. 0b01110,
  31. 0b11111,
  32. 0b10001,
  33. 0b10001,
  34. 0b10001,
  35. 0b11111,
  36. 0b11111,
  37. 0b11111,
  38. },
  39. {
  40. 0b01110,
  41. 0b11111,
  42. 0b10001,
  43. 0b10001,
  44. 0b10001,
  45. 0b10001,
  46. 0b10001,
  47. 0b11111,
  48. },
  49. };
  50. __flash const unsigned char custom_chars[] = {
  51. 0b00000, /* 0x01 down arrow */
  52. 0b00100,
  53. 0b00100,
  54. 0b00100,
  55. 0b10101,
  56. 0b01110,
  57. 0b00100,
  58. 0b00000,
  59. 0b00000, /* 0x02 up arrow */
  60. 0b00100,
  61. 0b01110,
  62. 0b10101,
  63. 0b00100,
  64. 0b00100,
  65. 0b00100,
  66. 0b00000,
  67. };
  68. struct disp_s disp;
  69. void disp_init(void) { /* send custom characters starting with 0x01 */
  70. unsigned char i;
  71. LCD_WriteCommand(0x40 + 8); // 0x01
  72. for(i=0; i<sizeof(custom_chars); i++){
  73. LCD_WriteData(custom_chars[i]);
  74. };
  75. }
  76. void battery_state_display(void) {
  77. unsigned char i;
  78. unsigned char index;
  79. if (System.bat_volt > 4.0)
  80. index = 0;
  81. else if (System.bat_volt > 3.7)
  82. index = 1;
  83. else if (System.bat_volt > 3.4)
  84. index = 2;
  85. else
  86. index = 3;
  87. LCD_WriteCommand(0x40 + 0); // 0x00
  88. for(i=0; i<8; i++){
  89. LCD_WriteData(battery_states[index][i]);
  90. };
  91. }
  92. static inline void disp_line(unsigned char i, __flash const char *text) {
  93. switch(i) {
  94. case 2: strcpy_P(disp.line2, text); break;
  95. case 1: strcpy_P(disp.line1, text); break;
  96. }
  97. }
  98. void disp_line1(__flash const char *text) {
  99. disp_line(1, text);
  100. }
  101. void disp_line2(__flash const char *text) {
  102. disp_line(2, text);
  103. }
  104. __flash const char _gps_wait[] = "Czekam na GPS...";
  105. __flash const char _gps_ok[] = "GPS OK!";
  106. __flash const char _card_ok[] = "Karta OK!";
  107. __flash const char _logging_active[] = "Zapis aktywny";
  108. __flash const char _logging_paused[] = "Zapis wstrzymany";
  109. __flash const char _starting[] = "Uruchamianie...";
  110. __flash const char _battery_low[] = "Bateria slaba!";
  111. __flash const char _shutting_down[] = "Wylaczanie...";
  112. __flash const char _no_card[] = "Brak karty!";
  113. __flash const char _card_error[] = "Blad karty!";
  114. __flash const char _write_error[] = "Blad zapisu!";
  115. __flash const char _fat_write_error[] = "Blad zapisu FAT!";
  116. __flash const char _file_close_error[] = "Blad zamk.pliku!";
  117. __flash const char _file_open_error[] = "Blad otw. pliku!";
  118. __flash const char _files_closed[] = "Pliki zamkniete";
  119. __flash const char _files_open[] = "Pliki otwarte";
  120. __flash const char _tracking_paused[] = "Wstrzymano!";
  121. __flash const char _tracking_resumed[] = "Wznowiono!";
  122. __flash const char _point_saved[] = "Zapisano!";
  123. __flash const char _point_not_saved[] = "Nie zapisano!";
  124. __flash const char _logging_auto_paused[] = "Autom. wstrzym.";
  125. __flash const char _sat_count_low[] = "Za malo satelit";
  126. void display_event(unsigned char event) { /* overrides display with current messages */
  127. switch (event) {
  128. case DISPLAY_EVENT_STARTUP:
  129. disp_line1(_starting);
  130. break;
  131. case DISPLAY_EVENT_LOW_BATTERY:
  132. disp_line2(_battery_low);
  133. /* fall through */
  134. case DISPLAY_EVENT_POWEROFF:
  135. disp_line1(_shutting_down);
  136. break;
  137. case DISPLAY_EVENT_INITIALIZED:
  138. disp_line1(PSTR("Start"));
  139. switch(System.status){
  140. case STATUS_NO_POWER: case STATUS_OK: case STATUS_NO_GPS: disp.line2[0] = '\0'; break;
  141. case STATUS_NO_DISK: disp_line2(_no_card); break;
  142. case STATUS_DISK_ERROR: disp_line2(_card_error); break;
  143. case STATUS_FILE_WRITE_ERROR: disp_line2(_write_error); break;
  144. case STATUS_FILE_SYNC_ERROR: disp_line2(_fat_write_error); break;
  145. case STATUS_FILE_CLOSE_ERROR: disp_line2(_file_close_error); break;
  146. case STATUS_FILE_OPEN_ERROR: disp_line2(_file_open_error); break;
  147. }
  148. break;
  149. case DISPLAY_EVENT_CARD_INITIALIZED:
  150. disp_line1(_card_ok);
  151. disp_line2(_gps_wait);
  152. break;
  153. case DISPLAY_EVENT_FILE_CLOSED:
  154. disp_line2(_files_closed);
  155. break;
  156. case DISPLAY_EVENT_FILE_OPEN:
  157. disp_line2(_files_open);
  158. break;
  159. case DISPLAY_EVENT_TRACKING_PAUSED:
  160. disp_line2(_tracking_paused);
  161. break;
  162. case DISPLAY_EVENT_TRACKING_RESUMED:
  163. disp_line2(_tracking_resumed);
  164. break;
  165. case DISPLAY_EVENT_POINT_SAVED:
  166. disp_line2(_point_saved);
  167. break;
  168. case DISPLAY_EVENT_POINT_NOT_SAVED:
  169. disp_line2(_point_not_saved);
  170. break;
  171. }
  172. display_refresh(1);
  173. }
  174. void disp_func_main_default(void) {
  175. if (FLAGS & F_FILEOPEN) {
  176. if (System.tracking_paused) {
  177. disp_line1(_logging_paused);
  178. } else if (System.tracking_auto_paused) {
  179. disp_line1(_logging_auto_paused);
  180. } else {
  181. disp_line1(_logging_active);
  182. }
  183. } else
  184. disp_line1(_card_ok);
  185. if (FLAGS & F_GPSOK) {
  186. if (System.sat_count_low)
  187. disp_line2(_sat_count_low);
  188. else
  189. disp_line2(_gps_ok);
  190. } else {
  191. disp_line2(_gps_wait);
  192. }
  193. }
  194. void disp_func_coord(void) {
  195. if (System.location_valid == LOC_INVALID) {
  196. disp_line1(PSTR("??? N/S"));
  197. disp_line2(PSTR("??? E/W"));
  198. return;
  199. }
  200. xsprintf(disp.line1, PSTR("%2.6f%c"), (location.lat < 0)?(-location.lat):location.lat, (location.lat < 0)?'S':'N');
  201. xsprintf(disp.line2, PSTR("%3.6f%c"), (location.lon < 0)?(-location.lon):location.lon, (location.lon < 0)?'W':'E');
  202. }
  203. void disp_func_ele_sat(void) {
  204. if (System.location_valid == LOC_INVALID) {
  205. disp_line1(PSTR("ele = ???"));
  206. } else {
  207. xsprintf(disp.line1, PSTR("ele = %.1fm"), location.alt);
  208. }
  209. xsprintf(disp.line2, PSTR("%2d satelit"), System.satellites_used);
  210. if (System.sbas)
  211. strcat_P(disp.line2, PSTR(", DGPS"));
  212. }
  213. void disp_distance_and_time(void) {
  214. xsprintf(disp.line1, PSTR("%.2f km"), (float)System.distance / 100000.0);
  215. if (utc > 0 && System.time_start > 0) {
  216. xsprintf(disp.line2, PSTR("t=%u s"), (unsigned int)(utc - System.time_start));
  217. } else {
  218. disp_line2(PSTR("Czas nieznany"));
  219. }
  220. }
  221. void disp_speed(void) {
  222. disp_line1(PSTR("Predkosc:"));
  223. if (utc > 0 && System.time_start > 0) {
  224. xsprintf(disp.line2, PSTR("%.2f km/h"), (float)System.distance / (float)(utc - System.time_start) * 0.036);
  225. } else {
  226. disp_line2(PSTR("nieznana"));
  227. }
  228. }
  229. void disp_time(void) {
  230. if (utc == 0) {
  231. disp_line1(PSTR("?"));
  232. disp_line2(PSTR("?"));
  233. return;
  234. }
  235. time_t time = utc;
  236. time += local_time_diff(time) * (signed int)3600;
  237. struct tm *ct = gmtime(&time);
  238. xsprintf(disp.line1, PSTR("%d.%02d.%4d"), ct->tm_mday, ct->tm_mon+1, ct->tm_year+1900);
  239. xsprintf(disp.line2, PSTR("%d:%02d:%02d"), ct->tm_hour, ct->tm_min, ct->tm_sec);
  240. }
  241. void disp_func_temperature(void) {
  242. disp_line1(PSTR("Temperatura"));
  243. if (System.temperature_ok) {
  244. xsprintf(disp.line2, PSTR("%.1f stC"), System.temperature);
  245. } else {
  246. disp_line2(PSTR("Blad!"));
  247. }
  248. }
  249. void display_refresh(unsigned char changed) {
  250. if (timer_expired(lcd)) {
  251. changed = 1;
  252. }
  253. /* write to LCD */
  254. if (changed) {
  255. set_timer(lcd, 1000);
  256. battery_state_display();
  257. unsigned char len;
  258. LCD_GoTo(0,0);
  259. len = strlen(disp.line1);
  260. LCD_WriteText(disp.line1);
  261. while (len<15) {
  262. len++;
  263. LCD_WriteData(' ');
  264. }
  265. LCD_WriteData(0); /* battery symbol */
  266. LCD_GoTo(0,1);
  267. len = strlen(disp.line2);
  268. LCD_WriteText(disp.line2);
  269. while (len<16) {
  270. len++;
  271. LCD_WriteData(' ');
  272. }
  273. }
  274. }