-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rtang
authored and
rtang
committed
Jan 4, 2014
1 parent
d643724
commit c2ff858
Showing
17 changed files
with
379 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#if !defined(_SX_SYSTEM_H_) | ||
#define _SX_SYSTEM_H_ | ||
#define _SX_SYSTEM_H_ | ||
|
||
#define SX_SYSTEM_DELAY_MS (100) | ||
#define SX_SYSTEM_AUDIO_SOURCE_DELAY_MS (400) | ||
#define SX_SYSTEM_DELAY_MS (100) | ||
#define SX_SYSTEM_AUDIO_SOURCE_DELAY_MS (400) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
#if !defined(_SX_DESC_H_) | ||
#define _SX_DESC_H_ | ||
|
||
#include "sx_types.h" | ||
|
||
typedef struct sSX_DESC | ||
{ | ||
UINT8 *data; | ||
#define _SX_DESC_H_ | ||
|
||
#include "sx_types.h" | ||
|
||
typedef struct sSX_DESC | ||
{ | ||
UINT8 *data; | ||
UINT32 data_len; | ||
struct sSX_DESC *next; | ||
|
||
} sSX_DESC; | ||
|
||
extern sSX_DESC * sx_desc_get( | ||
void | ||
); | ||
|
||
extern void sx_desc_put( | ||
sSX_DESC *desc | ||
); | ||
|
||
struct sSX_DESC *next; | ||
|
||
} sSX_DESC; | ||
|
||
extern sSX_DESC * sx_desc_get( | ||
void | ||
); | ||
|
||
extern void sx_desc_put( | ||
sSX_DESC *desc | ||
); | ||
|
||
#endif // _SX_DESC_H_ |
Oops, something went wrong.