Skip to content

Commit

Permalink
Merge pull request #95 from kevincar/92-serverpy-example-corebluetoot…
Browse files Browse the repository at this point in the history
…h-missing-argument-max_write_without_response_size

Fix CoreBluetooth characteristic init missing without response size
  • Loading branch information
kevincar authored Nov 9, 2022
2 parents 9cfaaf6 + a36b6a9 commit 89a0309
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bless/backends/corebluetooth/characteristic.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ async def init(self, service: BlessGATTService):
)
)
super(BleakGATTCharacteristicCoreBluetooth, self).__init__( # type: ignore
obj=cb_characteristic
obj=cb_characteristic,
max_write_without_response_size=0x200
)

@property
Expand Down

0 comments on commit 89a0309

Please sign in to comment.