]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - tas2557sw-android/tas2557dm-ftc.git/blob - system.h
Correct copyright information
[tas2557sw-android/tas2557dm-ftc.git] / system.h
1 /*\r
2 ** =============================================================================\r
3 ** Copyright (c) 2016  Texas Instruments Inc.\r
4 **\r
5 ** File:\r
6 **     system.h\r
7 **\r
8 ** Description:\r
9 **     header file for system.c\r
10 **\r
11 ** =============================================================================\r
12 */\r
13 \r
14 #ifndef SYSTEM_H_\r
15 #define SYSTEM_H_\r
16 \r
17 #include <stdint.h>\r
18 #include <sys/types.h>\r
19 \r
20 #define AUDIO_PLAYER "/system/bin/tinyplay"\r
21 #define AUDIO_MIXER "/system/bin/tinymix"\r
22 \r
23 // Hypothetical System Functions\r
24 extern pid_t sys_play_wav(char * pFile, char * pMode);\r
25 extern void sys_stop_wav(pid_t nProcess);\r
26 extern void sys_delay(uint32_t delay_ms);\r
27 extern double sys_get_ambient_temp(void);\r
28 extern int sys_is_valid(char * pFile);\r
29 \r
30 #endif /* SYSTEM_H_ */\r