mirror of
https://github.com/google/pebble.git
synced 2025-04-30 07:21:39 -04:00
spelling: successful
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
56b1584352
commit
aee29ca34b
3 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@
|
||||||
//! The string does not have to be zero-terminated, since the length is passed as an argument.
|
//! The string does not have to be zero-terminated, since the length is passed as an argument.
|
||||||
//! @param number_str_length The length of the number_str buffer.
|
//! @param number_str_length The length of the number_str buffer.
|
||||||
//! @param multiplier The factor by which to multiply the parsed number.
|
//! @param multiplier The factor by which to multiply the parsed number.
|
||||||
//! @param[out] number_out If the parsing was succesfull, the result will be stored here.
|
//! @param[out] number_out If the parsing was successful, the result will be stored here.
|
||||||
//! @return True if the string was parsed succesfully.
|
//! @return True if the string was parsed succesfully.
|
||||||
//! @note The first comma or period found is treated as decimal separator. Any subsequent comma or
|
//! @note The first comma or period found is treated as decimal separator. Any subsequent comma or
|
||||||
//! period that is found will cause parsing to be aborted and return false.
|
//! period that is found will cause parsing to be aborted and return false.
|
||||||
|
|
|
@ -50,7 +50,7 @@ typedef enum MfgSerialsResult {
|
||||||
//! zero. Must be 13.
|
//! zero. Must be 13.
|
||||||
//! @param[out] out_index Will contain the OTP index that was used to write the
|
//! @param[out] out_index Will contain the OTP index that was used to write the
|
||||||
//! serial number, if the return value was OtpWriteSuccess.
|
//! serial number, if the return value was OtpWriteSuccess.
|
||||||
//! @return OtpWriteSuccess if the write was successfull or
|
//! @return OtpWriteSuccess if the write was successful or
|
||||||
//! MfgSerialsResultFailNoMoreSpace if all 3 slots were taken already, or
|
//! MfgSerialsResultFailNoMoreSpace if all 3 slots were taken already, or
|
||||||
//! MfgSerialsResultFailIncorrectLength if the serial_size was not 13.
|
//! MfgSerialsResultFailIncorrectLength if the serial_size was not 13.
|
||||||
MfgSerialsResult mfg_write_serial_number(const char* serial, size_t serial_size, uint8_t *out_index);
|
MfgSerialsResult mfg_write_serial_number(const char* serial, size_t serial_size, uint8_t *out_index);
|
||||||
|
|
|
@ -207,7 +207,7 @@ int GAP_LE_Cancel_Create_Connection(unsigned int BluetoothStackID) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Puts the event that the BT Controller will emit after a succesfull
|
// Puts the event that the BT Controller will emit after a successful
|
||||||
// GAP_LE_Cancel_Create_Connection call.
|
// GAP_LE_Cancel_Create_Connection call.
|
||||||
void fake_gap_le_put_cancel_create_event(const BTDeviceInternal *device, bool is_master) {
|
void fake_gap_le_put_cancel_create_event(const BTDeviceInternal *device, bool is_master) {
|
||||||
fake_gap_put_connection_event(HCI_ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER,
|
fake_gap_put_connection_event(HCI_ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER,
|
||||||
|
|
Loading…
Add table
Reference in a new issue