Skip to content

Commit

Permalink
Rebased, updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kdewald committed Jul 4, 2024
1 parent 5616a2b commit c79ea53
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The format is based on `Keep a Changelog`_, and this project adheres to `Semanti
**Fixed**

- (SimpleBluez) Fixed improper handling of non `org.Bluez.Service1` objects within a `org.bluez.Device1` object. *(Thanks Kober Engineering!)*
- (MacOS) Fixed incorrect storage and retrieval with standard Bluetooth UUIDs inside the peripheral class. *(Thanks TellowKrinkle!)*


[0.7.X]
Expand Down
2 changes: 0 additions & 2 deletions simpleble/src/backends/macos/PeripheralBaseMacOS.mm
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ - (void)connect {
}

@synchronized(self) {
NSLog(@"Characteristic %@ loaded", [characteristic.UUID UUIDString]);
[self.characteristicExtras setObject:characteristicExtras forKey:uuidToString(characteristic.UUID)];
}
}
Expand Down Expand Up @@ -628,7 +627,6 @@ - (void)peripheral:(CBPeripheral*)peripheral
}

- (void)peripheral:(CBPeripheral*)peripheral didUpdateValueForCharacteristic:(CBCharacteristic*)characteristic error:(NSError*)error {
NSLog(@"Characteristic %@ updated", [characteristic.UUID UUIDString]);
CharacteristicExtras* characteristicExtras = [self.characteristicExtras objectForKey:uuidToString(characteristic.UUID)];

if (characteristic.isNotifying) {
Expand Down

0 comments on commit c79ea53

Please sign in to comment.