adding s132 files
This commit is contained in:
12
src/Makefile
12
src/Makefile
@ -24,8 +24,8 @@ SD_VER4 = 0
|
||||
SD_VERSION = $(SD_VER1).$(SD_VER2).$(SD_VER3)
|
||||
SD_VERSION_FULL = $(SD_VERSION)r$(SD_VER4)
|
||||
|
||||
SD_PATH = ../lib/softdevice/$(SD_VERSION)
|
||||
SD_HEX = $(SD_PATH)/$(SD_NAME)/hex/$(SD_NAME)_nrf52_$(SD_VERSION)_softdevice.hex
|
||||
SD_PATH = ../lib/softdevice/$(SD_NAME)/$(SD_VERSION)
|
||||
SD_HEX = $(SD_PATH)/hex/$(SD_NAME)_nrf52_$(SD_VERSION)_softdevice.hex
|
||||
LINKER_SCRIPT = $(SRC_PATH)/$(SD_NAME)_$(SD_VERSION).ld
|
||||
|
||||
OUTPUT_FILENAME = $(BOARD)_bootloader
|
||||
@ -52,13 +52,15 @@ endif
|
||||
BUILD = _build-$(BOARD)
|
||||
|
||||
NRF52840_BOARDLIST = pca10056 feather52840
|
||||
IS_NRF52840 = $(findstring $(BOARD),$(NRF52840_BOARDLIST))
|
||||
IS_NRF52840 = $(findstring $(BOARD),$(NRF52840_BOARDLIST))
|
||||
|
||||
ifneq ($(IS_NRF52840),)
|
||||
#nrf52840 board
|
||||
$(info nRF52840)
|
||||
SD_NAME = s140
|
||||
else
|
||||
#nrf52832 board
|
||||
$(info nRF52832)
|
||||
SD_NAME = s132
|
||||
endif
|
||||
|
||||
@ -198,8 +200,8 @@ INC_PATHS += -I$(SDK_PATH)/toolchain
|
||||
|
||||
|
||||
INC_PATHS += -I$(SD_PATH)/common
|
||||
INC_PATHS += -I$(SD_PATH)/$(SD_NAME)/headers
|
||||
INC_PATHS += -I$(SD_PATH)/$(SD_NAME)/headers/nrf52
|
||||
INC_PATHS += -I$(SD_PATH)/headers
|
||||
INC_PATHS += -I$(SD_PATH)/headers/nrf52
|
||||
|
||||
#******************************************************************************
|
||||
# Compiler Flags
|
||||
|
@ -20,6 +20,8 @@
|
||||
#include "boards/feather52840.h"
|
||||
#elif defined BOARD_PCA10056
|
||||
#include "boards/pca10056.h"
|
||||
#elif defined BOARD_FEATHER52832
|
||||
#include "boards/feather52832.h"
|
||||
#else
|
||||
#error No boards defined
|
||||
#endif
|
||||
|
68
src/boards/feather52832.h
Normal file
68
src/boards/feather52832.h
Normal file
@ -0,0 +1,68 @@
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@file feather52.h
|
||||
@author hathach
|
||||
|
||||
@section LICENSE
|
||||
|
||||
Software License Agreement (BSD License)
|
||||
|
||||
Copyright (c) ${year}, Adafruit Industries (adafruit.com)
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holders nor the
|
||||
names of its contributors may be used to endorse or promote products
|
||||
derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
|
||||
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
/**************************************************************************/
|
||||
|
||||
#ifndef _FEATHER52832_H
|
||||
#define _FEATHER52832_H
|
||||
|
||||
/*------------------------------------------------------------------*/
|
||||
/* LED
|
||||
*------------------------------------------------------------------*/
|
||||
#define LEDS_NUMBER 2
|
||||
#define LED_1 17
|
||||
#define LED_2 19
|
||||
#define LED_STATE_ON 1
|
||||
|
||||
/*------------------------------------------------------------------*/
|
||||
/* BUTTON
|
||||
*------------------------------------------------------------------*/
|
||||
#define BUTTONS_NUMBER 2
|
||||
#define BUTTON_1 20
|
||||
#define BUTTON_2 22
|
||||
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
|
||||
|
||||
/*------------------------------------------------------------------*/
|
||||
/* UART
|
||||
*------------------------------------------------------------------*/
|
||||
#define RX_PIN_NUMBER 8
|
||||
#define TX_PIN_NUMBER 6
|
||||
#define CTS_PIN_NUMBER 7
|
||||
#define RTS_PIN_NUMBER 5
|
||||
#define HWFC false
|
||||
|
||||
// Used as model string in OTA mode
|
||||
#define DIS_MODEL "Bluefruit Feather nRF52832"
|
||||
|
||||
#endif // _FEATHER52832_H
|
Reference in New Issue
Block a user