+Add options +Add help +Add support for multiple identical devices *New README *Bug fixes
12 lines
296 B
C++
12 lines
296 B
C++
#ifndef SYSTEM_HPP
|
|
#define SYSTEM_HPP
|
|
|
|
#define ANNOUNCE_COMMAND "aseqdump -p System:1"
|
|
#define LIST_COMMAND "aseqdump -l | tail -n +2 | cut -c10-42 | tr -s ' '"
|
|
#define LIST_EXTENDED_COMMAND "aseqdump -l | tail -n +2 | cut -c-42"
|
|
|
|
void device_check();
|
|
|
|
void announce_loop();
|
|
|
|
#endif //SYSTEM_HPP
|