forked from wirtz/BALibrary
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.0 KiB
93 lines
3.0 KiB
/**************************************************************************//**
|
|
* @file
|
|
* @author Steve Lascos
|
|
* @company Blackaddr Audio
|
|
*
|
|
* This file contains specific definitions for each Blackaddr Audio hardware
|
|
* board.
|
|
*
|
|
* @copyright This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.*
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*****************************************************************************/
|
|
|
|
#ifndef __BAGUTIAR_BAHARDWARE_H
|
|
#define __BAGUTIAR_BAHARDWARE_H
|
|
|
|
#include <cstdint>
|
|
|
|
/**************************************************************************//**
|
|
* BAGuitar is a namespace/Library for Guitar processing from Blackaddr Audio.
|
|
*****************************************************************************/
|
|
namespace BAGuitar {
|
|
|
|
// uncomment the line that corresponds to your hardware
|
|
#define TGA_PRO_REVA
|
|
//#define TGA_PRO_REVB // does not exist yet
|
|
|
|
#ifdef TGA_PRO_REVA
|
|
|
|
constexpr uint8_t USR_LED_ID = 16; ///< Teensy IO number for the user LED.
|
|
|
|
/**************************************************************************//**
|
|
* GPIOs and Testpoints are accessed via enumerated class constants.
|
|
*****************************************************************************/
|
|
enum class GPIO : uint8_t {
|
|
GPIO0 = 2,
|
|
GPIO1 = 3,
|
|
GPIO2 = 4,
|
|
GPIO3 = 6,
|
|
|
|
GPIO4 = 12,
|
|
GPIO5 = 32,
|
|
GPIO6 = 27,
|
|
GPIO7 = 28,
|
|
|
|
TP1 = 34,
|
|
TP2 = 33
|
|
};
|
|
|
|
/**************************************************************************//**
|
|
* Optionally installed SPI RAM
|
|
*****************************************************************************/
|
|
constexpr unsigned NUM_MEM_SLOTS = 2;
|
|
enum MemSelect : unsigned {
|
|
MEM0 = 0, ///< SPI RAM MEM0
|
|
MEM1 = 1 ///< SPI RAM MEM1
|
|
};
|
|
|
|
/**************************************************************************//**
|
|
* Set the maximum address (byte-based) in the external SPI memories
|
|
*****************************************************************************/
|
|
constexpr size_t MEM_MAX_ADDR[NUM_MEM_SLOTS] = { 131071, 131071 };
|
|
|
|
|
|
/**************************************************************************//**
|
|
* General Purpose SPI Interfaces
|
|
*****************************************************************************/
|
|
enum SpiDeviceId : unsigned {
|
|
SPI_DEVICE0 = 0, ///< Arduino SPI device
|
|
SPI_DEVICE1 = 1 ///< Arduino SPI1 device
|
|
};
|
|
constexpr int SPI_MAX_ADDR = 131071; ///< Max address size per chip
|
|
|
|
|
|
#else
|
|
|
|
#error "No hardware declared"
|
|
|
|
#endif
|
|
|
|
} // namespace BAGuitar
|
|
|
|
|
|
#endif /* __BAGUTIAR_BAHARDWARE_H */
|
|
|