Skip to content

Commit e873acd

Browse files
authored
Merge pull request #304 from adafruit/develop
use code of this repo to run build test instead of release in arduino package
2 parents dcef564 + 07a8483 commit e873acd

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ git:
44
depth: false
55
quiet: true
66

7+
env:
8+
- BSP_PATH="$HOME/.arduino15/packages/adafruit/hardware/nrf52"
9+
710
addons:
811
apt:
912
packages:
@@ -21,11 +24,9 @@ install:
2124
- arduino --pref "boardsmanager.additional.urls=https://adafruit.github.io/arduino-board-index/package_adafruit_index.json" --save-prefs
2225
# Install BSP for tools, then remove and create symlink the git code
2326
- arduino --install-boards adafruit:nrf52
24-
- ls $HOME/.arduino15/packages/adafruit/hardware
25-
- rm -r $HOME/.arduino15/packages/adafruit/hardware/nrf52
26-
- echo $TRAVIS_BUILD_DIR
27-
- ln -s $TRAVIS_BUILD_DIR $HOME/.arduino15/packages/adafruit/hardware/nrf52
28-
- ls $HOME/.arduino15/packages/adafruit/hardware
27+
- BSP_VERSION=`eval ls $BSP_PATH`
28+
- rm -r $BSP_PATH/*
29+
- ln -s $TRAVIS_BUILD_DIR $BSP_PATH/$BSP_VERSION
2930
- arduino --install-library "Adafruit NeoPixel","Adafruit NeoMatrix","Adafruit GFX Library","Adafruit SSD1306","MIDI Library",
3031

3132
before_script:

changelog.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Adafruit nRF52 Arduino Core Changelog
22

3-
# 0.11.1 - 2019.07.10
3+
## Next Release
4+
5+
## 0.11.1 - 2019.07.10
46

57
- Update tinyusb core to support USB MIDI
68
- Refactor Ada Callback, use ISCR to detect isr context. Use function instead of macro
@@ -15,7 +17,7 @@
1517
- Fixed #277 conn LED doesn't stop when scanner is time out
1618
- Added connection handle to Bluefruit.connParied()
1719

18-
# 0.11.0
20+
## 0.11.0
1921

2022
- Rework USB driver to support Adafruit_TinyUSB library (support HID and MSC)
2123
- Added Metro nRF52840 Express
@@ -37,7 +39,7 @@
3739
- enhance Serial.available()/write() to prevent blocking wait without yield/delay
3840
- Clean up compiler warnings
3941

40-
# 0.10.1
42+
## 0.10.1
4143

4244
This release added multiple concurrent peripheral connections support, allow Bluefruit device to multiple central (phones/PC) simultaneously. It introduces new BLE class: BLEPeriph, BLEConnection, remove BLEGap, refactor/rename/move functions and callbacks.
4345

@@ -80,7 +82,7 @@ This release added multiple concurrent peripheral connections support, allow Blu
8082
- Removed keyboardReport() variant with flat keycode parameters
8183
- Added conn_handle parameter to keyboard led callback
8284

83-
# 0.9.3
85+
## 0.9.3
8486

8587
- Correct bootloader version text in IDE to 0.2.6
8688
- Fixed #173 bleuart return incorrect value when failed to send (PR #178 thanks Nenik)

0 commit comments

Comments
 (0)