aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/Source/d_bt.c
blob: 6e3e47da23aaae67f73a25667395ebc36367ed28 (plain)
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
//
// Date init       14.12.2004
//
// Revision date   $Date:: 24-04-08 14:33                                    $
//
// Filename        $Workfile:: d_bt.c                                        $
//
// Version         $Revision:: 3                                             $
//
// Archive         $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/d_bt.c $
//
// Platform        C
//


#include  "stdconst.h"
#include  "modules.h"
#include  "m_sched.h"
#include  "d_bt.h"
#include  "d_bt.r"
#include  <string.h>

enum
{
  BT_FAST_TIMEOUT   = 500,
  BT_CMD_TIMEOUT_2S = 2000,
  BT_TIMEOUT_30S    = 30000
};

#define   SETTimeout(TOut)              CmdTOut      = 0;\
                                        CmdTOutLimit = TOut
#define   RESETTimeout                  CmdTOut      = 0

static    UWORD CmdTOut;
static    UWORD CmdTOutLimit;

void      dBtInit(void)
{
  SETTimeout(0);
  BTInit;
  BTInitPIOPins;			
}

void      dBtSetBcResetPinLow(void)
{
  BTSetResetLow;			/* Set Reset pin to Bluecore chip low */
}

void      dBtSetBcResetPinHigh(void)
{
  BTSetResetHigh;			/* Set Reset pin to Bluecore chip high */
}

void      dBtStartADConverter(void)
{
  BTStartADConverter;
}

void      dBtInitReceive(UBYTE *InputBuffer, UBYTE Mode)
{
  BTInitReceiver(InputBuffer, Mode);
}

void      dBtSetArm7CmdSignal(void)
{
  BT_SetArm7CmdPin;
}

void      dBtClearArm7CmdSignal(void)
{
  BT_ClearArm7CmdPin;	
}

UBYTE     dBtGetBc4CmdSignal(void)
{
  UWORD ADValue;

  BTReadADCValue(ADValue);

  if (ADValue > 0x200)
  {
    ADValue = 1;
  }
  else
  {
    ADValue = 0;
  }	
  return(ADValue);
}


UWORD     dBtTxEnd(void)
{
  UWORD   TxEnd;

  REQTxEnd(TxEnd);

  return(TxEnd);

}

UWORD     dBtCheckForTxBuf(void)
{
  UWORD   AvailBytes;

  AVAILOutBuf(AvailBytes);

  return(AvailBytes);
}

void      dBtSendMsg(UBYTE *OutputBuffer, UBYTE BytesToSend, UWORD MsgSize)
{

  /* Used for sending a complete message that can be placed in the buffer -     */
  /* or to send the first part of a message that cannot be placed in the buffer */
  /* once (bigger than the buffer)                                              */
  BTSendMsg(OutputBuffer,BytesToSend, MsgSize);
}

void      dBtSend(UBYTE *OutputBuffer, UBYTE BytesToSend)
{

  /* Used for continous stream of data to be send */
  BTSend(OutputBuffer, BytesToSend);
}

UWORD     dBtReceivedData(UWORD *pLength, UWORD *pBytesToGo)
{
  UWORD    RtnVal;

  RtnVal = TRUE;
  BTReceivedData(pLength, pBytesToGo);
  if (*pLength)
  {
    SETTimeout(0);
  }
  else
  {
    if (CmdTOut < CmdTOutLimit)
    {
      CmdTOut++;
      if (CmdTOut >= CmdTOutLimit)
      {
        SETTimeout(0);
        RtnVal = FALSE;
      }
    }
  }
  return(RtnVal);
}

void      dBtResetTimeOut(void)
{
  RESETTimeout;
}

void      dBtClearTimeOut(void)
{
  SETTimeout(0);
}

