You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
330 B
25 lines
330 B
3 years ago
|
|
||
|
#ifndef __SIM900A_H
|
||
|
#define __SIM900A_H
|
||
|
|
||
|
|
||
|
#include "delay.h"
|
||
|
#include "key.h"
|
||
|
#include "sys.h"
|
||
|
#include "usart.h"
|
||
|
#include "string.h"
|
||
|
#include <wchar.h>
|
||
|
#include "math.h"
|
||
|
#include "stdio.h"
|
||
|
|
||
|
|
||
|
void DelaySec(int sec);
|
||
|
int SIM900aAnswer(const char *restrict);
|
||
|
void SIM900aInit(void);
|
||
|
void SIM900aSend(char* str);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|