Skip to content

Commit 0f5815d

Browse files
committed
added bootloader bin with new LED pattern
1 parent deb5c2c commit 0f5815d

13 files changed

+4904
-16269
lines changed

bootloader/feather_nrf52832/6.1.1r0/feather_nrf52832_bootloader_s132_6.1.1r0.hex renamed to bootloader/feather_nrf52832/feather_nrf52832_bootloader-0.2.4_s132_6.1.1.hex

Lines changed: 1375 additions & 1364 deletions
Large diffs are not rendered by default.
Lines changed: 1772 additions & 1759 deletions
Large diffs are not rendered by default.

bootloader/pca10056/6.1.1r0/pca10056_bootloader_s140_6.1.1r0.hex renamed to bootloader/pca10056/pca10056_bootloader-0.2.4_s140_6.1.1.hex

Lines changed: 1747 additions & 1740 deletions
Large diffs are not rendered by default.

bootloader/pca10059/6.1.1r0/pca10059_bootloader_s140_6.1.1r0.hex

Lines changed: 0 additions & 11397 deletions
This file was deleted.
Binary file not shown.

changelog.md

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

3+
## 0.9.2
4+
5+
6+
37
## 0.9.1
48

59
- Rename FileIO.h to Bluefruit_FileIO to prevent conflict with other libraries.

libraries/Bluefruit52Lib/examples/Hardware/blinky/blinky.ino

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,11 @@
2020
// the setup function runs once when you press reset or power the board
2121
void setup() {
2222
// initialize digital pin LED_BUILTIN as an output.
23-
pinMode(LED_BLUE, OUTPUT);
23+
pinMode(LED_RED, OUTPUT);
2424
}
2525

2626
// the loop function runs over and over again forever
2727
void loop() {
28-
for (int i = 0; i < 2; i++)
29-
{
30-
digitalToggle(LED_BLUE); // turn the LED on (HIGH is the voltage level)
31-
delay(1000); // wait for a second
32-
}
28+
digitalToggle(LED_RED); // turn the LED on (HIGH is the voltage level)
29+
delay(1000); // wait for a second
3330
}

0 commit comments

Comments
 (0)