121 lines
3.4 KiB
C
121 lines
3.4 KiB
C
|
/*
|
||
|
Copyright (c) 2014-2015 Arduino LLC. All right reserved.
|
||
|
Copyright (c) 2016 Sandeep Mistry All right reserved.
|
||
|
Copyright (c) 2018, Adafruit Industries (adafruit.com)
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Lesser General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2.1 of the License, or (at your option) any later version.
|
||
|
This library 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 Lesser General Public License for more details.
|
||
|
You should have received a copy of the GNU Lesser General Public
|
||
|
License along with this library; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#ifndef _VARIANT_WIO_SDK_WM1110_
|
||
|
#define _VARIANT_WIO_SDK_WM1110_
|
||
|
|
||
|
/** Master clock frequency */
|
||
|
#define VARIANT_MCK (64000000ul)
|
||
|
|
||
|
#define USE_LFXO // Board uses 32khz crystal for LF
|
||
|
// define USE_LFRC // Board uses RC for LF
|
||
|
|
||
|
/*----------------------------------------------------------------------------
|
||
|
* Headers
|
||
|
*----------------------------------------------------------------------------*/
|
||
|
|
||
|
#include "WVariant.h"
|
||
|
|
||
|
#ifdef USE_TINYUSB
|
||
|
#error TinyUSB must be disabled by platformio before using this variant
|
||
|
#endif
|
||
|
|
||
|
// We use the hardware serial port for the serial console
|
||
|
#define Serial Serial1
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif // __cplusplus
|
||
|
|
||
|
// Number of pins defined in PinDescription array
|
||
|
#define PINS_COUNT (48)
|
||
|
#define NUM_DIGITAL_PINS (48)
|
||
|
#define NUM_ANALOG_INPUTS (6)
|
||
|
#define NUM_ANALOG_OUTPUTS (0)
|
||
|
|
||
|
#define WIRE_INTERFACES_COUNT 1
|
||
|
|
||
|
#define PIN_3V3_EN (0 + 7) // P0.7, Power to Sensors
|
||
|
|
||
|
#define PIN_WIRE_SDA (0 + 27) // P0.27
|
||
|
#define PIN_WIRE_SCL (0 + 26) // P0.26
|
||
|
|
||
|
#define PIN_LED1 (0 + 13) // P0.13
|
||
|
#define PIN_LED2 (0 + 14) // P0.14
|
||
|
|
||
|
#define LED_BUILTIN PIN_LED1
|
||
|
|
||
|
#define LED_GREEN PIN_LED1
|
||
|
#define LED_BLUE PIN_LED2 // Actually red
|
||
|
|
||
|
#define LED_STATE_ON 1 // State when LED is lit
|
||
|
|
||
|
#define BUTTON_PIN (0 + 23) // P0.23
|
||
|
|
||
|
/*
|
||
|
* Serial interfaces
|
||
|
*/
|
||
|
#define PIN_SERIAL1_RX (0 + 22) // P0.22
|
||
|
#define PIN_SERIAL1_TX (0 + 24) // P0.24
|
||
|
|
||
|
#define PIN_SERIAL2_RX (0 + 6) // P0.06
|
||
|
#define PIN_SERIAL2_TX (0 + 8) // P0.08
|
||
|
|
||
|
#define SPI_INTERFACES_COUNT 1
|
||
|
|
||
|
#define PIN_SPI_MISO (32 + 15) // P1.15 47
|
||
|
#define PIN_SPI_MOSI (32 + 14) // P1.14 46
|
||
|
#define PIN_SPI_SCK (32 + 13) // P1.13 45
|
||
|
#define PIN_SPI_NSS (32 + 12) // P1.12 44
|
||
|
|
||
|
#define LORA_RESET (32 + 10) // P1.10 42 // RST
|
||
|
#define LORA_DIO1 (32 + 8) // P1.08 40 // IRQ
|
||
|
#define LORA_DIO2 (32 + 11) // P1.11 43 // BUSY
|
||
|
#define LORA_SCK PIN_SPI_SCK
|
||
|
#define LORA_MISO PIN_SPI_MISO
|
||
|
#define LORA_MOSI PIN_SPI_MOSI
|
||
|
#define LORA_CS PIN_SPI_NSS
|
||
|
|
||
|
// supported modules list
|
||
|
#define USE_LR1110
|
||
|
|
||
|
#define LR1110_IRQ_PIN LORA_DIO1
|
||
|
#define LR1110_NRESET_PIN LORA_RESET
|
||
|
#define LR1110_BUSY_PIN LORA_DIO2
|
||
|
#define LR1110_SPI_NSS_PIN LORA_CS
|
||
|
#define LR1110_SPI_SCK_PIN LORA_SCK
|
||
|
#define LR1110_SPI_MOSI_PIN LORA_MOSI
|
||
|
#define LR1110_SPI_MISO_PIN LORA_MISO
|
||
|
|
||
|
#define LR11X0_DIO3_TCXO_VOLTAGE 1.6
|
||
|
#define LR11X0_DIO_AS_RF_SWITCH
|
||
|
|
||
|
#define LR1110_GNSS_ANT_PIN (32 + 5) // P1.05 37
|
||
|
|
||
|
#define NRF_USE_SERIAL_DFU
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/*----------------------------------------------------------------------------
|
||
|
* Arduino objects - C++ only
|
||
|
*----------------------------------------------------------------------------*/
|
||
|
|
||
|
#endif // _VARIANT_WIO_SDK_WM1110_
|