32 lines
694 B
C
32 lines
694 B
C
/* This software is licensed under the MIT License: https://github.com/spacehuhntech/usbnova */
|
|
|
|
#pragma once
|
|
|
|
#define VERSION "1.2.0"
|
|
|
|
// ===== DEBUG Settings ===== //
|
|
//#define ENABLE_DEBUG
|
|
#define DEBUG_PORT Serial
|
|
#define DEBUG_BAUD 115200
|
|
|
|
// ===== Storage Settings ===== //
|
|
#define READ_BUFFER 2048
|
|
|
|
// ===== LED Settings ===== //
|
|
#define LED_PIN 4
|
|
|
|
// ===== SD Settings ===== //
|
|
#define SD_CS 1
|
|
#define SD_READ_BUFFER 2048
|
|
|
|
// ===== SELECTOR SWITCH ===== //
|
|
#define SELECTOR_1 A7
|
|
#define SELECTOR_2 A6
|
|
#define SELECTOR_3 A3
|
|
|
|
// ===== Parser Settings ===== //
|
|
#define CASE_SENSETIVE false
|
|
#define DEFAULT_SLEEP 5
|
|
|
|
// ===== Other Stuff ====== //
|
|
#define PREFERENCES_PATH "preferences.json" |