-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.h
More file actions
29 lines (24 loc) · 1.69 KB
/
Copy pathMain.h
File metadata and controls
29 lines (24 loc) · 1.69 KB
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
/*****< main.c >***************************************************************/
/* Copyright 2001 - 2012 Stonestreet One. */
/* All Rights Reserved. */
/* */
/* MAIN - Stonestreet One main sample application header. */
/* */
/* Author: Tim Cook */
/* */
/*** MODIFICATION HISTORY *****************************************************/
/* */
/* mm/dd/yy F. Lastname Description of Modification */
/* -------- ----------- ------------------------------------------------*/
/* 10/28/11 T. Cook Initial creation. */
/******************************************************************************/
#ifndef __MAIN_H__
#define __MAIN_H__
#include "SS1BTPS.h" /* Main SS1 Bluetooth Stack Header. */
#include "BTPSKRNL.h" /* BTPS Kernel Prototypes/Constants. */
/* Error Return Codes. */
/* Error Codes that are smaller than these (less than -1000) are */
/* related to the Bluetooth Protocol Stack itself (see BTERRORS.H). */
#define APPLICATION_ERROR_INVALID_PARAMETERS (-1000)
#define APPLICATION_ERROR_UNABLE_TO_OPEN_STACK (-1001)
#endif