| 123456789101112131415161718 |
- #pragma once
- #include <flip_social.h>
- // Below added by Derek Jamison
- // FURI_LOG_DEV will log only during app development. Be sure that Settings/System/Log Device is "LPUART"; so we dont use serial port.
- #ifdef DEVELOPMENT
- #define FURI_LOG_DEV(tag, format, ...) furi_log_print_format(FuriLogLevelInfo, tag, format, ##__VA_ARGS__)
- #define DEV_CRASH() furi_crash()
- #else
- #define FURI_LOG_DEV(tag, format, ...)
- #define DEV_CRASH()
- #endif
- typedef enum FlipSocialCustomEvent FlipSocialCustomEvent;
- enum FlipSocialCustomEvent
- {
- FlipSocialCustomEventProcess,
- };
|