2023-11-07 01:11:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Adafruit_MCP23X17.h>
|
2023-11-07 21:26:15 +01:00
|
|
|
#include <ArduinoJson.h>
|
2023-11-07 01:11:12 +01:00
|
|
|
#include <Preferences.h>
|
2023-11-30 22:38:01 +01:00
|
|
|
#include <freertos/FreeRTOS.h>
|
|
|
|
#include <freertos/task.h>
|
2023-11-13 20:02:58 +01:00
|
|
|
|
2023-11-30 22:56:50 +01:00
|
|
|
#include <mutex>
|
2023-11-30 22:38:01 +01:00
|
|
|
#include <utils.hpp>
|
2023-11-07 01:11:12 +01:00
|
|
|
|
2023-11-26 00:51:54 +01:00
|
|
|
extern Adafruit_MCP23X17 mcp1;
|
|
|
|
#ifdef IS_BTCLOCK_S3
|
|
|
|
extern Adafruit_MCP23X17 mcp2;
|
|
|
|
#endif
|
2023-11-07 01:11:12 +01:00
|
|
|
extern Preferences preferences;
|
2023-11-13 20:02:58 +01:00
|
|
|
extern std::mutex mcpMutex;
|
2023-11-07 21:26:15 +01:00
|
|
|
|
|
|
|
const PROGMEM int SCREEN_BLOCK_HEIGHT = 0;
|
|
|
|
const PROGMEM int SCREEN_MSCW_TIME = 1;
|
|
|
|
const PROGMEM int SCREEN_BTC_TICKER = 2;
|
|
|
|
const PROGMEM int SCREEN_TIME = 3;
|
|
|
|
const PROGMEM int SCREEN_HALVING_COUNTDOWN = 4;
|
2023-11-10 19:52:06 +01:00
|
|
|
const PROGMEM int SCREEN_MARKET_CAP = 5;
|
|
|
|
|
2023-11-07 21:26:15 +01:00
|
|
|
const PROGMEM int SCREEN_COUNTDOWN = 98;
|
|
|
|
const PROGMEM int SCREEN_CUSTOM = 99;
|
2023-11-10 19:52:06 +01:00
|
|
|
const int SCREEN_COUNT = 6;
|
2023-11-30 22:38:01 +01:00
|
|
|
const PROGMEM int screens[SCREEN_COUNT] = {
|
|
|
|
SCREEN_BLOCK_HEIGHT, SCREEN_MSCW_TIME, SCREEN_BTC_TICKER,
|
|
|
|
SCREEN_TIME, SCREEN_HALVING_COUNTDOWN, SCREEN_MARKET_CAP};
|
2023-11-13 12:27:34 +01:00
|
|
|
const int usPerSecond = 1000000;
|
|
|
|
const int usPerMinute = 60 * usPerSecond;
|
2023-11-07 21:26:15 +01:00
|
|
|
|
|
|
|
struct SpiRamAllocator {
|
2023-11-30 22:38:01 +01:00
|
|
|
void *allocate(size_t size) {
|
2023-11-07 21:26:15 +01:00
|
|
|
return heap_caps_malloc(size, MALLOC_CAP_SPIRAM);
|
|
|
|
}
|
|
|
|
|
2023-11-30 22:38:01 +01:00
|
|
|
void deallocate(void *pointer) { heap_caps_free(pointer); }
|
2023-11-07 21:26:15 +01:00
|
|
|
|
2023-11-30 22:38:01 +01:00
|
|
|
void *reallocate(void *ptr, size_t new_size) {
|
2023-11-07 21:26:15 +01:00
|
|
|
return heap_caps_realloc(ptr, new_size, MALLOC_CAP_SPIRAM);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
using SpiRamJsonDocument = BasicJsonDocument<SpiRamAllocator>;
|