]> git.kernelconcepts.de Git - metawatch.git/blob - metawatch_protocol.h
Fix and extend get_light_sensor and get_voltage, move system clock query out of libra...
[metawatch.git] / metawatch_protocol.h
1 /*
2  * (c) 2011 Siegen, Germany by Nils Faerber <nils.faerber@kernelconcepts.de>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef _MW_PROT_H
21 #define _MW_PROT_H
22
23 #define MW_SOF                          0x01
24
25 /* general */
26 #define MW_GET_DEVICE_TYPE              0x01
27 #define MW_GET_DEVICE_TYPE_RSP          0x02
28
29 #define MW_DEVICE_TYPE_RESERVED         0x00
30 #define MW_DEVICE_TYPE_ANA_DIGI         0x01
31 #define MW_DEVICE_TYPE_DIGITAL          0x02
32 #define MW_DEVICE_TYPE_DEVB_DIGI        0x03
33 #define MW_DEVICE_TYPE_DEVB_ANA_DIGI    0x04
34
35 #define MW_GET_INFORMATION_STRING       0x03
36 #define MW_GET_INFORMATION_STRING_RSP   0x04
37
38 /* specific for ana-digi version */
39 #define MW_UPDATE_OLED_DISPLAY_MSG      0x10
40 #define MW_WRITE_OLED_IDLE_DISPLAY_MSG  0x11
41 #define MW_WRITE_OLED_SCROLL_BUFFER_MSG 0x15
42 #define MW_ENABLE_OLED_DISPLAY_MSG      0x16
43 #define MW_ADVANCE_WATCH_HANDS          0x20
44
45 #define MW_SET_VIBRATE_MODE             0x23
46
47 #define MW_SET_REAL_TIME_CLOCK          0x26
48 #define MW_GET_REAL_TIME_CLOCK          0x27
49 #define MW_GET_REAL_TIME_CLOCK_RSP      0x28
50
51 #define MW_RTC_CLOCK_12HR               0x00
52 #define MW_RTC_CLOCK_24HR               0x01
53 #define MW_RTC_DATE_MMDD                0x00
54 #define MW_RTC_DATE_DDMM                0x01
55
56 #define MW_NVAL_OPERATION               0x30
57 #define MW_NVAL_OPERATION_RSP           0x31
58
59 #define MW_NVAL_OPERATION_READ          0x01
60 #define MW_NVAL_OPERATION_WRITE         0x02
61 #define MW_NVAL_TIME_FORMAT             0x2009
62 #define MW_NVAL_DATE_FORMAT             0x200a
63
64
65 #define MW_RESERVED                     0x32
66 #define MW_STATUS_CHANGE_EVENT          0x33
67 #define MW_BUTTON_EVENT_MESSAGE         0x34
68
69 /* specific for digital version */
70 #define MW_WRITE_BUFFER                 0x40
71 #define MW_CONFIGURE_MODE               0x41
72 #define MW_CONFIGURE_IDLE_BUFFER_SIZE   0x42
73 #define MW_UPDATE_DISPLAY               0x43
74 #define MW_LOAD_TEMPLATE                0x44
75 #define MW_RESERVED2                    0x45
76 #define MW_ENABLE_BUTTON                0x46
77 #define MW_DISABLE_BUTTON               0x47
78 #define MW_READ_BUTTON_CONFIG           0x48
79 #define MW_READ_BUTTON_CONFIG_RSP       0x49
80 #define MW_RESERVED3                    0x4a
81
82 #define MW_BATTERY_CONFIG_MSG           0x53
83 #define MW_LOW_BATTERY_WARNING_MSG      0x54
84 #define MW_LOW_BATTERY_BT_OFF_MSG       0x55
85 #define MW_READ_BATTERY_VOLTAGE_MSG     0x56
86 #define MW_READ_BATTERY_VOLTAGE_RSP     0x57
87 #define MW_READ_LIGHT_SENSOR_MSG        0x58
88 #define MW_READ_LIGHT_SENSOR_RSP        0x59
89 #define MW_ACCELEROMETER                0xea
90
91
92 /* screen modes */
93 #define MW_SCREEN_MODE_IDLE             0x00
94 #define MW_SCREEN_MODE_APPLICATION      0x01
95 #define MW_SCREEN_MODE_NOTIFICATION     0x02
96 #define MW_SCREEN_MODE_SCROLL           0x03
97
98
99 /* button definitions */
100 #define MW_BUTTON_A                     0x00
101 #define MW_BUTTON_B                     0x01
102 #define MW_BUTTON_C                     0x02
103 #define MW_BUTTON_D                     0x03
104 #define MW_BUTTON_RES4                  0x04
105 #define MW_BUTTON_E                     0x05
106 #define MW_BUTTON_F                     0x06
107 #define MW_BUTTON_PULLSW                0x07
108
109 /* button events */
110 #define MW_BUTTON_IMMEDIATE             0x00
111 #define MW_BUTTON_PRESS_AND_RELEASE     0x01
112 #define MW_BUTTON_HOLD_RELEASE          0x02
113 #define MW_BUTTON_LONG_HOLD_RELEASE     0x03
114
115 /* OLEDs */
116
117 #define MW_OLED_UPPER                   0x00
118 #define MW_OLED_LOWER                   0x01
119
120 #endif
121