forked from nimaltd/gsm_v5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bluetooth.c
214 lines (206 loc) · 6.66 KB
/
Bluetooth.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#include "Sim80x.h"
#if (_SIM80X_USE_BLUETOOTH==1)
//#################################################################################################################
bool Bluetooth_SetPower(bool TurnOn)
{
uint8_t answer;
osDelay(100);
Bluetooth_GetStatus();
if(TurnOn == true)
{
if(Sim80x.Bluetooth.Status == BluetoothStatus_Initial)
{
answer = Sim80x_SendAtCommand("AT+BTPOWER=1\r\n",5000,2,"\r\nOK\r\n","\r\nERROR\r\n");
if(answer == 1)
{
for(uint8_t i=0 ;i<50 ;i++)
{
osDelay(100);
if(Bluetooth_GetStatus()>BluetoothStatus_Initial)
{
Bluetooth_GetStatus();
return true;
}
}
}
}
else if(Sim80x.Bluetooth.Status == BluetoothStatus_Error)
{
return false;
}
else
{
Bluetooth_GetStatus();
return true;
}
}
else
{
for(uint8_t i=0 ;i<50 ;i++)
{
osDelay(100);
answer = Sim80x_SendAtCommand("AT+BTPOWER=0\r\n",5000,2,"\r\nOK\r\n","\r\nERROR\r\n");
if(Bluetooth_GetStatus()==BluetoothStatus_Initial)
{
Bluetooth_GetStatus();
return true;
}
}
return false;
}
return false;
}
//#################################################################################################################
bool Bluetooth_GetHostName(void)
{
uint8_t answer;
memset(Sim80x.Bluetooth.HostName,0,sizeof(Sim80x.Bluetooth.HostName));
memset(Sim80x.Bluetooth.HostAddress,0,sizeof(Sim80x.Bluetooth.HostAddress));
answer = Sim80x_SendAtCommand("AT+BTHOST?\r\n",1000,1,"\r\n+BTHOST:");
if((answer == 1) && (Sim80x.Bluetooth.HostName[0] != 0) && (Sim80x.Bluetooth.HostAddress[0] != 0))
return true;
else
return false;
}
//#################################################################################################################
bool Bluetooth_SetHostName(char *HostName)
{
uint8_t answer;
char str[32];
char strParam[32];
snprintf(str,sizeof(str),"AT+BTHOST=%s\r\n",HostName);
snprintf(strParam,sizeof(strParam),"AT+BTHOST=%s\r\r\nOK\r\n",HostName);
answer = Sim80x_SendAtCommand(str,1000,1,strParam);
if(answer == 1)
{
Bluetooth_GetHostName();
return true;
}
else
return false;
}
//#################################################################################################################
BluetoothStatus_t Bluetooth_GetStatus(void)
{
uint8_t answer;
answer = Sim80x_SendAtCommand("AT+BTSTATUS?\r\n",1000,1,"\r\n+BTSTATUS:");
if(answer == 1)
return Sim80x.Bluetooth.Status;
else
return BluetoothStatus_Error;
}
//#################################################################################################################
bool Bluetooth_AcceptPair(bool Accept)
{
uint8_t answer;
if(Accept == true)
{
answer = Sim80x_SendAtCommand("AT+BTPAIR:1,1\r\n",1000,2,"\r\nOK\r\n","\r\nERROR\r\n");
if(answer == 1)
return true;
else
return false;
}
else
{
answer = Sim80x_SendAtCommand("AT+BTPAIR:1,0\r\n",1000,2,"\r\nOK\r\n","\r\nERROR\r\n");
if(answer == 1)
return true;
else
return false;
}
}
//#################################################################################################################
bool Bluetooth_AcceptPairWithPass(char *Pass)
{
uint8_t answer;
char str[32];
snprintf(str,sizeof(str),"AT+BTPAIR:2,%s\r\n",Pass);
answer = Sim80x_SendAtCommand(str,1000,1,"\r\nOK\r\n");
if(answer == 1)
return true;
else
return false;
}
//#################################################################################################################
bool Bluetooth_SetAutoPair(bool Enable)
{
uint8_t answer;
if(Enable==true)
answer = Sim80x_SendAtCommand("AT+BTPAIRCFG=2\r\n",1000,2,"AT+BTPAIRCFG=2\r\r\nOK\r\n","AT+BTPAIRCFG=2\r\r\nERROR\r\n");
else
answer = Sim80x_SendAtCommand("AT+BTPAIRCFG=0\r\n",1000,2,"AT+BTPAIRCFG=2\r\r\nOK\r\n","AT+BTPAIRCFG=2\r\r\nERROR\r\n");
if(answer == 1)
return true;
else
return false;
}
//#################################################################################################################
bool Bluetooth_SetPairPassword(char *Pass)
{
uint8_t answer;
char str[32];
char strParam[32];
snprintf(str,sizeof(str),"AT+BTPAIRCFG=1,%s\r\n",Pass);
snprintf(strParam,sizeof(strParam),"AT+BTPAIRCFG=1,%s\r\r\nOK\r\n",Pass);
answer = Sim80x_SendAtCommand(str,1000,1,strParam);
if(answer == 1)
return true;
else
return false;
}
//#################################################################################################################
bool Bluetooth_Unpair(uint8_t Unpair_0_to_all)
{
uint8_t answer;
char str[32];
char strParam[32];
snprintf(str,sizeof(str),"AT+BTUNPAIR=%d\r\n",Unpair_0_to_all);
snprintf(strParam,sizeof(strParam),"AT+BTUNPAIR=%d\r\n",Unpair_0_to_all);
answer = Sim80x_SendAtCommand(str,1000,1,strParam);
if(answer == 1)
return true;
else
return false;
}
//#################################################################################################################
bool Bluetooth_GetVisibility(void)
{
Sim80x_SendAtCommand("AT+BTVIS?\r\n",1000,2,"\r\nOK\r\n","\r\nERROR\r\n");
return Sim80x.Bluetooth.Visibility;
}
//#################################################################################################################
void Bluetooth_SetVisibility(bool Visible)
{
char str[16];
snprintf(str,sizeof(str),"AT+BTVIS=%d\r\n",Visible);
Sim80x_SendAtCommand(str,1000,2,"\r\nOK\r\n","\r\nERROR\r\n");
}
//#################################################################################################################
void Bluetooth_SppAllowConnection(bool Accept)
{
char str[16];
snprintf(str,sizeof(str),"AT+BTACPT=%d\r\n",Accept);
Sim80x_SendAtCommand(str,1000,2,"\r\nOK\r\n","\r\nERROR\r\n");
}
//#################################################################################################################
bool Bluetooth_SppSend(char *DataString)
{
uint8_t answer;
char str[2];
answer = Sim80x_SendAtCommand("AT+BTSPPSEND\r\n",1000,2,"\r\r\n> ","\r\nERROR\r\n");
if(answer == 1)
{
Sim80x_SendString(DataString);
sprintf(str,"%c",26);
answer = Sim80x_SendAtCommand(str,1000,2,"\r\nSEND OK\r\n","\r\nERROR\r\n");
if(answer == 1)
return true;
else
return false;
}
else
return false;
}
//#################################################################################################################
#endif