Skip to content

Commit 3b40685

Browse files
committed
correct version number
1 parent 97427bb commit 3b40685

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

cores/nRF5/verify.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ extern "C"
6565
//--------------------------------------------------------------------+
6666
#if CFG_DEBUG >= 1
6767
// #define VERIFY_MESS(format, ...) cprintf("[%08ld] %s: %d: verify failed\n", get_millis(), __func__, __LINE__)
68-
#define VERIFY_MESS(_status) cprintf("%s: %d: verify failed, status = %s\n", __PRETTY_FUNCTION__, __LINE__, dbg_err_str(_status));
68+
#define VERIFY_MESS(_status) cprintf("%s: %d: verify failed, error = %s\n", __PRETTY_FUNCTION__, __LINE__, dbg_err_str(_status));
6969
#else
7070
#define VERIFY_MESS(_status)
7171
#endif

libraries/BLEHomekit/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Apple Homekit Libraries for Bluefruit52
2-
version=0.9.0
2+
version=0.8.0
33
author=Adafruit
44
maintainer=Adafruit <[email protected]>
55
sentence=Arduino library for nRF52-based Adafruit Bluefruit LE modules

libraries/BLEHomekit/src/service/HAPAccessoryInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ err_t HAPAccessoryInfo::begin(void)
6565
"Adafruit Bluefruit nrf52",
6666
"Bluefruit52",
6767
getMcuUniqueID(),
68-
"0.9.0"
68+
"0.8.0"
6969
};
7070

7171
// Manufacturer

libraries/Bluefruit52Lib/examples/Projects/homekit/homekit_lightbulb/homekit_lightbulb.ino

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ void setup()
2424
Serial.println("Bluefruit52 Homekit Light Bulb Example");
2525
Serial.println("--------------------------------------\n");
2626

27+
// Homekit uses a lot of characteristics so that default Attr Table size
28+
// is not enough. Therefore we need to incresae the ATTR Table Size
29+
// All .config***() functions must be called before .begin()
30+
Bluefruit.configAttrTableSize(3000);
31+
2732
Bluefruit.begin();
33+
2834
// Set max power. Accepted values are: -40, -30, -20, -16, -12, -8, -4, 0, 4
2935
Bluefruit.setTxPower(4);
3036
Bluefruit.setName("Bluefruit52");

libraries/Bluefruit52Lib/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Adafruit BLE Libraries for Bluefruit52
2-
version=0.9.0
2+
version=0.8.0
33
author=Adafruit
44
maintainer=Adafruit <[email protected]>
55
sentence=Arduino library for nRF52-based Adafruit Bluefruit LE modules

platform.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1818

1919
name=Adafruit nRF52 Boards
20-
version=0.9.0
20+
version=0.8.0
2121

2222
# Compile variables
2323
# -----------------

0 commit comments

Comments
 (0)