startup.h 250 B

12345678910111213
  1. #pragma once
  2. #include "furi.h"
  3. #include "tests/test_index.h"
  4. typedef struct {
  5. FlipperApplication app;
  6. const char* name;
  7. } FlipperStartupApp;
  8. const FlipperStartupApp FLIPPER_STARTUP[] = {
  9. {.app = flipper_test_app, .name = "test app"}
  10. };