From 32bfb2adae3d4b644173648304564513e6bb5bae Mon Sep 17 00:00:00 2001 From: Benny Meisels Date: Wed, 7 Aug 2019 21:39:10 +0300 Subject: [PATCH] Added AramCon Badge 2019 board --- src/boards/aramcon_badge_2019/board.h | 75 ++++++++++++++++++++++++++ src/boards/aramcon_badge_2019/board.mk | 1 + 2 files changed, 76 insertions(+) create mode 100644 src/boards/aramcon_badge_2019/board.h create mode 100644 src/boards/aramcon_badge_2019/board.mk diff --git a/src/boards/aramcon_badge_2019/board.h b/src/boards/aramcon_badge_2019/board.h new file mode 100644 index 0000000..9e84b23 --- /dev/null +++ b/src/boards/aramcon_badge_2019/board.h @@ -0,0 +1,75 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2019 Uri Shaked + * Copyright (c) 2019 Benjamin Meisels + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +#ifndef _ARAMCON_BADGE_2019_H +#define _ARAMCON_BADGE_2019_H + +#define _PINNUM(port, pin) ((port)*32 + (pin)) + +/*------------------------------------------------------------------*/ +/* LED + *------------------------------------------------------------------*/ +#define LEDS_NUMBER 1 +#define LED_PRIMARY_PIN _PINNUM(1, 11) // Red + +#define LED_NEOPIXEL _PINNUM(0, 8) +#define NEOPIXELS_NUMBER 4 +#define BOARD_RGB_BRIGHTNESS 0x040404 + +/*------------------------------------------------------------------*/ +/* BUTTON + *------------------------------------------------------------------*/ +#define BUTTONS_NUMBER 2 +#define BUTTON_1 _PINNUM(0, 2) // left Button +#define BUTTON_2 _PINNUM(0, 29) // middle button +#define BUTTON_PULL NRF_GPIO_PIN_PULLUP + +/*------------------------------------------------------------------*/ +/* UART (only used by nRF52832) + *------------------------------------------------------------------*/ +#define RX_PIN_NUMBER _PINNUM(0, 28) // SDA +#define TX_PIN_NUMBER _PINNUM(0, 3) // SCL +#define CTS_PIN_NUMBER 0 +#define RTS_PIN_NUMBER 0 +#define HWFC false + +// Used as model string in OTA mode +#define BLEDIS_MANUFACTURER "ARAMCON Badge Team" +#define BLEDIS_MODEL "ARAMCON Badge 2019" + +//--------------------------------------------------------------------+ +// USB +//--------------------------------------------------------------------+ +#define USB_DESC_VID 0x239A +#define USB_DESC_UF2_PID 0x0079 +#define USB_DESC_CDC_ONLY_PID 0x0079 + +//------------- UF2 -------------// +#define UF2_PRODUCT_NAME "ARAMCON Badge 2019" +#define UF2_VOLUME_LABEL "ARAMBOOT" +#define UF2_BOARD_ID "nrf52840-ARAMCON-Badge-2019" +#define UF2_INDEX_URL "https://github.com/aramcon-badge" + +#endif // _ARAMCON_BADGE_2019_H diff --git a/src/boards/aramcon_badge_2019/board.mk b/src/boards/aramcon_badge_2019/board.mk new file mode 100644 index 0000000..9d29ac6 --- /dev/null +++ b/src/boards/aramcon_badge_2019/board.mk @@ -0,0 +1 @@ +MCU_SUB_VARIANT = nrf52840