main.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. #pragma once
  2. #define __PROG_TYPES_COMPAT__
  3. #include <inttypes.h>
  4. #include <avr/pgmspace.h>
  5. #include <avr/interrupt.h>
  6. #include "stime.h"
  7. #include "expander.h"
  8. #define IVT_SYNC 180 /* f_sync() interval (0:no periodic sync) [sec] */
  9. #define POWER_SW_TIME 300 /* power switch hold time to power off [10ms] */
  10. //#define VI_LVL 4.2 /* Blackout threshold [volt] */
  11. //#define VI_LVH 4.8 /* Recharge threshold [volt] */
  12. #define VI_LVL 3.1 /* Blackout threshold [volt] */
  13. #define VI_LVH 3.4 /* Recharge threshold [volt] */
  14. #define VI_MULT (3.3 / 6.6 / 2.495 * 1024)
  15. /* pin definitions */
  16. #define BUZZER_PORT PORTA
  17. #define BUZZER _BV(PA7)
  18. #define BUZZER_DDR DDRA
  19. #define GPS_DIS_PORT PORTC
  20. #define GPS_DIS _BV(PC6)
  21. #define GPS_DIS_DDR DDRC
  22. #define LEDR_PORT PORTA
  23. #define LEDR _BV(PA6)
  24. #define LEDR_DDR DDRA
  25. #define SD_CS_PORT PORTB
  26. #define SD_CS _BV(PB4)
  27. #define SD_CS_DDR DDRB
  28. #define SD_PWROFF_PORT PORTB
  29. #define SD_PWROFF _BV(PB3)
  30. #define SD_PWROFF_DDR DDRB
  31. #define SD_PWROFF_PIN PINB
  32. #define SD_CD _BV(PB1)
  33. #define SD_CD_PIN PINB
  34. #define SD_WP _BV(PB2)
  35. #define SD_WP_PIN PINB
  36. #define POWER_ON _BV(PA3)
  37. #define POWER_ON_PORT PORTA
  38. #define POWER_ON_DDR DDRA
  39. #define POWER_SW _BV(PC7)
  40. #define POWER_SW_PIN PINC
  41. #define LEDG_PORT 1 /* expander */
  42. #define LEDG _BV(4)
  43. #define LEDB_PORT 1 /* expander */
  44. #define LEDB _BV(5)
  45. /* on/off macros */
  46. #define BEEP_ON() {BUZZER_PORT |= BUZZER;}
  47. #define BEEP_OFF() {BUZZER_PORT &= ~BUZZER;}
  48. #define LEDR_ON() {LEDR_PORT |= LEDR;}
  49. #define LEDR_OFF() {LEDR_PORT &= ~LEDR;}
  50. #define LEDG_ON() expander_set_bit(LEDG_PORT, LEDG, 1)
  51. #define LEDG_OFF() expander_set_bit(LEDG_PORT, LEDG, 0)
  52. #define LEDB_ON() expander_set_bit(LEDB_PORT, LEDB, 1)
  53. #define LEDB_OFF() expander_set_bit(LEDB_PORT, LEDB, 0)
  54. #define GPS_ON() {GPS_DIS_PORT &= ~GPS_DIS;}
  55. #define GPS_OFF() {GPS_DIS_PORT |= GPS_DIS;}
  56. #define POWEROFF() {POWER_ON_PORT &= ~POWER_ON;}
  57. #define POWERON() {POWER_ON_PORT |= POWER_ON;}
  58. #define POWER_SW_PRESSED() (POWER_SW_PIN & POWER_SW)
  59. #define FLAGS GPIOR0 /* Status flags and bit definitions */
  60. #define F_POW 0x80 /* Power */
  61. #define F_POWEROFF 0x10 /* In process of switching off */
  62. #define F_GPSOK 0x08 /* GPS data valid */
  63. #define F_SYNC 0x04 /* Sync request */
  64. #define F_FILEOPEN 0x02 /* File is open, logging in progress */
  65. #define F_LVD 0x01 /* Low battery detect */
  66. /* System.global_error vals */
  67. #define ERROR_NO 0
  68. #define ERROR_I2C 1
  69. #define ERROR_I2C_TIMEOUT 2
  70. /* System.status vals */
  71. #define STATUS_NO_POWER 0
  72. #define STATUS_NO_DISK 1
  73. #define STATUS_NO_GPS 2
  74. #define STATUS_OK 3
  75. #define STATUS_DISK_ERROR 4
  76. #define STATUS_FILE_WRITE_ERROR 5
  77. #define STATUS_FILE_SYNC_ERROR 6
  78. #define STATUS_FILE_CLOSE_ERROR 7
  79. #define STATUS_FILE_OPEN_ERROR 8
  80. /* Keyboard */
  81. #define K_UP _BV(1)
  82. #define K_DOWN _BV(3)
  83. #define K_LEFT _BV(2)
  84. #define K_RIGHT _BV(0)
  85. #define K_POWER _BV(4)
  86. /* System.location_valid values */
  87. #define LOC_INVALID 0
  88. #define LOC_VALID 1
  89. #define LOC_VALID_NEW 2
  90. #define ms(x) (x/10)
  91. struct timers {
  92. unsigned int owire;
  93. unsigned int beep;
  94. unsigned int recv_timeout;
  95. unsigned int system_log;
  96. unsigned int lcd;
  97. };
  98. struct system_s {
  99. struct timers timers;
  100. unsigned int global_error;
  101. unsigned char status;
  102. float bat_volt;
  103. float temperature;
  104. unsigned char temperature_ok;
  105. unsigned char satellites_used;
  106. unsigned char display_state;
  107. unsigned char location_valid;
  108. unsigned char keypress;
  109. unsigned char working_mode;
  110. };
  111. struct location_s {
  112. float lon;
  113. float lat;
  114. float alt;
  115. time_t time;
  116. };
  117. extern volatile struct system_s System;
  118. extern struct location_s location;
  119. extern time_t utc;
  120. static inline void atomic_set_uint(volatile unsigned int *volatile data, unsigned int value) __attribute__((always_inline));
  121. static inline void atomic_set_uint(volatile unsigned int *volatile data, unsigned int value){
  122. cli();
  123. *data = value;
  124. sei();
  125. }
  126. static inline unsigned int atomic_get_uint(volatile unsigned int *volatile data) __attribute__((always_inline));
  127. static inline unsigned int atomic_get_uint(volatile unsigned int *volatile data){
  128. unsigned int ret;
  129. cli();
  130. ret = *data;
  131. sei();
  132. return ret;
  133. }
  134. #define set_timer(timer,val) set_timer_counts(timer, ms(val))
  135. #define set_timer_counts(timer,val) atomic_set_uint(&System.timers.timer, val)
  136. #define timer_expired(timer) !atomic_get_uint(&System.timers.timer)
  137. void disk_timerproc (void); /* mmc.h */
  138. char *get_iso_time(time_t time, unsigned char local);
  139. void close_files(unsigned char flush_logs);
  140. unsigned char getkey(void);