23 lines
496 B
C
23 lines
496 B
C
/* This software is licensed under the MIT License: https://github.com/spacehuhntech/usbnova */
|
|
|
|
#pragma once
|
|
|
|
#define VERSION "0.0.1"
|
|
|
|
// ===== DEBUG Settings ===== //
|
|
#define ENABLE_DEBUG
|
|
#define DEBUG_PORT Serial
|
|
#define DEBUG_BAUD 115200
|
|
|
|
// ===== Storage Settings ===== //
|
|
#define READ_BUFFER 2048
|
|
|
|
// ===== LED Settings ===== //
|
|
#define LED_PIN 11
|
|
|
|
// ===== SELECTOR SWITCH ===== //
|
|
#define SELECTOR A0
|
|
|
|
// ===== Parser Settings ===== //
|
|
#define CASE_SENSETIVE false
|
|
#define DEFAULT_SLEEP 5 |