mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 04:34:43 +04:00
* Remove BLE from BadUSB * Add the BadBLE app * Format images to 1-bit B/W * BadUsb: remove dead bits and pieces Co-authored-by: あく <alleteam@gmail.com>
30 lines
888 B
C
30 lines
888 B
C
#pragma once
|
|
|
|
#include <gui/scene_manager.h>
|
|
|
|
// Generate scene id and total number
|
|
#define ADD_SCENE(prefix, name, id) BadBleScene##id,
|
|
typedef enum {
|
|
#include "bad_ble_scene_config.h"
|
|
BadBleSceneNum,
|
|
} BadBleScene;
|
|
#undef ADD_SCENE
|
|
|
|
extern const SceneManagerHandlers bad_ble_scene_handlers;
|
|
|
|
// Generate scene on_enter handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) void prefix##_scene_##name##_on_enter(void*);
|
|
#include "bad_ble_scene_config.h"
|
|
#undef ADD_SCENE
|
|
|
|
// Generate scene on_event handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) \
|
|
bool prefix##_scene_##name##_on_event(void* context, SceneManagerEvent event);
|
|
#include "bad_ble_scene_config.h"
|
|
#undef ADD_SCENE
|
|
|
|
// Generate scene on_exit handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) void prefix##_scene_##name##_on_exit(void* context);
|
|
#include "bad_ble_scene_config.h"
|
|
#undef ADD_SCENE
|