portal_of_flipper_i.c 378 B

12345678910111213141516171819
  1. #include "portal_of_flipper_i.h"
  2. #include <furi.h>
  3. #define TAG "PoF"
  4. void pof_start(PoFApp* app) {
  5. furi_assert(app);
  6. // app->pof_usb = pof_usb_start(app->virtual_portal);
  7. app->pof_usb = pof_usb_start_xbox360(app->virtual_portal);
  8. }
  9. void pof_stop(PoFApp* app) {
  10. furi_assert(app);
  11. // pof_usb_stop(app->pof_usb);
  12. pof_usb_stop_xbox360(app->pof_usb);
  13. }