summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2020-01-23 17:44:38 +1100
committerDamien George <damien.p.george@gmail.com>2020-02-18 16:36:37 +1100
commit66ac2e1fc0e844686947dad1626c2b43d95e607b (patch)
treee0cacdbf69c4b7c5623220628a855bc565526a89
parent3fe83e43183f224f2fb737a7dc96078bfb7f88a7 (diff)
extmod/modbluetooth.h: Fix typo in comment about registering services.
-rw-r--r--extmod/modbluetooth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modbluetooth.h b/extmod/modbluetooth.h
index 074f53b97..5e4e2c25a 100644
--- a/extmod/modbluetooth.h
+++ b/extmod/modbluetooth.h
@@ -176,7 +176,7 @@ void mp_bluetooth_gap_advertise_stop(void);
// Start adding services. Must be called before mp_bluetooth_register_service.
int mp_bluetooth_gatts_register_service_begin(bool append);
-// // Add a service with the given list of characteristics to the queue to be registered.
+// Add a service with the given list of characteristics to the queue to be registered.
// The value_handles won't be valid until after mp_bluetooth_register_service_end is called.
int mp_bluetooth_gatts_register_service(mp_obj_bluetooth_uuid_t *service_uuid, mp_obj_bluetooth_uuid_t **characteristic_uuids, uint8_t *characteristic_flags, mp_obj_bluetooth_uuid_t **descriptor_uuids, uint8_t *descriptor_flags, uint8_t *num_descriptors, uint16_t *handles, size_t num_characteristics);
// Register any queued services.