25 lines
542 B
C
25 lines
542 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 A0
|
||
|
|
||
|
// ===== SELECTOR SWITCH ===== //
|
||
|
#define SELECTOR_1 A7
|
||
|
#define SELECTOR_2 A6
|
||
|
#define SELECTOR_3 A3
|
||
|
|
||
|
// ===== Parser Settings ===== //
|
||
|
#define CASE_SENSETIVE false
|
||
|
#define DEFAULT_SLEEP 5
|