| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- #pragma once
- #include <furi.h>
- #include <furi_hal.h>
- #include <furi_hal_serial_control.h>
- #include <furi_hal_serial.h>
- #include <gui/elements.h>
- #include <gui/gui.h>
- #include <gui/icon_i.h>
- #include <gui/modules/dialog_ex.h>
- #include <gui/view.h>
- #include <gui/view_dispatcher.h>
- #include <notification/notification.h>
- #include <notification/notification_messages.h>
- #include <storage/filesystem_api_defines.h>
- #include <storage/storage.h>
- #include "../helpers/camera_suite_custom_event.h"
- #ifdef FW_ORIGIN_Xtreme
- /**
- * Enable the following line for "Xtreme Firmware" & "Xtreme Apps" (Flipper-XFW).
- *
- * @see https://github.com/Flipper-XFW/Xtreme-Firmware
- * @see https://github.com/Flipper-XFW/Xtreme-Apps
- */
- #include <xtreme/xtreme.h>
- #define UART_CH (xtreme_settings.uart_esp_channel)
- #elif defined FW_ORIGIN_Momentum
- /**
- * Enable the following line for "Momentum Firmware" & "Momentum Apps".
- *
- * @see https://github.com/Next-Flip/Momentum-Firmware
- * @see https://github.com/Next-Flip/Momentum-Apps
- */
- #include <momentum/momentum.h>
- #define UART_CH (momentum_settings.uart_esp_channel)
- #elif defined FW_ORIGIN_RM
- /**
- * Enable the following line for "RogueMaster Firmware".
- *
- * @see https://github.com/RogueMaster/flipperzero-firmware-wPlugins
- */
- #include <cfw/cfw.h>
- #define UART_CH (cfw_settings.uart_esp_channel)
- #else
- #define UART_CH (FuriHalSerialIdUsart)
- #endif
- #define BITMAP_HEADER_LENGTH 62
- #define FRAME_BIT_DEPTH 1
- #define FRAME_BUFFER_LENGTH (2 * 1024)
- #define FRAME_HEIGHT 64
- #define FRAME_WIDTH 128
- #define HEADER_LENGTH 3 // 'Y', ':', and row identifier
- #define LAST_ROW_INDEX (2 * 1008)
- #define RING_BUFFER_LENGTH 19
- #define ROW_BUFFER_LENGTH 16
- static const unsigned char bitmap_header[BITMAP_HEADER_LENGTH] = {
- 0x42, 0x4D, 0x3E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x28, 0x00,
- 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x00};
- typedef enum {
- WorkerEventReserved = (1 << 0), // Reserved for StreamBuffer internal event
- WorkerEventStop = (1 << 1),
- WorkerEventRx = (1 << 2),
- } WorkerEventFlags;
- #define CAMERA_WORKER_EVENTS_MASK (WorkerEventStop | WorkerEventRx)
- // Forward declaration
- typedef void (*CameraSuiteViewCameraCallback)(CameraSuiteCustomEvent event, void* context);
- typedef struct CameraSuiteViewCamera {
- CameraSuiteViewCameraCallback callback;
- FuriStreamBuffer* camera_rx_stream;
- FuriHalSerialHandle* serial_handle;
- FuriThread* camera_worker_thread;
- NotificationApp* notification;
- View* view;
- void* context;
- } CameraSuiteViewCamera;
- typedef struct UartDumpModel {
- bool is_dithering_enabled;
- bool is_initialized;
- bool is_inverted;
- int rotation_angle;
- uint32_t orientation;
- uint8_t pixels[FRAME_BUFFER_LENGTH];
- uint8_t ringbuffer_index;
- uint8_t row_identifier;
- uint8_t row_ringbuffer[RING_BUFFER_LENGTH];
- } UartDumpModel;
- // Function Prototypes
- CameraSuiteViewCamera* camera_suite_view_camera_alloc();
- View* camera_suite_view_camera_get_view(CameraSuiteViewCamera* camera_suite_static);
- void camera_suite_view_camera_free(CameraSuiteViewCamera* camera_suite_static);
- void camera_suite_view_camera_set_callback(
- CameraSuiteViewCamera* camera_suite_view_camera,
- CameraSuiteViewCameraCallback callback,
- void* context);
|