-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathgsmConfig.h
More file actions
24 lines (20 loc) · 747 Bytes
/
Copy pathgsmConfig.h
File metadata and controls
24 lines (20 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _GSMCONFIG_H
#define _GSMCONFIG_H
// board config
#define _GSM_DEBUG 1
#define _GSM_USART USART3
#define _GSM_POWERKEY_GPIO GSM_KEY_GPIO_Port
#define _GSM_POWERKEY_PIN GSM_KEY_Pin
// enable/disable
#define _GSM_CALL_ENABLE 1
#define _GSM_MSG_ENABLE 1
#define _GSM_DTMF_DETECT_ENABLE 1
#define _GSM_GPRS_ENABLE 1
#define _GSM_BLUETOOTH_ENABLE 0 // not support yet
// do not change
#define _GSM_AT_MAX_ANSWER_ITEMS 5
#define _GSM_TASKSIZE 512
#define _GSM_BUFFTASKSIZE 128
#define _GSM_RXSIZE 512
#define _GSM_RXTIMEOUT 10
#endif