8
8
* Supported boards and shields:
9
9
* - Arduino 101 (recommended)
10
10
* - RedBearLab BLE Shield (v2) ** to be verified **
11
+ * - RedBearLab BLE Nano ** works with modifications **
11
12
*
12
13
*==================================================================================*/
13
14
@@ -59,11 +60,17 @@ BLEStream stream;
59
60
60
61
61
62
/*
62
- * RedBearLab BLE Nano
63
+ * RedBearLab BLE Nano (with default switch settings)
64
+ *
63
65
* Blocked on this issue: https://github.com/RedBearLab/nRF51822-Arduino/issues/46
64
- * Also, need to skip Capability Query (see example in test script)
66
+ * Works with modifications. See comments at top of the test script referenced below.
67
+ * When the RBL nRF51822-Arduino library issue is resolved, this should work witout
68
+ * any modifications.
65
69
*
66
70
* Test script: https://gist.github.com/soundanalogous/d39bb3eb36333a0906df
71
+ *
72
+ * Note: If you have changed the solder jumpers on the Nano you may encounter issues since
73
+ * the pins are currently mapped in Firmata only for the default (factory) jumper settings.
67
74
*/
68
75
// #ifdef BLE_NANO
69
76
// #include <BLEPeripheral.h>
@@ -74,8 +81,10 @@ BLEStream stream;
74
81
75
82
/*
76
83
* RedBearLab Blend and Blend Micro
77
- * StandardFirmataBLE is requires too much Flash and RAM to run on Blend Micro
78
- * may work with ConfigurableFirmata selecting only analog and digital I/O
84
+ *
85
+ * StandardFirmataBLE requires too much Flash and RAM to run on the ATmega32u4-based Blend
86
+ * and Blend Micro boards. It may work with ConfigurableFirmata selecting only analog and/or
87
+ * digital I/O.
79
88
*/
80
89
// #if defined(BLEND_MICRO) || defined(BLEND)
81
90
// #include <SPI.h>
0 commit comments