1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef app_h #define app_h #include "../frame.h" #include "../../lib/config.h" /** * Run the application */ void runApp(Config config); /** * Used to handle received frame from mobile */ void *handleMessage(void *args); #endif