void      dBtSendBtCmd(UBYTE Cmd, UBYTE Param1, UBYTE Param2, UBYTE *pBdAddr, UBYTE *pName, UBYTE *pCod, UBYTE *pPin)
{
  UBYTE   Tmp;
  UBYTE   SendData;
  UWORD   CheckSumTmp;
  UBYTE   BtOutBuf[128];
  UBYTE   BtOutCnt;

  SendData = 0;
  BtOutCnt = 0;
  switch (Cmd)
  {
    case MSG_BEGIN_INQUIRY:
    {
      BtOutBuf[BtOutCnt++] = MSG_BEGIN_INQUIRY;
      BtOutBuf[BtOutCnt++] = Param1;
      BtOutBuf[BtOutCnt++] = 0x00;
      BtOutBuf[BtOutCnt++] = Param2;
      BtOutBuf[BtOutCnt++] = 0x00;
      BtOutBuf[BtOutCnt++] = 0x00;
      BtOutBuf[BtOutCnt++] = 0x00;
      BtOutBuf[BtOutCnt++] = 0x00;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_CANCEL_INQUIRY:
    {
      BtOutBuf[BtOutCnt++] = MSG_CANCEL_INQUIRY;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_CONNECT:
    {
      BtOutBuf[BtOutCnt++] = MSG_CONNECT;
      memcpy(&(BtOutBuf[BtOutCnt]), pBdAddr, SIZE_OF_BDADDR);
      BtOutCnt            += SIZE_OF_BDADDR;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_OPEN_PORT:
    {
      BtOutBuf[BtOutCnt++] = MSG_OPEN_PORT;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_LOOKUP_NAME:
    {
      BtOutBuf[BtOutCnt++] = MSG_LOOKUP_NAME;
      memcpy(&(BtOutBuf[BtOutCnt]), pBdAddr, SIZE_OF_BDADDR);
      BtOutCnt            += SIZE_OF_BDADDR;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_ADD_DEVICE:
    {
      BtOutBuf[BtOutCnt++] = MSG_ADD_DEVICE;
      memcpy(&(BtOutBuf[BtOutCnt]), pBdAddr, SIZE_OF_BDADDR);
      BtOutCnt += SIZE_OF_BDADDR;
      memcpy(&(BtOutBuf[BtOutCnt]), pName, SIZE_OF_BT_NAME);
      BtOutCnt += SIZE_OF_BT_NAME;
      memcpy(&(BtOutBuf[BtOutCnt]), pCod, SIZE_OF_CLASS_OF_DEVICE);
      BtOutCnt += SIZE_OF_CLASS_OF_DEVICE;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_REMOVE_DEVICE:
    {
      BtOutBuf[BtOutCnt++] = MSG_REMOVE_DEVICE;
      memcpy(&(BtOutBuf[BtOutCnt]), pBdAddr, SIZE_OF_BDADDR);
      BtOutCnt            += SIZE_OF_BDADDR;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_DUMP_LIST:
    {
      BtOutBuf[BtOutCnt++] = MSG_DUMP_LIST;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_CLOSE_CONNECTION:
    {
      BtOutBuf[BtOutCnt++] = MSG_CLOSE_CONNECTION;
      BtOutBuf[BtOutCnt++] = Param1;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_ACCEPT_CONNECTION:
    {
      BtOutBuf[BtOutCnt++] = MSG_ACCEPT_CONNECTION;
      BtOutBuf[BtOutCnt++] = Param1;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_PIN_CODE:
    {
      BtOutBuf[BtOutCnt++] = MSG_PIN_CODE;
      memcpy(&(BtOutBuf[BtOutCnt]), pBdAddr, SIZE_OF_BDADDR);
      BtOutCnt            += SIZE_OF_BDADDR;
      memcpy(&(BtOutBuf[BtOutCnt]), pPin, SIZE_OF_BT_PINCODE);
      BtOutCnt            += SIZE_OF_BT_PINCODE;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_OPEN_STREAM:
    {
      BtOutBuf[BtOutCnt++] = MSG_OPEN_STREAM;
      BtOutBuf[BtOutCnt++] = Param1;

      SendData = 1;
      SETTimeout(BT_TIMEOUT_30S);
    }
    break;

    case MSG_START_HEART:
    {
      BtOutBuf[BtOutCnt++] = MSG_START_HEART;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_SET_DISCOVERABLE:
    {
      BtOutBuf[BtOutCnt++] = MSG_SET_DISCOVERABLE;
      BtOutBuf[BtOutCnt++] = Param1;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_CLOSE_PORT:
    {
      BtOutBuf[BtOutCnt++] = MSG_CLOSE_PORT;
      BtOutBuf[BtOutCnt++] = 0x03;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_SET_FRIENDLY_NAME:
    {
      BtOutBuf[BtOutCnt++] = MSG_SET_FRIENDLY_NAME;
      memcpy(&(BtOutBuf[BtOutCnt]), pName, SIZE_OF_BT_NAME);
      BtOutCnt += SIZE_OF_BT_NAME;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_GET_LINK_QUALITY:
    {
      BtOutBuf[BtOutCnt++] = MSG_GET_LINK_QUALITY;
      BtOutBuf[BtOutCnt++] = Param1;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_SET_FACTORY_SETTINGS:
    {
      BtOutBuf[BtOutCnt++] = MSG_SET_FACTORY_SETTINGS;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_GET_LOCAL_ADDR:
    {
      BtOutBuf[BtOutCnt++] = MSG_GET_LOCAL_ADDR;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_GET_FRIENDLY_NAME:
    {
      BtOutBuf[BtOutCnt++] = MSG_GET_FRIENDLY_NAME;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_GET_DISCOVERABLE:
    {
      BtOutBuf[BtOutCnt++] = MSG_GET_DISCOVERABLE;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_GET_PORT_OPEN:
    {
      BtOutBuf[BtOutCnt++] = MSG_GET_PORT_OPEN;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_GET_VERSION:
    {
      BtOutBuf[BtOutCnt++] = MSG_GET_VERSION;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_GET_BRICK_STATUSBYTE:
    {
      BtOutBuf[BtOutCnt++] = MSG_GET_BRICK_STATUSBYTE;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;

    case MSG_SET_BRICK_STATUSBYTE:
    {
      BtOutBuf[BtOutCnt++] = MSG_SET_BRICK_STATUSBYTE;
      BtOutBuf[BtOutCnt++] = Param1;
      BtOutBuf[BtOutCnt++] = Param2;

      SendData = 1;
      SETTimeout(BT_FAST_TIMEOUT);
    }
    break;
  }

  if (SendData == 1)
  {
    CheckSumTmp = 0;
    for(Tmp = 0; Tmp < BtOutCnt; Tmp++)
    {
      CheckSumTmp += BtOutBuf[Tmp];
    }
    CheckSumTmp = (UWORD) (1 + (0xFFFF - CheckSumTmp));
    BtOutBuf[BtOutCnt++] = (UBYTE)((CheckSumTmp & 0xFF00)>>8);
    BtOutBuf[BtOutCnt++] = (UBYTE)(CheckSumTmp & 0x00FF);
    BTSendMsg(BtOutBuf, BtOutCnt, (UWORD)BtOutCnt);
  }
}



void      dBtExit(void)
{
  BTExit;
}