1 #include "app.h" 2 #include "btstack_port.h" 3 4 /* Application State Machine */ APP_Initialize(void)5void APP_Initialize ( void ) { 6 APP_Debug_Initialize(); 7 BTSTACK_Initialize(); 8 } 9 APP_Tasks(void)10void APP_Tasks ( void ) { 11 BTSTACK_Tasks(); 12 } 13 14