Status Codes#

Status Codes contains error and status code definitions used by GSDK software components and stacks. This module also provides routines to read the string linked with the error and status codes.

Typedefs#

typedef uint32_t

define global status variable.

Functions#

int32_t
sl_status_get_string_n(sl_status_t status, char *buffer, uint32_t buffer_length)
void

Macros#

#define
SL_STATUS_SPACE_MASK ((sl_status_t)0xFF00)

sl status space mask.

#define
SL_STATUS_GENERIC_SPACE ((sl_status_t)0x0000)

sl status generic space.

#define
SL_STATUS_PLATFORM_1_SPACE ((sl_status_t)0x0100)

sl status platform 1 space.

#define
SL_STATUS_PLATFORM_2_SPACE ((sl_status_t)0x0200)

sl status platform 2 space.

#define
SL_STATUS_HARDWARE_SPACE ((sl_status_t)0x0300)

sl status hardware space.

#define
SL_STATUS_BLUETOOTH_SPACE ((sl_status_t)0x0400)

sl status bluetooth space.

#define
SL_STATUS_BLUETOOTH_MESH_SPACE ((sl_status_t)0x0500)

sl status bluetooth mesh space.

#define
SL_STATUS_CAN_CANOPEN_SPACE ((sl_status_t)0x0600)

sl status can canopen space.

#define
SL_STATUS_CONNECT_SPACE ((sl_status_t)0x0700)

sl status connect space.

#define
SL_STATUS_NET_SUITE_SPACE ((sl_status_t)0x0800)

sl status net suite space.

#define
SL_STATUS_THREAD_SPACE ((sl_status_t)0x0900)

sl status thread space.

#define
SL_STATUS_USB_SPACE ((sl_status_t)0x0A00)

sl status usb space.

#define
SL_STATUS_WIFI_SPACE ((sl_status_t)0x0B00)

sl status wifi space.

#define
SL_STATUS_ZIGBEE_SPACE ((sl_status_t)0x0C00)

sl status zigbee space.

#define
SL_STATUS_Z_WAVE_SPACE ((sl_status_t)0x0D00)

sl status z wave space.

#define
SL_STATUS_GECKO_OS_1_SPACE ((sl_status_t)0x0E00)

sl status gecko os 1 space.

#define
SL_STATUS_GECKO_OS_2_SPACE ((sl_status_t)0x0F00)

sl status gecko os 2 space.

#define
SL_STATUS_BLUETOOTH_CTRL_SPACE ((sl_status_t)0x1000)

sl status bluetooth ctrl space.

#define
SL_STATUS_BLUETOOTH_ATT_SPACE ((sl_status_t)0x1100)

sl status bluetooth att space.

#define
SL_STATUS_BLUETOOTH_SMP_SPACE ((sl_status_t)0x1200)

sl status bluetooth mesh foundation space.

#define

sl status bluetooth mesh foundation space.

#define
SL_STATUS_WISUN_SPACE ((sl_status_t)0x1400)

sl status wisun space.

#define
SL_STATUS_COMPUTE_SPACE ((sl_status_t)0x1500)

sl status compute space.

#define
SL_STATUS_OK ((sl_status_t)0x0000)

No error.

#define
SL_STATUS_FAIL ((sl_status_t)0x0001)

Generic error.

#define
SL_STATUS_INVALID_STATE ((sl_status_t)0x0002)

Generic invalid state error.

#define
SL_STATUS_NOT_READY ((sl_status_t)0x0003)

Module is not ready for requested operation.

#define
SL_STATUS_BUSY ((sl_status_t)0x0004)

Module is busy and cannot carry out requested operation.

#define
SL_STATUS_IN_PROGRESS ((sl_status_t)0x0005)

Operation is in progress and not yet complete (pass or fail).

#define
SL_STATUS_ABORT ((sl_status_t)0x0006)

Operation aborted.

#define
SL_STATUS_TIMEOUT ((sl_status_t)0x0007)

Operation timed out.

#define
SL_STATUS_PERMISSION ((sl_status_t)0x0008)

Operation not allowed per permissions.

#define
SL_STATUS_WOULD_BLOCK ((sl_status_t)0x0009)

Non-blocking operation would block.

#define
SL_STATUS_IDLE ((sl_status_t)0x000A)

Operation/module is Idle, cannot carry requested operation.

#define
SL_STATUS_IS_WAITING ((sl_status_t)0x000B)

Operation cannot be done while construct is waiting.

#define
SL_STATUS_NONE_WAITING ((sl_status_t)0x000C)

No task/construct waiting/pending for that action/event.

#define
SL_STATUS_SUSPENDED ((sl_status_t)0x000D)

Operation cannot be done while construct is suspended.

#define
SL_STATUS_NOT_AVAILABLE ((sl_status_t)0x000E)

Feature not available due to software configuration.

#define
SL_STATUS_NOT_SUPPORTED ((sl_status_t)0x000F)

Feature not supported.

#define
SL_STATUS_INITIALIZATION ((sl_status_t)0x0010)

Initialization failed.

#define
SL_STATUS_NOT_INITIALIZED ((sl_status_t)0x0011)

Module has not been initialized.

#define
SL_STATUS_ALREADY_INITIALIZED ((sl_status_t)0x0012)

Module has already been initialized.

#define
SL_STATUS_DELETED ((sl_status_t)0x0013)

Object/construct has been deleted.

#define
SL_STATUS_ISR ((sl_status_t)0x0014)

Illegal call from ISR.

#define
SL_STATUS_NETWORK_UP ((sl_status_t)0x0015)

Illegal call because network is up.

#define
SL_STATUS_NETWORK_DOWN ((sl_status_t)0x0016)

Illegal call because network is down.

#define
SL_STATUS_NOT_JOINED ((sl_status_t)0x0017)

Failure due to not being joined in a network.

#define
SL_STATUS_NO_BEACONS ((sl_status_t)0x0018)

Invalid operation as there are no beacons.

#define
SL_STATUS_ALLOCATION_FAILED ((sl_status_t)0x0019)

Generic allocation error.

#define
SL_STATUS_NO_MORE_RESOURCE ((sl_status_t)0x001A)

No more resource available to perform the operation.

#define
SL_STATUS_EMPTY ((sl_status_t)0x001B)

Item/list/queue is empty.

#define
SL_STATUS_FULL ((sl_status_t)0x001C)

Item/list/queue is full.

#define
SL_STATUS_WOULD_OVERFLOW ((sl_status_t)0x001D)

Item would overflow.

#define
SL_STATUS_HAS_OVERFLOWED ((sl_status_t)0x001E)

Item/list/queue has been overflowed.

#define
SL_STATUS_OWNERSHIP ((sl_status_t)0x001F)

Generic ownership error.

#define
SL_STATUS_IS_OWNER ((sl_status_t)0x0020)

Already/still owning resource.

#define
SL_STATUS_INVALID_PARAMETER ((sl_status_t)0x0021)

Generic invalid argument or consequence of invalid argument.

#define
SL_STATUS_NULL_POINTER ((sl_status_t)0x0022)

Invalid null pointer received as argument.

#define
SL_STATUS_INVALID_CONFIGURATION ((sl_status_t)0x0023)

Invalid configuration provided.

#define
SL_STATUS_INVALID_MODE ((sl_status_t)0x0024)

Invalid mode.

#define
SL_STATUS_INVALID_HANDLE ((sl_status_t)0x0025)

Invalid handle.

#define
SL_STATUS_INVALID_TYPE ((sl_status_t)0x0026)

Invalid type for operation.

#define
SL_STATUS_INVALID_INDEX ((sl_status_t)0x0027)

Invalid index.

#define
SL_STATUS_INVALID_RANGE ((sl_status_t)0x0028)

Invalid range.

#define
SL_STATUS_INVALID_KEY ((sl_status_t)0x0029)

Invalid key.

#define
SL_STATUS_INVALID_CREDENTIALS ((sl_status_t)0x002A)

Invalid credentials.

#define
SL_STATUS_INVALID_COUNT ((sl_status_t)0x002B)

Invalid count.

#define
SL_STATUS_INVALID_SIGNATURE ((sl_status_t)0x002C)

Invalid signature / verification failed.

#define
SL_STATUS_NOT_FOUND ((sl_status_t)0x002D)

Item could not be found.

#define
SL_STATUS_ALREADY_EXISTS ((sl_status_t)0x002E)

Item already exists.

#define
SL_STATUS_IO ((sl_status_t)0x002F)

Generic I/O failure.

#define
SL_STATUS_IO_TIMEOUT ((sl_status_t)0x0030)

I/O failure due to timeout.

#define
SL_STATUS_TRANSMIT ((sl_status_t)0x0031)

Generic transmission error.

#define
SL_STATUS_TRANSMIT_UNDERFLOW ((sl_status_t)0x0032)

Transmit underflowed.

#define
SL_STATUS_TRANSMIT_INCOMPLETE ((sl_status_t)0x0033)

Transmit is incomplete.

#define
SL_STATUS_TRANSMIT_BUSY ((sl_status_t)0x0034)

Transmit is busy.

#define
SL_STATUS_RECEIVE ((sl_status_t)0x0035)

Generic reception error.

#define
SL_STATUS_OBJECT_READ ((sl_status_t)0x0036)

Failed to read on/via given object.

#define
SL_STATUS_OBJECT_WRITE ((sl_status_t)0x0037)

Failed to write on/via given object.

#define
SL_STATUS_MESSAGE_TOO_LONG ((sl_status_t)0x0038)

Message is too long.

#define

EEPROM MFG version mismatch.

#define

EEPROM Stack version mismatch.

#define
SL_STATUS_FLASH_WRITE_INHIBITED ((sl_status_t)0x003B)

Flash write is inhibited.

#define
SL_STATUS_FLASH_VERIFY_FAILED ((sl_status_t)0x003C)

Flash verification failed.

#define
SL_STATUS_FLASH_PROGRAM_FAILED ((sl_status_t)0x003D)

Flash programming failed.

#define
SL_STATUS_FLASH_ERASE_FAILED ((sl_status_t)0x003E)

Flash erase failed.

#define
SL_STATUS_MAC_NO_DATA ((sl_status_t)0x003F)

MAC no data.

#define
SL_STATUS_MAC_NO_ACK_RECEIVED ((sl_status_t)0x0040)

MAC no ACK received.

#define
SL_STATUS_MAC_INDIRECT_TIMEOUT ((sl_status_t)0x0041)

MAC indirect timeout.

#define
SL_STATUS_MAC_UNKNOWN_HEADER_TYPE ((sl_status_t)0x0042)

MAC unknown header type.

#define
SL_STATUS_MAC_ACK_HEADER_TYPE ((sl_status_t)0x0043)

MAC ACK unknown header type.

#define

MAC command transmit failure.

#define

Error in open NVM.

#define

Image checksum is not valid.

#define
SL_STATUS_SECURITY_DECRYPT_ERROR ((sl_status_t)0x0047)

Decryption failed.

#define
SL_STATUS_COMMAND_IS_INVALID ((sl_status_t)0x0048)

Command was not recognized.

#define
SL_STATUS_COMMAND_TOO_LONG ((sl_status_t)0x0049)

Command or parameter maximum length exceeded.

#define
SL_STATUS_COMMAND_INCOMPLETE ((sl_status_t)0x004A)

Data received does not form a complete command.

#define
SL_STATUS_BUS_ERROR ((sl_status_t)0x004B)

Bus error, e.g. invalid DMA address.

#define
SL_STATUS_CCA_FAILURE ((sl_status_t)0x004C)

CCA failure.

#define
SL_STATUS_MAC_SCANNING ((sl_status_t)0x004D)

MAC scanning.

#define
SL_STATUS_MAC_INCORRECT_SCAN_TYPE ((sl_status_t)0x004E)

MAC incorrect scan type.

#define
SL_STATUS_INVALID_CHANNEL_MASK ((sl_status_t)0x004F)

Invalid channel mask.

#define
SL_STATUS_BAD_SCAN_DURATION ((sl_status_t)0x0050)

Bad scan duration.

#define
SL_STATUS_BT_OUT_OF_BONDS ((sl_status_t)0x0402)

Bonding procedure can't be started because device has no space left for bond.

#define
SL_STATUS_BT_UNSPECIFIED ((sl_status_t)0x0403)

Unspecified error.

#define
SL_STATUS_BT_HARDWARE ((sl_status_t)0x0404)

Hardware failure.

#define
SL_STATUS_BT_NO_BONDING ((sl_status_t)0x0406)

The bonding does not exist.

#define
SL_STATUS_BT_CRYPTO ((sl_status_t)0x0407)

Error using crypto functions.

#define
SL_STATUS_BT_DATA_CORRUPTED ((sl_status_t)0x0408)

Data was corrupted.

#define
SL_STATUS_BT_INVALID_SYNC_HANDLE ((sl_status_t)0x040A)

Invalid periodic advertising sync handle.

#define

Bluetooth cannot be used on this hardware.

#define
SL_STATUS_BT_RADIO ((sl_status_t)0x040C)

Error received from radio.

#define

Returned when remote disconnects the connection-oriented channel by sending disconnection request.

#define

Returned when local host disconnect the connection-oriented channel by sending disconnection request.

#define
SL_STATUS_BT_L2CAP_CID_NOT_EXIST ((sl_status_t)0x040F)

Returned when local host did not find a connection-oriented channel with given destination CID.

#define

Returned when connection-oriented channel disconnected due to LE connection is dropped.

#define

Returned when connection-oriented channel disconnected due to remote end send data even without credit.

#define

Returned when connection-oriented channel disconnected due to remote end send flow control credits exceed 65535.

#define

Returned when connection-oriented channel has run out of flow control credit and local application still trying to send data.

#define

Returned when connection-oriented channel has not received connection response message within maximum timeout.

#define
SL_STATUS_BT_L2CAP_INVALID_CID ((sl_status_t)0x0416)

Returned when local host received a connection-oriented channel connection response with an invalid destination CID.

#define
SL_STATUS_BT_L2CAP_WRONG_STATE ((sl_status_t)0x0417)

Returned when local host application tries to send a command which is not suitable for L2CAP channel's current state.

#define
SL_STATUS_BT_PS_STORE_FULL ((sl_status_t)0x041B)

Flash reserved for PS store is full.

#define
SL_STATUS_BT_PS_KEY_NOT_FOUND ((sl_status_t)0x041C)

PS key not found.

#define

Mismatched or insufficient security level.

#define

Encryption/decryption operation failed.

#define

Connection does not exist, or connection open request was cancelled.

#define

Pairing or authentication failed due to incorrect results in the pairing or authentication procedure. This could be due to an incorrect PIN or Link Key.

#define

Pairing failed because of missing PIN, or authentication failed because of missing Key.

#define

Controller is out of memory.

#define

Link supervision timeout has expired.

#define

Controller is at limit of connections it can support.

#define

The Synchronous Connection Limit to a Device Exceeded error code indicates that the Controller has reached the limit to the number of synchronous connections that can be achieved to a device.

#define

The ACL Connection Already Exists error code indicates that an attempt to create a new ACL Connection to a device when there is already a connection to this device.

#define

Command requested cannot be executed because the Controller is in a state where it cannot process this command at this time.

#define

The Connection Rejected Due To Limited Resources error code indicates that an incoming connection was rejected due to limited resources.

#define

The Connection Rejected Due To Security Reasons error code indicates that a connection was rejected due to security requirements not being fulfilled, like authentication or pairing.

#define

The Connection was rejected because this device does not accept the BD_ADDR. This may be because the device will only accept connections from specific BD_ADDRs.

#define

The Connection Accept Timeout has been exceeded for this connection attempt.

#define

A feature or parameter value in the HCI command is not supported.

#define

Command contained invalid parameters.

#define

User on the remote device terminated the connection.

#define

The remote device terminated the connection because of low resources.

#define

Remote Device Terminated Connection due to Power Off.

#define

Local device terminated the connection.

#define

The Controller is disallowing an authentication or pairing procedure because too little time has elapsed since the last authentication or pairing attempt failed.

#define

The device does not allow pairing. This can be for example, when a device only allows pairing during a certain time window after some user input allows pairing.

#define

The remote device does not support the feature associated with the issued command.

#define

No other error code specified is appropriate to use.

#define

Connection terminated due to link-layer procedure timeout.

#define

LL procedure has collided with the same transaction or procedure that is already in progress.

#define

The requested encryption mode is not acceptable at this time.

#define

Link key cannot be changed because a fixed unit key is being used.

#define
SL_STATUS_BT_CTRL_INSTANT_PASSED ((sl_status_t)0x1028)

LMP PDU or LL PDU that includes an instant cannot be performed because the instant when this would have occurred has passed.

#define

It was not possible to pair as a unit key was requested and it is not supported.

#define

LMP transaction was started that collides with an ongoing transaction.

#define

The Controller cannot perform channel assessment because it is not supported.

#define

The HCI command or LMP PDU sent is only possible on an encrypted link.

#define

A parameter value requested is outside the mandatory range of parameters for the given HCI command or LMP PDU.

#define

The IO capabilities request or response was rejected because the sending Host does not support Secure Simple Pairing even though the receiving Link Manager does.

#define

The Host is busy with another pairing operation and unable to support the requested pairing. The receiving device should retry pairing again later.

#define

The Controller could not calculate an appropriate value for the Channel selection operation.

#define
SL_STATUS_BT_CTRL_CONTROLLER_BUSY ((sl_status_t)0x103A)

Operation was rejected because the controller is busy and unable to process the request.

#define

Remote device terminated the connection because of an unacceptable connection interval.

#define

Advertising for a fixed duration completed or, for directed advertising, that advertising completed without a connection being created.

#define

Connection was terminated because the Message Integrity Check (MIC) failed on a received packet.

#define

LL initiated a connection but the connection has failed to be established. Controller did not receive any packets from remote end.

#define

The MAC of the 802.11 AMP was requested to connect to a peer, but the connection failed.

#define

The master, at this time, is unable to make a coarse adjustment to the piconet clock, using the supplied parameters. Instead the master will attempt to move the clock using clock dragging.

#define

A command was sent from the Host that should identify an Advertising or Sync handle, but the Advertising or Sync handle does not exist.

#define
SL_STATUS_BT_CTRL_LIMIT_REACHED ((sl_status_t)0x1043)

Number of operations requested has been reached and has indicated the completion of the activity (e.g., advertising or scanning).

#define

A request to the Controller issued by the Host and still pending was successfully canceled.

#define
SL_STATUS_BT_CTRL_PACKET_TOO_LONG ((sl_status_t)0x1045)

An attempt was made to send or receive a packet that exceeds the maximum allowed packet length.

#define
SL_STATUS_BT_CTRL_TOO_LATE ((sl_status_t)0x1046)

Information was provided too late to the controller.

#define
SL_STATUS_BT_CTRL_TOO_EARLY ((sl_status_t)0x1047)

Information was provided too early to the controller.

#define
SL_STATUS_BT_ATT_INVALID_HANDLE ((sl_status_t)0x1101)

The attribute handle given was not valid on this server.

#define

The attribute cannot be read.

#define

The attribute cannot be written.

#define
SL_STATUS_BT_ATT_INVALID_PDU ((sl_status_t)0x1104)

The attribute PDU was invalid.

#define

The attribute requires authentication before it can be read or written.

#define

Attribute Server does not support the request received from the client.

#define
SL_STATUS_BT_ATT_INVALID_OFFSET ((sl_status_t)0x1107)

Offset specified was past the end of the attribute.

#define

The attribute requires authorization before it can be read or written.

#define

Too many prepare writes have been queued.

#define
SL_STATUS_BT_ATT_ATT_NOT_FOUND ((sl_status_t)0x110A)

No attribute found within the given attribute handle range.

#define
SL_STATUS_BT_ATT_ATT_NOT_LONG ((sl_status_t)0x110B)

The attribute cannot be read or written using the Read Blob Request.

#define

The Encryption Key Size used for encrypting this link is insufficient.

#define

The attribute value length is invalid for the operation.

#define
SL_STATUS_BT_ATT_UNLIKELY_ERROR ((sl_status_t)0x110E)

The attribute request that was requested has encountered an error that was unlikely, and therefore could not be completed as requested.

#define

The attribute requires encryption before it can be read or written.

#define

The attribute type is not a supported grouping attribute as defined by a higher layer specification.

#define

Insufficient Resources to complete the request.

#define
SL_STATUS_BT_ATT_OUT_OF_SYNC ((sl_status_t)0x1112)

The server requests the client to rediscover the database.

#define

The attribute parameter value was not allowed.

#define
SL_STATUS_BT_ATT_APPLICATION ((sl_status_t)0x1180)

When this is returned in a BGAPI response, the application tried to read or write the value of a user attribute from the GATT database.

#define

The requested write operation cannot be fulfilled for reasons other than permissions.

#define

The Client Characteristic Configuration descriptor is not configured according to the requirements of the profile or service.

#define

The profile or service request cannot be serviced because an operation that has been previously triggered is still in progress.

#define
SL_STATUS_BT_ATT_OUT_OF_RANGE ((sl_status_t)0x11FF)

The attribute value is out of range as defined by a profile or service specification.

#define

The user input of passkey failed, for example, the user cancelled the operation.

#define

Out of Band data is not available for authentication.

#define

The pairing procedure cannot be performed as authentication requirements cannot be met due to IO capabilities of one or both devices.

#define

The confirm value does not match the calculated compare value.

#define

Pairing is not supported by the device.

#define

The resultant encryption key size is insufficient for the security requirements of this device.

#define

The SMP command received is not supported on this device.

#define

Pairing failed due to an unspecified reason.

#define

Pairing or authentication procedure is disallowed because too little time has elapsed since last pairing request or security request.

#define

The Invalid Parameters error code indicates: the command length is invalid or a parameter is outside of the specified range.

#define

Indicates to the remote device that the DHKey Check value received doesn't match the one calculated by the local device.

#define

Indicates that the confirm values in the numeric comparison protocol do not match.

#define

Indicates that the pairing over the LE transport failed due to a Pairing Request sent over the BR/EDR transport in process.

#define

Indicates that the BR/EDR Link Key generated on the BR/EDR transport cannot be used to derive and distribute keys for the LE transport.

#define
SL_STATUS_BT_SMP_KEY_REJECTED ((sl_status_t)0x120F)

Indicates that the device chose not to accept a distributed key.

#define
SL_STATUS_BT_MESH_ALREADY_EXISTS ((sl_status_t)0x0501)

Returned when trying to add a key or some other unique resource with an ID which already exists.

#define
SL_STATUS_BT_MESH_DOES_NOT_EXIST ((sl_status_t)0x0502)

Returned when trying to manipulate a key or some other resource with an ID which does not exist.

#define
SL_STATUS_BT_MESH_LIMIT_REACHED ((sl_status_t)0x0503)

Returned when an operation cannot be executed because a pre-configured limit for keys, key bindings, elements, models, virtual addresses, provisioned devices, or provisioning sessions is reached.

#define
SL_STATUS_BT_MESH_INVALID_ADDRESS ((sl_status_t)0x0504)

Returned when trying to use a reserved address or add a "pre-provisioned" device using an address already used by some other device.

#define
SL_STATUS_BT_MESH_MALFORMED_DATA ((sl_status_t)0x0505)

In a BGAPI response, the user supplied malformed data; in a BGAPI event, the remote end responded with malformed or unrecognized data.

#define

An attempt was made to initialize a subsystem that was already initialized.

#define
SL_STATUS_BT_MESH_NOT_INITIALIZED ((sl_status_t)0x0507)

An attempt was made to use a subsystem that wasn't initialized yet. Call the subsystem's init function first.

#define
SL_STATUS_BT_MESH_NO_FRIEND_OFFER ((sl_status_t)0x0508)

Returned when trying to establish a friendship as a Low Power Node, but no acceptable friend offer message was received.

#define

Provisioning link was unexpectedly closed before provisioning was complete.

#define

An unrecognized provisioning PDU was received.

#define

A provisioning PDU with wrong length or containing field values that are out of bounds was received.

#define

An unexpected (out of sequence) provisioning PDU was received.

#define

The computed confirmation value did not match the expected value.

#define

Provisioning could not be continued due to insufficient resources.

#define

The provisioning data block could not be decrypted.

#define

An unexpected error happened during provisioning.

#define

Device could not assign unicast addresses to all of its elements.

#define

Returned when trying to reuse an address of a previously deleted device before an IV Index Update has been executed.

#define

Returned when trying to assign an address that is used by one of the devices in the Device Database, or by the Provisioner itself.

#define

Application key or publish address are not set.

#define

Application key is not bound to a model.

#define

Returned when address in request was not valid.

#define

Returned when model identified is not found for a given element.

#define

Returned when the key identified by AppKeyIndex is not stored in the node.

#define

Returned when the key identified by NetKeyIndex is not stored in the node.

#define

Returned when The node cannot serve the request due to insufficient resources.

#define

Returned when the key identified is already stored in the node and the new NetKey value is different.

#define

Returned when the model does not support the publish mechanism.

#define

Returned when the model does not support the subscribe mechanism.

#define

Returned when storing of the requested parameters failed.

#define

Returned when requested setting is not supported.

#define

Returned when the requested update operation cannot be performed due to general constraints.

#define

Returned when the requested delete operation cannot be performed due to general constraints.

#define

Returned when the requested bind operation cannot be performed due to general constraints.

#define

Returned when The node cannot start advertising with Node Identity or Proxy since the maximum number of parallel advertising is reached.

#define

Returned when the requested state cannot be set.

#define

Returned when an unspecified error took place.

#define

Returned when the NetKeyIndex and AppKeyIndex combination is not valid for a Config AppKey Update.

#define
SL_STATUS_WIFI_INVALID_KEY ((sl_status_t)0x0B01)

Invalid firmware keyset.

#define

The firmware download took too long.

#define

Unknown request ID or wrong interface ID used.

#define
SL_STATUS_WIFI_WARNING ((sl_status_t)0x0B04)

The request is successful but some parameters have been ignored.

#define

No Packets waiting to be received.

#define
SL_STATUS_WIFI_SLEEP_GRANTED ((sl_status_t)0x0B08)

The sleep mode is granted.

#define
SL_STATUS_WIFI_SLEEP_NOT_GRANTED ((sl_status_t)0x0B09)

The WFx does not go back to sleep.

#define

The SecureLink MAC key was not found.

#define

The SecureLink MAC key is already installed in OTP.

#define

The SecureLink MAC key cannot be installed in RAM.

#define

The SecureLink MAC key installation failed.

#define

SecureLink key (re)negotiation failed.

#define
SL_STATUS_WIFI_WRONG_STATE ((sl_status_t)0x0B18)

The device is in an inappropriate state to perform the request.

#define

The request failed due to regulatory limitations.

#define
SL_STATUS_WIFI_NO_MATCHING_AP ((sl_status_t)0x0B1A)

The connection request failed because no suitable AP was found.

#define
SL_STATUS_WIFI_CONNECTION_ABORTED ((sl_status_t)0x0B1B)

The connection request was aborted by host.

#define
SL_STATUS_WIFI_CONNECTION_TIMEOUT ((sl_status_t)0x0B1C)

The connection request failed because of a timeout.

#define

The connection request failed because the AP rejected the device.

#define

The connection request failed because the WPA handshake did not complete successfully.

#define
SL_STATUS_WIFI_RETRY_EXCEEDED ((sl_status_t)0x0B1F)

The request failed because the retry limit was exceeded.

#define

The request failed because the MSDU life time was exceeded.

#define
SL_STATUS_COMPUTE_DRIVER_FAULT ((sl_status_t)0x1501)

Critical fault.

#define
SL_STATUS_COMPUTE_DRIVER_ALU_NAN ((sl_status_t)0x1502)

ALU operation output NaN.

#define

ALU numeric overflow.

#define

ALU numeric underflow.

#define

Overflow during array store.

#define

Underflow during array store conversion.

#define

Infinity encountered during array store conversion.

#define

NaN encountered during array store conversion.

#define
SL_STATUS_COMPUTE_MATH_NAN ((sl_status_t)0x1512)

MATH NaN encountered.

#define
SL_STATUS_COMPUTE_MATH_INFINITY ((sl_status_t)0x1513)

MATH Infinity encountered.

#define
SL_STATUS_COMPUTE_MATH_OVERFLOW ((sl_status_t)0x1514)

MATH numeric overflow.

#define
SL_STATUS_COMPUTE_MATH_UNDERFLOW ((sl_status_t)0x1515)

MATH numeric underflow.

Typedef Documentation#

sl_status_t#

typedef uint32_t sl_status_t

define global status variable.


Definition at line 395 of file platform/common/inc/sl_status.h

Function Documentation#

sl_status_get_string_n#

int32_t sl_status_get_string_n (sl_status_t status, char *buffer, uint32_t buffer_length)

sl_status_get_string_n()

Parameters
N/Astatus

The status code from which to obtain the status string.

N/Abuffer

Pointer to a buffer in which the status string will be copied. A terminating null-character will be appended after the copied status string.

N/Abuffer_length

Maximum number of characters that can be written in the buffer, including the terminating null-character. If the status string would be longer than the available length, it will be truncated and a null-terminating character will be the last character contained in the buffer.

Get a copy of the status string associated to the status code passed, up to 'buffer_length' length, if the string associated to the status code is enabled. If not, the error code number, in hex, prefixed by "SL_STATUS_" will be copied in the buffer instead. For example, the buffer would either contain "SL_STATUS_FAIL" if that status string is enabled, or "SL_STATUS_0x0001" if the string is disabled, as SL_STATUS_FAIL's value is 0x0001.

Returns

  • The number of characters that would have been written if the buffer_length had been sufficiently large, not counting the terminating null character. If the status code is invalid, 0 or a negative number is returned. Notice that only when this returned value is strictly positive and less than buffer_length, the status string has been completely written in the buffer.


Definition at line 431 of file platform/common/inc/sl_status.h

sl_status_print#

void sl_status_print (sl_status_t status)

sl_status_print()

Parameters
N/Astatus

The status code of which to print the status string.

Print, through printf, the string associated to the passed status code. If the string associated to the status code is enabled, the status string will be printed, for example "SL_STATUS_OK". If the string associated to the status code is disabled, the status number, in hex, prefixed by "SL_STATUS_" will be printed instead, for example "SL_STATUS_0x0000", as SL_STATUS_OK's value is 0x0000.


Definition at line 444 of file platform/common/inc/sl_status.h

Macro Definition Documentation#

SL_STATUS_SPACE_MASK#

#define SL_STATUS_SPACE_MASK
Value:
((sl_status_t)0xFF00)

sl status space mask.


Definition at line 47 of file platform/common/inc/sl_status.h

SL_STATUS_GENERIC_SPACE#

#define SL_STATUS_GENERIC_SPACE
Value:
((sl_status_t)0x0000)

sl status generic space.


Definition at line 49 of file platform/common/inc/sl_status.h

SL_STATUS_PLATFORM_1_SPACE#

#define SL_STATUS_PLATFORM_1_SPACE
Value:
((sl_status_t)0x0100)

sl status platform 1 space.


Definition at line 51 of file platform/common/inc/sl_status.h

SL_STATUS_PLATFORM_2_SPACE#

#define SL_STATUS_PLATFORM_2_SPACE
Value:
((sl_status_t)0x0200)

sl status platform 2 space.


Definition at line 52 of file platform/common/inc/sl_status.h

SL_STATUS_HARDWARE_SPACE#

#define SL_STATUS_HARDWARE_SPACE
Value:
((sl_status_t)0x0300)

sl status hardware space.


Definition at line 53 of file platform/common/inc/sl_status.h

SL_STATUS_BLUETOOTH_SPACE#

#define SL_STATUS_BLUETOOTH_SPACE
Value:
((sl_status_t)0x0400)

sl status bluetooth space.


Definition at line 55 of file platform/common/inc/sl_status.h

SL_STATUS_BLUETOOTH_MESH_SPACE#

#define SL_STATUS_BLUETOOTH_MESH_SPACE
Value:
((sl_status_t)0x0500)

sl status bluetooth mesh space.


Definition at line 56 of file platform/common/inc/sl_status.h

SL_STATUS_CAN_CANOPEN_SPACE#

#define SL_STATUS_CAN_CANOPEN_SPACE
Value:
((sl_status_t)0x0600)

sl status can canopen space.


Definition at line 57 of file platform/common/inc/sl_status.h

SL_STATUS_CONNECT_SPACE#

#define SL_STATUS_CONNECT_SPACE
Value:
((sl_status_t)0x0700)

sl status connect space.


Definition at line 58 of file platform/common/inc/sl_status.h

SL_STATUS_NET_SUITE_SPACE#

#define SL_STATUS_NET_SUITE_SPACE
Value:
((sl_status_t)0x0800)

sl status net suite space.


Definition at line 59 of file platform/common/inc/sl_status.h

SL_STATUS_THREAD_SPACE#

#define SL_STATUS_THREAD_SPACE
Value:
((sl_status_t)0x0900)

sl status thread space.


Definition at line 60 of file platform/common/inc/sl_status.h

SL_STATUS_USB_SPACE#

#define SL_STATUS_USB_SPACE
Value:
((sl_status_t)0x0A00)

sl status usb space.


Definition at line 61 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SPACE#

#define SL_STATUS_WIFI_SPACE
Value:
((sl_status_t)0x0B00)

sl status wifi space.


Definition at line 62 of file platform/common/inc/sl_status.h

SL_STATUS_ZIGBEE_SPACE#

#define SL_STATUS_ZIGBEE_SPACE
Value:
((sl_status_t)0x0C00)

sl status zigbee space.


Definition at line 63 of file platform/common/inc/sl_status.h

SL_STATUS_Z_WAVE_SPACE#

#define SL_STATUS_Z_WAVE_SPACE
Value:
((sl_status_t)0x0D00)

sl status z wave space.


Definition at line 64 of file platform/common/inc/sl_status.h

SL_STATUS_GECKO_OS_1_SPACE#

#define SL_STATUS_GECKO_OS_1_SPACE
Value:
((sl_status_t)0x0E00)

sl status gecko os 1 space.


Definition at line 66 of file platform/common/inc/sl_status.h

SL_STATUS_GECKO_OS_2_SPACE#

#define SL_STATUS_GECKO_OS_2_SPACE
Value:
((sl_status_t)0x0F00)

sl status gecko os 2 space.


Definition at line 67 of file platform/common/inc/sl_status.h

SL_STATUS_BLUETOOTH_CTRL_SPACE#

#define SL_STATUS_BLUETOOTH_CTRL_SPACE
Value:
((sl_status_t)0x1000)

sl status bluetooth ctrl space.


Definition at line 69 of file platform/common/inc/sl_status.h

SL_STATUS_BLUETOOTH_ATT_SPACE#

#define SL_STATUS_BLUETOOTH_ATT_SPACE
Value:
((sl_status_t)0x1100)

sl status bluetooth att space.


Definition at line 70 of file platform/common/inc/sl_status.h

SL_STATUS_BLUETOOTH_SMP_SPACE#

#define SL_STATUS_BLUETOOTH_SMP_SPACE
Value:
((sl_status_t)0x1200)

sl status bluetooth mesh foundation space.


Definition at line 71 of file platform/common/inc/sl_status.h

SL_STATUS_BLUETOOTH_MESH_FOUNDATION_SPACE#

#define SL_STATUS_BLUETOOTH_MESH_FOUNDATION_SPACE
Value:
((sl_status_t)0x1300)

sl status bluetooth mesh foundation space.


Definition at line 72 of file platform/common/inc/sl_status.h

SL_STATUS_WISUN_SPACE#

#define SL_STATUS_WISUN_SPACE
Value:
((sl_status_t)0x1400)

sl status wisun space.


Definition at line 74 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_SPACE#

#define SL_STATUS_COMPUTE_SPACE
Value:
((sl_status_t)0x1500)

sl status compute space.


Definition at line 76 of file platform/common/inc/sl_status.h

SL_STATUS_OK#

#define SL_STATUS_OK
Value:
((sl_status_t)0x0000)

No error.


Definition at line 84 of file platform/common/inc/sl_status.h

SL_STATUS_FAIL#

#define SL_STATUS_FAIL
Value:
((sl_status_t)0x0001)

Generic error.


Definition at line 85 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_STATE#

#define SL_STATUS_INVALID_STATE
Value:
((sl_status_t)0x0002)

Generic invalid state error.


Definition at line 88 of file platform/common/inc/sl_status.h

SL_STATUS_NOT_READY#

#define SL_STATUS_NOT_READY
Value:
((sl_status_t)0x0003)

Module is not ready for requested operation.


Definition at line 89 of file platform/common/inc/sl_status.h

SL_STATUS_BUSY#

#define SL_STATUS_BUSY
Value:
((sl_status_t)0x0004)

Module is busy and cannot carry out requested operation.


Definition at line 90 of file platform/common/inc/sl_status.h

SL_STATUS_IN_PROGRESS#

#define SL_STATUS_IN_PROGRESS
Value:
((sl_status_t)0x0005)

Operation is in progress and not yet complete (pass or fail).


Definition at line 91 of file platform/common/inc/sl_status.h

SL_STATUS_ABORT#

#define SL_STATUS_ABORT
Value:
((sl_status_t)0x0006)

Operation aborted.


Definition at line 92 of file platform/common/inc/sl_status.h

SL_STATUS_TIMEOUT#

#define SL_STATUS_TIMEOUT
Value:
((sl_status_t)0x0007)

Operation timed out.


Definition at line 93 of file platform/common/inc/sl_status.h

SL_STATUS_PERMISSION#

#define SL_STATUS_PERMISSION
Value:
((sl_status_t)0x0008)

Operation not allowed per permissions.


Definition at line 94 of file platform/common/inc/sl_status.h

SL_STATUS_WOULD_BLOCK#

#define SL_STATUS_WOULD_BLOCK
Value:
((sl_status_t)0x0009)

Non-blocking operation would block.


Definition at line 95 of file platform/common/inc/sl_status.h

SL_STATUS_IDLE#

#define SL_STATUS_IDLE
Value:
((sl_status_t)0x000A)

Operation/module is Idle, cannot carry requested operation.


Definition at line 96 of file platform/common/inc/sl_status.h

SL_STATUS_IS_WAITING#

#define SL_STATUS_IS_WAITING
Value:
((sl_status_t)0x000B)

Operation cannot be done while construct is waiting.


Definition at line 97 of file platform/common/inc/sl_status.h

SL_STATUS_NONE_WAITING#

#define SL_STATUS_NONE_WAITING
Value:
((sl_status_t)0x000C)

No task/construct waiting/pending for that action/event.


Definition at line 98 of file platform/common/inc/sl_status.h

SL_STATUS_SUSPENDED#

#define SL_STATUS_SUSPENDED
Value:
((sl_status_t)0x000D)

Operation cannot be done while construct is suspended.


Definition at line 99 of file platform/common/inc/sl_status.h

SL_STATUS_NOT_AVAILABLE#

#define SL_STATUS_NOT_AVAILABLE
Value:
((sl_status_t)0x000E)

Feature not available due to software configuration.


Definition at line 100 of file platform/common/inc/sl_status.h

SL_STATUS_NOT_SUPPORTED#

#define SL_STATUS_NOT_SUPPORTED
Value:
((sl_status_t)0x000F)

Feature not supported.


Definition at line 101 of file platform/common/inc/sl_status.h

SL_STATUS_INITIALIZATION#

#define SL_STATUS_INITIALIZATION
Value:
((sl_status_t)0x0010)

Initialization failed.


Definition at line 102 of file platform/common/inc/sl_status.h

SL_STATUS_NOT_INITIALIZED#

#define SL_STATUS_NOT_INITIALIZED
Value:
((sl_status_t)0x0011)

Module has not been initialized.


Definition at line 103 of file platform/common/inc/sl_status.h

SL_STATUS_ALREADY_INITIALIZED#

#define SL_STATUS_ALREADY_INITIALIZED
Value:
((sl_status_t)0x0012)

Module has already been initialized.


Definition at line 104 of file platform/common/inc/sl_status.h

SL_STATUS_DELETED#

#define SL_STATUS_DELETED
Value:
((sl_status_t)0x0013)

Object/construct has been deleted.


Definition at line 105 of file platform/common/inc/sl_status.h

SL_STATUS_ISR#

#define SL_STATUS_ISR
Value:
((sl_status_t)0x0014)

Illegal call from ISR.


Definition at line 106 of file platform/common/inc/sl_status.h

SL_STATUS_NETWORK_UP#

#define SL_STATUS_NETWORK_UP
Value:
((sl_status_t)0x0015)

Illegal call because network is up.


Definition at line 107 of file platform/common/inc/sl_status.h

SL_STATUS_NETWORK_DOWN#

#define SL_STATUS_NETWORK_DOWN
Value:
((sl_status_t)0x0016)

Illegal call because network is down.


Definition at line 108 of file platform/common/inc/sl_status.h

SL_STATUS_NOT_JOINED#

#define SL_STATUS_NOT_JOINED
Value:
((sl_status_t)0x0017)

Failure due to not being joined in a network.


Definition at line 109 of file platform/common/inc/sl_status.h

SL_STATUS_NO_BEACONS#

#define SL_STATUS_NO_BEACONS
Value:
((sl_status_t)0x0018)

Invalid operation as there are no beacons.


Definition at line 110 of file platform/common/inc/sl_status.h

SL_STATUS_ALLOCATION_FAILED#

#define SL_STATUS_ALLOCATION_FAILED
Value:
((sl_status_t)0x0019)

Generic allocation error.


Definition at line 113 of file platform/common/inc/sl_status.h

SL_STATUS_NO_MORE_RESOURCE#

#define SL_STATUS_NO_MORE_RESOURCE
Value:
((sl_status_t)0x001A)

No more resource available to perform the operation.


Definition at line 114 of file platform/common/inc/sl_status.h

SL_STATUS_EMPTY#

#define SL_STATUS_EMPTY
Value:
((sl_status_t)0x001B)

Item/list/queue is empty.


Definition at line 115 of file platform/common/inc/sl_status.h

SL_STATUS_FULL#

#define SL_STATUS_FULL
Value:
((sl_status_t)0x001C)

Item/list/queue is full.


Definition at line 116 of file platform/common/inc/sl_status.h

SL_STATUS_WOULD_OVERFLOW#

#define SL_STATUS_WOULD_OVERFLOW
Value:
((sl_status_t)0x001D)

Item would overflow.


Definition at line 117 of file platform/common/inc/sl_status.h

SL_STATUS_HAS_OVERFLOWED#

#define SL_STATUS_HAS_OVERFLOWED
Value:
((sl_status_t)0x001E)

Item/list/queue has been overflowed.


Definition at line 118 of file platform/common/inc/sl_status.h

SL_STATUS_OWNERSHIP#

#define SL_STATUS_OWNERSHIP
Value:
((sl_status_t)0x001F)

Generic ownership error.


Definition at line 119 of file platform/common/inc/sl_status.h

SL_STATUS_IS_OWNER#

#define SL_STATUS_IS_OWNER
Value:
((sl_status_t)0x0020)

Already/still owning resource.


Definition at line 120 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_PARAMETER#

#define SL_STATUS_INVALID_PARAMETER
Value:
((sl_status_t)0x0021)

Generic invalid argument or consequence of invalid argument.


Definition at line 123 of file platform/common/inc/sl_status.h

SL_STATUS_NULL_POINTER#

#define SL_STATUS_NULL_POINTER
Value:
((sl_status_t)0x0022)

Invalid null pointer received as argument.


Definition at line 124 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_CONFIGURATION#

#define SL_STATUS_INVALID_CONFIGURATION
Value:
((sl_status_t)0x0023)

Invalid configuration provided.


Definition at line 125 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_MODE#

#define SL_STATUS_INVALID_MODE
Value:
((sl_status_t)0x0024)

Invalid mode.


Definition at line 126 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_HANDLE#

#define SL_STATUS_INVALID_HANDLE
Value:
((sl_status_t)0x0025)

Invalid handle.


Definition at line 127 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_TYPE#

#define SL_STATUS_INVALID_TYPE
Value:
((sl_status_t)0x0026)

Invalid type for operation.


Definition at line 128 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_INDEX#

#define SL_STATUS_INVALID_INDEX
Value:
((sl_status_t)0x0027)

Invalid index.


Definition at line 129 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_RANGE#

#define SL_STATUS_INVALID_RANGE
Value:
((sl_status_t)0x0028)

Invalid range.


Definition at line 130 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_KEY#

#define SL_STATUS_INVALID_KEY
Value:
((sl_status_t)0x0029)

Invalid key.


Definition at line 131 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_CREDENTIALS#

#define SL_STATUS_INVALID_CREDENTIALS
Value:
((sl_status_t)0x002A)

Invalid credentials.


Definition at line 132 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_COUNT#

#define SL_STATUS_INVALID_COUNT
Value:
((sl_status_t)0x002B)

Invalid count.


Definition at line 133 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_SIGNATURE#

#define SL_STATUS_INVALID_SIGNATURE
Value:
((sl_status_t)0x002C)

Invalid signature / verification failed.


Definition at line 134 of file platform/common/inc/sl_status.h

SL_STATUS_NOT_FOUND#

#define SL_STATUS_NOT_FOUND
Value:
((sl_status_t)0x002D)

Item could not be found.


Definition at line 135 of file platform/common/inc/sl_status.h

SL_STATUS_ALREADY_EXISTS#

#define SL_STATUS_ALREADY_EXISTS
Value:
((sl_status_t)0x002E)

Item already exists.


Definition at line 136 of file platform/common/inc/sl_status.h

SL_STATUS_IO#

#define SL_STATUS_IO
Value:
((sl_status_t)0x002F)

Generic I/O failure.


Definition at line 139 of file platform/common/inc/sl_status.h

SL_STATUS_IO_TIMEOUT#

#define SL_STATUS_IO_TIMEOUT
Value:
((sl_status_t)0x0030)

I/O failure due to timeout.


Definition at line 140 of file platform/common/inc/sl_status.h

SL_STATUS_TRANSMIT#

#define SL_STATUS_TRANSMIT
Value:
((sl_status_t)0x0031)

Generic transmission error.


Definition at line 141 of file platform/common/inc/sl_status.h

SL_STATUS_TRANSMIT_UNDERFLOW#

#define SL_STATUS_TRANSMIT_UNDERFLOW
Value:
((sl_status_t)0x0032)

Transmit underflowed.


Definition at line 142 of file platform/common/inc/sl_status.h

SL_STATUS_TRANSMIT_INCOMPLETE#

#define SL_STATUS_TRANSMIT_INCOMPLETE
Value:
((sl_status_t)0x0033)

Transmit is incomplete.


Definition at line 143 of file platform/common/inc/sl_status.h

SL_STATUS_TRANSMIT_BUSY#

#define SL_STATUS_TRANSMIT_BUSY
Value:
((sl_status_t)0x0034)

Transmit is busy.


Definition at line 144 of file platform/common/inc/sl_status.h

SL_STATUS_RECEIVE#

#define SL_STATUS_RECEIVE
Value:
((sl_status_t)0x0035)

Generic reception error.


Definition at line 145 of file platform/common/inc/sl_status.h

SL_STATUS_OBJECT_READ#

#define SL_STATUS_OBJECT_READ
Value:
((sl_status_t)0x0036)

Failed to read on/via given object.


Definition at line 146 of file platform/common/inc/sl_status.h

SL_STATUS_OBJECT_WRITE#

#define SL_STATUS_OBJECT_WRITE
Value:
((sl_status_t)0x0037)

Failed to write on/via given object.


Definition at line 147 of file platform/common/inc/sl_status.h

SL_STATUS_MESSAGE_TOO_LONG#

#define SL_STATUS_MESSAGE_TOO_LONG
Value:
((sl_status_t)0x0038)

Message is too long.


Definition at line 148 of file platform/common/inc/sl_status.h

SL_STATUS_EEPROM_MFG_VERSION_MISMATCH#

#define SL_STATUS_EEPROM_MFG_VERSION_MISMATCH
Value:
((sl_status_t)0x0039)

EEPROM MFG version mismatch.


Definition at line 151 of file platform/common/inc/sl_status.h

SL_STATUS_EEPROM_STACK_VERSION_MISMATCH#

#define SL_STATUS_EEPROM_STACK_VERSION_MISMATCH
Value:
((sl_status_t)0x003A)

EEPROM Stack version mismatch.


Definition at line 152 of file platform/common/inc/sl_status.h

SL_STATUS_FLASH_WRITE_INHIBITED#

#define SL_STATUS_FLASH_WRITE_INHIBITED
Value:
((sl_status_t)0x003B)

Flash write is inhibited.


Definition at line 153 of file platform/common/inc/sl_status.h

SL_STATUS_FLASH_VERIFY_FAILED#

#define SL_STATUS_FLASH_VERIFY_FAILED
Value:
((sl_status_t)0x003C)

Flash verification failed.


Definition at line 154 of file platform/common/inc/sl_status.h

SL_STATUS_FLASH_PROGRAM_FAILED#

#define SL_STATUS_FLASH_PROGRAM_FAILED
Value:
((sl_status_t)0x003D)

Flash programming failed.


Definition at line 155 of file platform/common/inc/sl_status.h

SL_STATUS_FLASH_ERASE_FAILED#

#define SL_STATUS_FLASH_ERASE_FAILED
Value:
((sl_status_t)0x003E)

Flash erase failed.


Definition at line 156 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_NO_DATA#

#define SL_STATUS_MAC_NO_DATA
Value:
((sl_status_t)0x003F)

MAC no data.


Definition at line 159 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_NO_ACK_RECEIVED#

#define SL_STATUS_MAC_NO_ACK_RECEIVED
Value:
((sl_status_t)0x0040)

MAC no ACK received.


Definition at line 160 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_INDIRECT_TIMEOUT#

#define SL_STATUS_MAC_INDIRECT_TIMEOUT
Value:
((sl_status_t)0x0041)

MAC indirect timeout.


Definition at line 161 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_UNKNOWN_HEADER_TYPE#

#define SL_STATUS_MAC_UNKNOWN_HEADER_TYPE
Value:
((sl_status_t)0x0042)

MAC unknown header type.


Definition at line 162 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_ACK_HEADER_TYPE#

#define SL_STATUS_MAC_ACK_HEADER_TYPE
Value:
((sl_status_t)0x0043)

MAC ACK unknown header type.


Definition at line 163 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_COMMAND_TRANSMIT_FAILURE#

#define SL_STATUS_MAC_COMMAND_TRANSMIT_FAILURE
Value:
((sl_status_t)0x0044)

MAC command transmit failure.


Definition at line 164 of file platform/common/inc/sl_status.h

SL_STATUS_CLI_STORAGE_NVM_OPEN_ERROR#

#define SL_STATUS_CLI_STORAGE_NVM_OPEN_ERROR
Value:
((sl_status_t)0x0045)

Error in open NVM.


Definition at line 167 of file platform/common/inc/sl_status.h

SL_STATUS_SECURITY_IMAGE_CHECKSUM_ERROR#

#define SL_STATUS_SECURITY_IMAGE_CHECKSUM_ERROR
Value:
((sl_status_t)0x0046)

Image checksum is not valid.


Definition at line 170 of file platform/common/inc/sl_status.h

SL_STATUS_SECURITY_DECRYPT_ERROR#

#define SL_STATUS_SECURITY_DECRYPT_ERROR
Value:
((sl_status_t)0x0047)

Decryption failed.


Definition at line 171 of file platform/common/inc/sl_status.h

SL_STATUS_COMMAND_IS_INVALID#

#define SL_STATUS_COMMAND_IS_INVALID
Value:
((sl_status_t)0x0048)

Command was not recognized.


Definition at line 174 of file platform/common/inc/sl_status.h

SL_STATUS_COMMAND_TOO_LONG#

#define SL_STATUS_COMMAND_TOO_LONG
Value:
((sl_status_t)0x0049)

Command or parameter maximum length exceeded.


Definition at line 175 of file platform/common/inc/sl_status.h

SL_STATUS_COMMAND_INCOMPLETE#

#define SL_STATUS_COMMAND_INCOMPLETE
Value:
((sl_status_t)0x004A)

Data received does not form a complete command.


Definition at line 176 of file platform/common/inc/sl_status.h

SL_STATUS_BUS_ERROR#

#define SL_STATUS_BUS_ERROR
Value:
((sl_status_t)0x004B)

Bus error, e.g. invalid DMA address.


Definition at line 179 of file platform/common/inc/sl_status.h

SL_STATUS_CCA_FAILURE#

#define SL_STATUS_CCA_FAILURE
Value:
((sl_status_t)0x004C)

CCA failure.


Definition at line 182 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_SCANNING#

#define SL_STATUS_MAC_SCANNING
Value:
((sl_status_t)0x004D)

MAC scanning.


Definition at line 185 of file platform/common/inc/sl_status.h

SL_STATUS_MAC_INCORRECT_SCAN_TYPE#

#define SL_STATUS_MAC_INCORRECT_SCAN_TYPE
Value:
((sl_status_t)0x004E)

MAC incorrect scan type.


Definition at line 186 of file platform/common/inc/sl_status.h

SL_STATUS_INVALID_CHANNEL_MASK#

#define SL_STATUS_INVALID_CHANNEL_MASK
Value:
((sl_status_t)0x004F)

Invalid channel mask.


Definition at line 187 of file platform/common/inc/sl_status.h

SL_STATUS_BAD_SCAN_DURATION#

#define SL_STATUS_BAD_SCAN_DURATION
Value:
((sl_status_t)0x0050)

Bad scan duration.


Definition at line 188 of file platform/common/inc/sl_status.h

SL_STATUS_BT_OUT_OF_BONDS#

#define SL_STATUS_BT_OUT_OF_BONDS
Value:
((sl_status_t)0x0402)

Bonding procedure can't be started because device has no space left for bond.


Definition at line 191 of file platform/common/inc/sl_status.h

SL_STATUS_BT_UNSPECIFIED#

#define SL_STATUS_BT_UNSPECIFIED
Value:
((sl_status_t)0x0403)

Unspecified error.


Definition at line 192 of file platform/common/inc/sl_status.h

SL_STATUS_BT_HARDWARE#

#define SL_STATUS_BT_HARDWARE
Value:
((sl_status_t)0x0404)

Hardware failure.


Definition at line 193 of file platform/common/inc/sl_status.h

SL_STATUS_BT_NO_BONDING#

#define SL_STATUS_BT_NO_BONDING
Value:
((sl_status_t)0x0406)

The bonding does not exist.


Definition at line 194 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CRYPTO#

#define SL_STATUS_BT_CRYPTO
Value:
((sl_status_t)0x0407)

Error using crypto functions.


Definition at line 195 of file platform/common/inc/sl_status.h

SL_STATUS_BT_DATA_CORRUPTED#

#define SL_STATUS_BT_DATA_CORRUPTED
Value:
((sl_status_t)0x0408)

Data was corrupted.


Definition at line 196 of file platform/common/inc/sl_status.h

SL_STATUS_BT_INVALID_SYNC_HANDLE#

#define SL_STATUS_BT_INVALID_SYNC_HANDLE
Value:
((sl_status_t)0x040A)

Invalid periodic advertising sync handle.


Definition at line 197 of file platform/common/inc/sl_status.h

SL_STATUS_BT_INVALID_MODULE_ACTION#

#define SL_STATUS_BT_INVALID_MODULE_ACTION
Value:
((sl_status_t)0x040B)

Bluetooth cannot be used on this hardware.


Definition at line 198 of file platform/common/inc/sl_status.h

SL_STATUS_BT_RADIO#

#define SL_STATUS_BT_RADIO
Value:
((sl_status_t)0x040C)

Error received from radio.


Definition at line 199 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_REMOTE_DISCONNECTED#

#define SL_STATUS_BT_L2CAP_REMOTE_DISCONNECTED
Value:
((sl_status_t)0x040D)

Returned when remote disconnects the connection-oriented channel by sending disconnection request.


Definition at line 200 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_LOCAL_DISCONNECTED#

#define SL_STATUS_BT_L2CAP_LOCAL_DISCONNECTED
Value:
((sl_status_t)0x040E)

Returned when local host disconnect the connection-oriented channel by sending disconnection request.


Definition at line 201 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_CID_NOT_EXIST#

#define SL_STATUS_BT_L2CAP_CID_NOT_EXIST
Value:
((sl_status_t)0x040F)

Returned when local host did not find a connection-oriented channel with given destination CID.


Definition at line 202 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_LE_DISCONNECTED#

#define SL_STATUS_BT_L2CAP_LE_DISCONNECTED
Value:
((sl_status_t)0x0410)

Returned when connection-oriented channel disconnected due to LE connection is dropped.


Definition at line 203 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_FLOW_CONTROL_VIOLATED#

#define SL_STATUS_BT_L2CAP_FLOW_CONTROL_VIOLATED
Value:
((sl_status_t)0x0412)

Returned when connection-oriented channel disconnected due to remote end send data even without credit.


Definition at line 204 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_FLOW_CONTROL_CREDIT_OVERFLOWED#

#define SL_STATUS_BT_L2CAP_FLOW_CONTROL_CREDIT_OVERFLOWED
Value:
((sl_status_t)0x0413)

Returned when connection-oriented channel disconnected due to remote end send flow control credits exceed 65535.


Definition at line 205 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_NO_FLOW_CONTROL_CREDIT#

#define SL_STATUS_BT_L2CAP_NO_FLOW_CONTROL_CREDIT
Value:
((sl_status_t)0x0414)

Returned when connection-oriented channel has run out of flow control credit and local application still trying to send data.


Definition at line 206 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_CONNECTION_REQUEST_TIMEOUT#

#define SL_STATUS_BT_L2CAP_CONNECTION_REQUEST_TIMEOUT
Value:
((sl_status_t)0x0415)

Returned when connection-oriented channel has not received connection response message within maximum timeout.


Definition at line 207 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_INVALID_CID#

#define SL_STATUS_BT_L2CAP_INVALID_CID
Value:
((sl_status_t)0x0416)

Returned when local host received a connection-oriented channel connection response with an invalid destination CID.


Definition at line 208 of file platform/common/inc/sl_status.h

SL_STATUS_BT_L2CAP_WRONG_STATE#

#define SL_STATUS_BT_L2CAP_WRONG_STATE
Value:
((sl_status_t)0x0417)

Returned when local host application tries to send a command which is not suitable for L2CAP channel's current state.


Definition at line 209 of file platform/common/inc/sl_status.h

SL_STATUS_BT_PS_STORE_FULL#

#define SL_STATUS_BT_PS_STORE_FULL
Value:
((sl_status_t)0x041B)

Flash reserved for PS store is full.


Definition at line 210 of file platform/common/inc/sl_status.h

SL_STATUS_BT_PS_KEY_NOT_FOUND#

#define SL_STATUS_BT_PS_KEY_NOT_FOUND
Value:
((sl_status_t)0x041C)

PS key not found.


Definition at line 211 of file platform/common/inc/sl_status.h

SL_STATUS_BT_APPLICATION_MISMATCHED_OR_INSUFFICIENT_SECURITY#

#define SL_STATUS_BT_APPLICATION_MISMATCHED_OR_INSUFFICIENT_SECURITY
Value:
((sl_status_t)0x041D)

Mismatched or insufficient security level.


Definition at line 212 of file platform/common/inc/sl_status.h

SL_STATUS_BT_APPLICATION_ENCRYPTION_DECRYPTION_ERROR#

#define SL_STATUS_BT_APPLICATION_ENCRYPTION_DECRYPTION_ERROR
Value:
((sl_status_t)0x041E)

Encryption/decryption operation failed.


Definition at line 213 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_UNKNOWN_CONNECTION_IDENTIFIER#

#define SL_STATUS_BT_CTRL_UNKNOWN_CONNECTION_IDENTIFIER
Value:
((sl_status_t)0x1002)

Connection does not exist, or connection open request was cancelled.


Definition at line 216 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_AUTHENTICATION_FAILURE#

#define SL_STATUS_BT_CTRL_AUTHENTICATION_FAILURE
Value:
((sl_status_t)0x1005)

Pairing or authentication failed due to incorrect results in the pairing or authentication procedure. This could be due to an incorrect PIN or Link Key.


Definition at line 217 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_PIN_OR_KEY_MISSING#

#define SL_STATUS_BT_CTRL_PIN_OR_KEY_MISSING
Value:
((sl_status_t)0x1006)

Pairing failed because of missing PIN, or authentication failed because of missing Key.


Definition at line 218 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_MEMORY_CAPACITY_EXCEEDED#

#define SL_STATUS_BT_CTRL_MEMORY_CAPACITY_EXCEEDED
Value:
((sl_status_t)0x1007)

Controller is out of memory.


Definition at line 219 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_TIMEOUT#

#define SL_STATUS_BT_CTRL_CONNECTION_TIMEOUT
Value:
((sl_status_t)0x1008)

Link supervision timeout has expired.


Definition at line 220 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_LIMIT_EXCEEDED#

#define SL_STATUS_BT_CTRL_CONNECTION_LIMIT_EXCEEDED
Value:
((sl_status_t)0x1009)

Controller is at limit of connections it can support.


Definition at line 221 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_SYNCHRONOUS_CONNECTION_LIMIT_EXCEEDED#

#define SL_STATUS_BT_CTRL_SYNCHRONOUS_CONNECTION_LIMIT_EXCEEDED
Value:
((sl_status_t)0x100A)

The Synchronous Connection Limit to a Device Exceeded error code indicates that the Controller has reached the limit to the number of synchronous connections that can be achieved to a device.


Definition at line 222 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_ACL_CONNECTION_ALREADY_EXISTS#

#define SL_STATUS_BT_CTRL_ACL_CONNECTION_ALREADY_EXISTS
Value:
((sl_status_t)0x100B)

The ACL Connection Already Exists error code indicates that an attempt to create a new ACL Connection to a device when there is already a connection to this device.


Definition at line 223 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_COMMAND_DISALLOWED#

#define SL_STATUS_BT_CTRL_COMMAND_DISALLOWED
Value:
((sl_status_t)0x100C)

Command requested cannot be executed because the Controller is in a state where it cannot process this command at this time.


Definition at line 224 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES#

#define SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES
Value:
((sl_status_t)0x100D)

The Connection Rejected Due To Limited Resources error code indicates that an incoming connection was rejected due to limited resources.


Definition at line 225 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS#

#define SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS
Value:
((sl_status_t)0x100E)

The Connection Rejected Due To Security Reasons error code indicates that a connection was rejected due to security requirements not being fulfilled, like authentication or pairing.


Definition at line 226 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR#

#define SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR
Value:
((sl_status_t)0x100F)

The Connection was rejected because this device does not accept the BD_ADDR. This may be because the device will only accept connections from specific BD_ADDRs.


Definition at line 227 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_ACCEPT_TIMEOUT_EXCEEDED#

#define SL_STATUS_BT_CTRL_CONNECTION_ACCEPT_TIMEOUT_EXCEEDED
Value:
((sl_status_t)0x1010)

The Connection Accept Timeout has been exceeded for this connection attempt.


Definition at line 228 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE#

#define SL_STATUS_BT_CTRL_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE
Value:
((sl_status_t)0x1011)

A feature or parameter value in the HCI command is not supported.


Definition at line 229 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_INVALID_COMMAND_PARAMETERS#

#define SL_STATUS_BT_CTRL_INVALID_COMMAND_PARAMETERS
Value:
((sl_status_t)0x1012)

Command contained invalid parameters.


Definition at line 230 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_REMOTE_USER_TERMINATED#

#define SL_STATUS_BT_CTRL_REMOTE_USER_TERMINATED
Value:
((sl_status_t)0x1013)

User on the remote device terminated the connection.


Definition at line 231 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_REMOTE_DEVICE_TERMINATED_CONNECTION_DUE_TO_LOW_RESOURCES#

#define SL_STATUS_BT_CTRL_REMOTE_DEVICE_TERMINATED_CONNECTION_DUE_TO_LOW_RESOURCES
Value:
((sl_status_t)0x1014)

The remote device terminated the connection because of low resources.


Definition at line 232 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_REMOTE_POWERING_OFF#

#define SL_STATUS_BT_CTRL_REMOTE_POWERING_OFF
Value:
((sl_status_t)0x1015)

Remote Device Terminated Connection due to Power Off.


Definition at line 233 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_TERMINATED_BY_LOCAL_HOST#

#define SL_STATUS_BT_CTRL_CONNECTION_TERMINATED_BY_LOCAL_HOST
Value:
((sl_status_t)0x1016)

Local device terminated the connection.


Definition at line 234 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_REPEATED_ATTEMPTS#

#define SL_STATUS_BT_CTRL_REPEATED_ATTEMPTS
Value:
((sl_status_t)0x1017)

The Controller is disallowing an authentication or pairing procedure because too little time has elapsed since the last authentication or pairing attempt failed.


Definition at line 235 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_PAIRING_NOT_ALLOWED#

#define SL_STATUS_BT_CTRL_PAIRING_NOT_ALLOWED
Value:
((sl_status_t)0x1018)

The device does not allow pairing. This can be for example, when a device only allows pairing during a certain time window after some user input allows pairing.


Definition at line 236 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_UNSUPPORTED_REMOTE_FEATURE#

#define SL_STATUS_BT_CTRL_UNSUPPORTED_REMOTE_FEATURE
Value:
((sl_status_t)0x101A)

The remote device does not support the feature associated with the issued command.


Definition at line 237 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_UNSPECIFIED_ERROR#

#define SL_STATUS_BT_CTRL_UNSPECIFIED_ERROR
Value:
((sl_status_t)0x101F)

No other error code specified is appropriate to use.


Definition at line 238 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_LL_RESPONSE_TIMEOUT#

#define SL_STATUS_BT_CTRL_LL_RESPONSE_TIMEOUT
Value:
((sl_status_t)0x1022)

Connection terminated due to link-layer procedure timeout.


Definition at line 239 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_LL_PROCEDURE_COLLISION#

#define SL_STATUS_BT_CTRL_LL_PROCEDURE_COLLISION
Value:
((sl_status_t)0x1023)

LL procedure has collided with the same transaction or procedure that is already in progress.


Definition at line 240 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_ENCRYPTION_MODE_NOT_ACCEPTABLE#

#define SL_STATUS_BT_CTRL_ENCRYPTION_MODE_NOT_ACCEPTABLE
Value:
((sl_status_t)0x1025)

The requested encryption mode is not acceptable at this time.


Definition at line 241 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_LINK_KEY_CANNOT_BE_CHANGED#

#define SL_STATUS_BT_CTRL_LINK_KEY_CANNOT_BE_CHANGED
Value:
((sl_status_t)0x1026)

Link key cannot be changed because a fixed unit key is being used.


Definition at line 242 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_INSTANT_PASSED#

#define SL_STATUS_BT_CTRL_INSTANT_PASSED
Value:
((sl_status_t)0x1028)

LMP PDU or LL PDU that includes an instant cannot be performed because the instant when this would have occurred has passed.


Definition at line 243 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED#

#define SL_STATUS_BT_CTRL_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED
Value:
((sl_status_t)0x1029)

It was not possible to pair as a unit key was requested and it is not supported.


Definition at line 244 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_DIFFERENT_TRANSACTION_COLLISION#

#define SL_STATUS_BT_CTRL_DIFFERENT_TRANSACTION_COLLISION
Value:
((sl_status_t)0x102A)

LMP transaction was started that collides with an ongoing transaction.


Definition at line 245 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CHANNEL_ASSESSMENT_NOT_SUPPORTED#

#define SL_STATUS_BT_CTRL_CHANNEL_ASSESSMENT_NOT_SUPPORTED
Value:
((sl_status_t)0x102E)

The Controller cannot perform channel assessment because it is not supported.


Definition at line 246 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_INSUFFICIENT_SECURITY#

#define SL_STATUS_BT_CTRL_INSUFFICIENT_SECURITY
Value:
((sl_status_t)0x102F)

The HCI command or LMP PDU sent is only possible on an encrypted link.


Definition at line 247 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_PARAMETER_OUT_OF_MANDATORY_RANGE#

#define SL_STATUS_BT_CTRL_PARAMETER_OUT_OF_MANDATORY_RANGE
Value:
((sl_status_t)0x1030)

A parameter value requested is outside the mandatory range of parameters for the given HCI command or LMP PDU.


Definition at line 248 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST#

#define SL_STATUS_BT_CTRL_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST
Value:
((sl_status_t)0x1037)

The IO capabilities request or response was rejected because the sending Host does not support Secure Simple Pairing even though the receiving Link Manager does.


Definition at line 249 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_HOST_BUSY_PAIRING#

#define SL_STATUS_BT_CTRL_HOST_BUSY_PAIRING
Value:
((sl_status_t)0x1038)

The Host is busy with another pairing operation and unable to support the requested pairing. The receiving device should retry pairing again later.


Definition at line 250 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_NO_SUITABLE_CHANNEL_FOUND#

#define SL_STATUS_BT_CTRL_CONNECTION_REJECTED_DUE_TO_NO_SUITABLE_CHANNEL_FOUND
Value:
((sl_status_t)0x1039)

The Controller could not calculate an appropriate value for the Channel selection operation.


Definition at line 251 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONTROLLER_BUSY#

#define SL_STATUS_BT_CTRL_CONTROLLER_BUSY
Value:
((sl_status_t)0x103A)

Operation was rejected because the controller is busy and unable to process the request.


Definition at line 252 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_UNACCEPTABLE_CONNECTION_INTERVAL#

#define SL_STATUS_BT_CTRL_UNACCEPTABLE_CONNECTION_INTERVAL
Value:
((sl_status_t)0x103B)

Remote device terminated the connection because of an unacceptable connection interval.


Definition at line 253 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_ADVERTISING_TIMEOUT#

#define SL_STATUS_BT_CTRL_ADVERTISING_TIMEOUT
Value:
((sl_status_t)0x103C)

Advertising for a fixed duration completed or, for directed advertising, that advertising completed without a connection being created.


Definition at line 254 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE#

#define SL_STATUS_BT_CTRL_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE
Value:
((sl_status_t)0x103D)

Connection was terminated because the Message Integrity Check (MIC) failed on a received packet.


Definition at line 255 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_CONNECTION_FAILED_TO_BE_ESTABLISHED#

#define SL_STATUS_BT_CTRL_CONNECTION_FAILED_TO_BE_ESTABLISHED
Value:
((sl_status_t)0x103E)

LL initiated a connection but the connection has failed to be established. Controller did not receive any packets from remote end.


Definition at line 256 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_MAC_CONNECTION_FAILED#

#define SL_STATUS_BT_CTRL_MAC_CONNECTION_FAILED
Value:
((sl_status_t)0x103F)

The MAC of the 802.11 AMP was requested to connect to a peer, but the connection failed.


Definition at line 257 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_COARSE_CLOCK_ADJUSTMENT_REJECTED_BUT_WILL_TRY_TO_ADJUST_USING_CLOCK_DRAGGING#

#define SL_STATUS_BT_CTRL_COARSE_CLOCK_ADJUSTMENT_REJECTED_BUT_WILL_TRY_TO_ADJUST_USING_CLOCK_DRAGGING
Value:
((sl_status_t)0x1040)

The master, at this time, is unable to make a coarse adjustment to the piconet clock, using the supplied parameters. Instead the master will attempt to move the clock using clock dragging.


Definition at line 258 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_UNKNOWN_ADVERTISING_IDENTIFIER#

#define SL_STATUS_BT_CTRL_UNKNOWN_ADVERTISING_IDENTIFIER
Value:
((sl_status_t)0x1042)

A command was sent from the Host that should identify an Advertising or Sync handle, but the Advertising or Sync handle does not exist.


Definition at line 259 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_LIMIT_REACHED#

#define SL_STATUS_BT_CTRL_LIMIT_REACHED
Value:
((sl_status_t)0x1043)

Number of operations requested has been reached and has indicated the completion of the activity (e.g., advertising or scanning).


Definition at line 260 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_OPERATION_CANCELLED_BY_HOST#

#define SL_STATUS_BT_CTRL_OPERATION_CANCELLED_BY_HOST
Value:
((sl_status_t)0x1044)

A request to the Controller issued by the Host and still pending was successfully canceled.


Definition at line 261 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_PACKET_TOO_LONG#

#define SL_STATUS_BT_CTRL_PACKET_TOO_LONG
Value:
((sl_status_t)0x1045)

An attempt was made to send or receive a packet that exceeds the maximum allowed packet length.


Definition at line 262 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_TOO_LATE#

#define SL_STATUS_BT_CTRL_TOO_LATE
Value:
((sl_status_t)0x1046)

Information was provided too late to the controller.


Definition at line 263 of file platform/common/inc/sl_status.h

SL_STATUS_BT_CTRL_TOO_EARLY#

#define SL_STATUS_BT_CTRL_TOO_EARLY
Value:
((sl_status_t)0x1047)

Information was provided too early to the controller.


Definition at line 264 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INVALID_HANDLE#

#define SL_STATUS_BT_ATT_INVALID_HANDLE
Value:
((sl_status_t)0x1101)

The attribute handle given was not valid on this server.


Definition at line 267 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_READ_NOT_PERMITTED#

#define SL_STATUS_BT_ATT_READ_NOT_PERMITTED
Value:
((sl_status_t)0x1102)

The attribute cannot be read.


Definition at line 268 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_WRITE_NOT_PERMITTED#

#define SL_STATUS_BT_ATT_WRITE_NOT_PERMITTED
Value:
((sl_status_t)0x1103)

The attribute cannot be written.


Definition at line 269 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INVALID_PDU#

#define SL_STATUS_BT_ATT_INVALID_PDU
Value:
((sl_status_t)0x1104)

The attribute PDU was invalid.


Definition at line 270 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INSUFFICIENT_AUTHENTICATION#

#define SL_STATUS_BT_ATT_INSUFFICIENT_AUTHENTICATION
Value:
((sl_status_t)0x1105)

The attribute requires authentication before it can be read or written.


Definition at line 271 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_REQUEST_NOT_SUPPORTED#

#define SL_STATUS_BT_ATT_REQUEST_NOT_SUPPORTED
Value:
((sl_status_t)0x1106)

Attribute Server does not support the request received from the client.


Definition at line 272 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INVALID_OFFSET#

#define SL_STATUS_BT_ATT_INVALID_OFFSET
Value:
((sl_status_t)0x1107)

Offset specified was past the end of the attribute.


Definition at line 273 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INSUFFICIENT_AUTHORIZATION#

#define SL_STATUS_BT_ATT_INSUFFICIENT_AUTHORIZATION
Value:
((sl_status_t)0x1108)

The attribute requires authorization before it can be read or written.


Definition at line 274 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_PREPARE_QUEUE_FULL#

#define SL_STATUS_BT_ATT_PREPARE_QUEUE_FULL
Value:
((sl_status_t)0x1109)

Too many prepare writes have been queued.


Definition at line 275 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_ATT_NOT_FOUND#

#define SL_STATUS_BT_ATT_ATT_NOT_FOUND
Value:
((sl_status_t)0x110A)

No attribute found within the given attribute handle range.


Definition at line 276 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_ATT_NOT_LONG#

#define SL_STATUS_BT_ATT_ATT_NOT_LONG
Value:
((sl_status_t)0x110B)

The attribute cannot be read or written using the Read Blob Request.


Definition at line 277 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INSUFFICIENT_ENC_KEY_SIZE#

#define SL_STATUS_BT_ATT_INSUFFICIENT_ENC_KEY_SIZE
Value:
((sl_status_t)0x110C)

The Encryption Key Size used for encrypting this link is insufficient.


Definition at line 278 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INVALID_ATT_LENGTH#

#define SL_STATUS_BT_ATT_INVALID_ATT_LENGTH
Value:
((sl_status_t)0x110D)

The attribute value length is invalid for the operation.


Definition at line 279 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_UNLIKELY_ERROR#

#define SL_STATUS_BT_ATT_UNLIKELY_ERROR
Value:
((sl_status_t)0x110E)

The attribute request that was requested has encountered an error that was unlikely, and therefore could not be completed as requested.


Definition at line 280 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INSUFFICIENT_ENCRYPTION#

#define SL_STATUS_BT_ATT_INSUFFICIENT_ENCRYPTION
Value:
((sl_status_t)0x110F)

The attribute requires encryption before it can be read or written.


Definition at line 281 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_UNSUPPORTED_GROUP_TYPE#

#define SL_STATUS_BT_ATT_UNSUPPORTED_GROUP_TYPE
Value:
((sl_status_t)0x1110)

The attribute type is not a supported grouping attribute as defined by a higher layer specification.


Definition at line 282 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_INSUFFICIENT_RESOURCES#

#define SL_STATUS_BT_ATT_INSUFFICIENT_RESOURCES
Value:
((sl_status_t)0x1111)

Insufficient Resources to complete the request.


Definition at line 283 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_OUT_OF_SYNC#

#define SL_STATUS_BT_ATT_OUT_OF_SYNC
Value:
((sl_status_t)0x1112)

The server requests the client to rediscover the database.


Definition at line 284 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_VALUE_NOT_ALLOWED#

#define SL_STATUS_BT_ATT_VALUE_NOT_ALLOWED
Value:
((sl_status_t)0x1113)

The attribute parameter value was not allowed.


Definition at line 285 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_APPLICATION#

#define SL_STATUS_BT_ATT_APPLICATION
Value:
((sl_status_t)0x1180)

When this is returned in a BGAPI response, the application tried to read or write the value of a user attribute from the GATT database.


Definition at line 286 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_WRITE_REQUEST_REJECTED#

#define SL_STATUS_BT_ATT_WRITE_REQUEST_REJECTED
Value:
((sl_status_t)0x11FC)

The requested write operation cannot be fulfilled for reasons other than permissions.


Definition at line 287 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_CLIENT_CHARACTERISTIC_CONFIGURATION_DESCRIPTOR_IMPROPERLY_CONFIGURED#

#define SL_STATUS_BT_ATT_CLIENT_CHARACTERISTIC_CONFIGURATION_DESCRIPTOR_IMPROPERLY_CONFIGURED
Value:
((sl_status_t)0x11FD)

The Client Characteristic Configuration descriptor is not configured according to the requirements of the profile or service.


Definition at line 288 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_PROCEDURE_ALREADY_IN_PROGRESS#

#define SL_STATUS_BT_ATT_PROCEDURE_ALREADY_IN_PROGRESS
Value:
((sl_status_t)0x11FE)

The profile or service request cannot be serviced because an operation that has been previously triggered is still in progress.


Definition at line 289 of file platform/common/inc/sl_status.h

SL_STATUS_BT_ATT_OUT_OF_RANGE#

#define SL_STATUS_BT_ATT_OUT_OF_RANGE
Value:
((sl_status_t)0x11FF)

The attribute value is out of range as defined by a profile or service specification.


Definition at line 290 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_PASSKEY_ENTRY_FAILED#

#define SL_STATUS_BT_SMP_PASSKEY_ENTRY_FAILED
Value:
((sl_status_t)0x1201)

The user input of passkey failed, for example, the user cancelled the operation.


Definition at line 293 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_OOB_NOT_AVAILABLE#

#define SL_STATUS_BT_SMP_OOB_NOT_AVAILABLE
Value:
((sl_status_t)0x1202)

Out of Band data is not available for authentication.


Definition at line 294 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_AUTHENTICATION_REQUIREMENTS#

#define SL_STATUS_BT_SMP_AUTHENTICATION_REQUIREMENTS
Value:
((sl_status_t)0x1203)

The pairing procedure cannot be performed as authentication requirements cannot be met due to IO capabilities of one or both devices.


Definition at line 295 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_CONFIRM_VALUE_FAILED#

#define SL_STATUS_BT_SMP_CONFIRM_VALUE_FAILED
Value:
((sl_status_t)0x1204)

The confirm value does not match the calculated compare value.


Definition at line 296 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_PAIRING_NOT_SUPPORTED#

#define SL_STATUS_BT_SMP_PAIRING_NOT_SUPPORTED
Value:
((sl_status_t)0x1205)

Pairing is not supported by the device.


Definition at line 297 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_ENCRYPTION_KEY_SIZE#

#define SL_STATUS_BT_SMP_ENCRYPTION_KEY_SIZE
Value:
((sl_status_t)0x1206)

The resultant encryption key size is insufficient for the security requirements of this device.


Definition at line 298 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_COMMAND_NOT_SUPPORTED#

#define SL_STATUS_BT_SMP_COMMAND_NOT_SUPPORTED
Value:
((sl_status_t)0x1207)

The SMP command received is not supported on this device.


Definition at line 299 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_UNSPECIFIED_REASON#

#define SL_STATUS_BT_SMP_UNSPECIFIED_REASON
Value:
((sl_status_t)0x1208)

Pairing failed due to an unspecified reason.


Definition at line 300 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_REPEATED_ATTEMPTS#

#define SL_STATUS_BT_SMP_REPEATED_ATTEMPTS
Value:
((sl_status_t)0x1209)

Pairing or authentication procedure is disallowed because too little time has elapsed since last pairing request or security request.


Definition at line 301 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_INVALID_PARAMETERS#

#define SL_STATUS_BT_SMP_INVALID_PARAMETERS
Value:
((sl_status_t)0x120A)

The Invalid Parameters error code indicates: the command length is invalid or a parameter is outside of the specified range.


Definition at line 302 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_DHKEY_CHECK_FAILED#

#define SL_STATUS_BT_SMP_DHKEY_CHECK_FAILED
Value:
((sl_status_t)0x120B)

Indicates to the remote device that the DHKey Check value received doesn't match the one calculated by the local device.


Definition at line 303 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_NUMERIC_COMPARISON_FAILED#

#define SL_STATUS_BT_SMP_NUMERIC_COMPARISON_FAILED
Value:
((sl_status_t)0x120C)

Indicates that the confirm values in the numeric comparison protocol do not match.


Definition at line 304 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_BREDR_PAIRING_IN_PROGRESS#

#define SL_STATUS_BT_SMP_BREDR_PAIRING_IN_PROGRESS
Value:
((sl_status_t)0x120D)

Indicates that the pairing over the LE transport failed due to a Pairing Request sent over the BR/EDR transport in process.


Definition at line 305 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_CROSS_TRANSPORT_KEY_DERIVATION_GENERATION_NOT_ALLOWED#

#define SL_STATUS_BT_SMP_CROSS_TRANSPORT_KEY_DERIVATION_GENERATION_NOT_ALLOWED
Value:
((sl_status_t)0x120E)

Indicates that the BR/EDR Link Key generated on the BR/EDR transport cannot be used to derive and distribute keys for the LE transport.


Definition at line 306 of file platform/common/inc/sl_status.h

SL_STATUS_BT_SMP_KEY_REJECTED#

#define SL_STATUS_BT_SMP_KEY_REJECTED
Value:
((sl_status_t)0x120F)

Indicates that the device chose not to accept a distributed key.


Definition at line 307 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_ALREADY_EXISTS#

#define SL_STATUS_BT_MESH_ALREADY_EXISTS
Value:
((sl_status_t)0x0501)

Returned when trying to add a key or some other unique resource with an ID which already exists.


Definition at line 310 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_DOES_NOT_EXIST#

#define SL_STATUS_BT_MESH_DOES_NOT_EXIST
Value:
((sl_status_t)0x0502)

Returned when trying to manipulate a key or some other resource with an ID which does not exist.


Definition at line 311 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_LIMIT_REACHED#

#define SL_STATUS_BT_MESH_LIMIT_REACHED
Value:
((sl_status_t)0x0503)

Returned when an operation cannot be executed because a pre-configured limit for keys, key bindings, elements, models, virtual addresses, provisioned devices, or provisioning sessions is reached.


Definition at line 312 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_INVALID_ADDRESS#

#define SL_STATUS_BT_MESH_INVALID_ADDRESS
Value:
((sl_status_t)0x0504)

Returned when trying to use a reserved address or add a "pre-provisioned" device using an address already used by some other device.


Definition at line 313 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_MALFORMED_DATA#

#define SL_STATUS_BT_MESH_MALFORMED_DATA
Value:
((sl_status_t)0x0505)

In a BGAPI response, the user supplied malformed data; in a BGAPI event, the remote end responded with malformed or unrecognized data.


Definition at line 314 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_ALREADY_INITIALIZED#

#define SL_STATUS_BT_MESH_ALREADY_INITIALIZED
Value:
((sl_status_t)0x0506)

An attempt was made to initialize a subsystem that was already initialized.


Definition at line 315 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_NOT_INITIALIZED#

#define SL_STATUS_BT_MESH_NOT_INITIALIZED
Value:
((sl_status_t)0x0507)

An attempt was made to use a subsystem that wasn't initialized yet. Call the subsystem's init function first.


Definition at line 316 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_NO_FRIEND_OFFER#

#define SL_STATUS_BT_MESH_NO_FRIEND_OFFER
Value:
((sl_status_t)0x0508)

Returned when trying to establish a friendship as a Low Power Node, but no acceptable friend offer message was received.


Definition at line 317 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_LINK_CLOSED#

#define SL_STATUS_BT_MESH_PROV_LINK_CLOSED
Value:
((sl_status_t)0x0509)

Provisioning link was unexpectedly closed before provisioning was complete.


Definition at line 318 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_INVALID_PDU#

#define SL_STATUS_BT_MESH_PROV_INVALID_PDU
Value:
((sl_status_t)0x050A)

An unrecognized provisioning PDU was received.


Definition at line 319 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_INVALID_PDU_FORMAT#

#define SL_STATUS_BT_MESH_PROV_INVALID_PDU_FORMAT
Value:
((sl_status_t)0x050B)

A provisioning PDU with wrong length or containing field values that are out of bounds was received.


Definition at line 320 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_UNEXPECTED_PDU#

#define SL_STATUS_BT_MESH_PROV_UNEXPECTED_PDU
Value:
((sl_status_t)0x050C)

An unexpected (out of sequence) provisioning PDU was received.


Definition at line 321 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_CONFIRMATION_FAILED#

#define SL_STATUS_BT_MESH_PROV_CONFIRMATION_FAILED
Value:
((sl_status_t)0x050D)

The computed confirmation value did not match the expected value.


Definition at line 322 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_OUT_OF_RESOURCES#

#define SL_STATUS_BT_MESH_PROV_OUT_OF_RESOURCES
Value:
((sl_status_t)0x050E)

Provisioning could not be continued due to insufficient resources.


Definition at line 323 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_DECRYPTION_FAILED#

#define SL_STATUS_BT_MESH_PROV_DECRYPTION_FAILED
Value:
((sl_status_t)0x050F)

The provisioning data block could not be decrypted.


Definition at line 324 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_UNEXPECTED_ERROR#

#define SL_STATUS_BT_MESH_PROV_UNEXPECTED_ERROR
Value:
((sl_status_t)0x0510)

An unexpected error happened during provisioning.


Definition at line 325 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PROV_CANNOT_ASSIGN_ADDR#

#define SL_STATUS_BT_MESH_PROV_CANNOT_ASSIGN_ADDR
Value:
((sl_status_t)0x0511)

Device could not assign unicast addresses to all of its elements.


Definition at line 326 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_ADDRESS_TEMPORARILY_UNAVAILABLE#

#define SL_STATUS_BT_MESH_ADDRESS_TEMPORARILY_UNAVAILABLE
Value:
((sl_status_t)0x0512)

Returned when trying to reuse an address of a previously deleted device before an IV Index Update has been executed.


Definition at line 327 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_ADDRESS_ALREADY_USED#

#define SL_STATUS_BT_MESH_ADDRESS_ALREADY_USED
Value:
((sl_status_t)0x0513)

Returned when trying to assign an address that is used by one of the devices in the Device Database, or by the Provisioner itself.


Definition at line 328 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_PUBLISH_NOT_CONFIGURED#

#define SL_STATUS_BT_MESH_PUBLISH_NOT_CONFIGURED
Value:
((sl_status_t)0x0514)

Application key or publish address are not set.


Definition at line 329 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_APP_KEY_NOT_BOUND#

#define SL_STATUS_BT_MESH_APP_KEY_NOT_BOUND
Value:
((sl_status_t)0x0515)

Application key is not bound to a model.


Definition at line 330 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_INVALID_ADDRESS#

#define SL_STATUS_BT_MESH_FOUNDATION_INVALID_ADDRESS
Value:
((sl_status_t)0x1301)

Returned when address in request was not valid.


Definition at line 333 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_INVALID_MODEL#

#define SL_STATUS_BT_MESH_FOUNDATION_INVALID_MODEL
Value:
((sl_status_t)0x1302)

Returned when model identified is not found for a given element.


Definition at line 334 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_INVALID_APP_KEY#

#define SL_STATUS_BT_MESH_FOUNDATION_INVALID_APP_KEY
Value:
((sl_status_t)0x1303)

Returned when the key identified by AppKeyIndex is not stored in the node.


Definition at line 335 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_INVALID_NET_KEY#

#define SL_STATUS_BT_MESH_FOUNDATION_INVALID_NET_KEY
Value:
((sl_status_t)0x1304)

Returned when the key identified by NetKeyIndex is not stored in the node.


Definition at line 336 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_INSUFFICIENT_RESOURCES#

#define SL_STATUS_BT_MESH_FOUNDATION_INSUFFICIENT_RESOURCES
Value:
((sl_status_t)0x1305)

Returned when The node cannot serve the request due to insufficient resources.


Definition at line 337 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_KEY_INDEX_EXISTS#

#define SL_STATUS_BT_MESH_FOUNDATION_KEY_INDEX_EXISTS
Value:
((sl_status_t)0x1306)

Returned when the key identified is already stored in the node and the new NetKey value is different.


Definition at line 338 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_INVALID_PUBLISH_PARAMS#

#define SL_STATUS_BT_MESH_FOUNDATION_INVALID_PUBLISH_PARAMS
Value:
((sl_status_t)0x1307)

Returned when the model does not support the publish mechanism.


Definition at line 339 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_NOT_SUBSCRIBE_MODEL#

#define SL_STATUS_BT_MESH_FOUNDATION_NOT_SUBSCRIBE_MODEL
Value:
((sl_status_t)0x1308)

Returned when the model does not support the subscribe mechanism.


Definition at line 340 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_STORAGE_FAILURE#

#define SL_STATUS_BT_MESH_FOUNDATION_STORAGE_FAILURE
Value:
((sl_status_t)0x1309)

Returned when storing of the requested parameters failed.


Definition at line 341 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_NOT_SUPPORTED#

#define SL_STATUS_BT_MESH_FOUNDATION_NOT_SUPPORTED
Value:
((sl_status_t)0x130A)

Returned when requested setting is not supported.


Definition at line 342 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_CANNOT_UPDATE#

#define SL_STATUS_BT_MESH_FOUNDATION_CANNOT_UPDATE
Value:
((sl_status_t)0x130B)

Returned when the requested update operation cannot be performed due to general constraints.


Definition at line 343 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_CANNOT_REMOVE#

#define SL_STATUS_BT_MESH_FOUNDATION_CANNOT_REMOVE
Value:
((sl_status_t)0x130C)

Returned when the requested delete operation cannot be performed due to general constraints.


Definition at line 344 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_CANNOT_BIND#

#define SL_STATUS_BT_MESH_FOUNDATION_CANNOT_BIND
Value:
((sl_status_t)0x130D)

Returned when the requested bind operation cannot be performed due to general constraints.


Definition at line 345 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_TEMPORARILY_UNABLE#

#define SL_STATUS_BT_MESH_FOUNDATION_TEMPORARILY_UNABLE
Value:
((sl_status_t)0x130E)

Returned when The node cannot start advertising with Node Identity or Proxy since the maximum number of parallel advertising is reached.


Definition at line 346 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_CANNOT_SET#

#define SL_STATUS_BT_MESH_FOUNDATION_CANNOT_SET
Value:
((sl_status_t)0x130F)

Returned when the requested state cannot be set.


Definition at line 347 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_UNSPECIFIED#

#define SL_STATUS_BT_MESH_FOUNDATION_UNSPECIFIED
Value:
((sl_status_t)0x1310)

Returned when an unspecified error took place.


Definition at line 348 of file platform/common/inc/sl_status.h

SL_STATUS_BT_MESH_FOUNDATION_INVALID_BINDING#

#define SL_STATUS_BT_MESH_FOUNDATION_INVALID_BINDING
Value:
((sl_status_t)0x1311)

Returned when the NetKeyIndex and AppKeyIndex combination is not valid for a Config AppKey Update.


Definition at line 349 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_INVALID_KEY#

#define SL_STATUS_WIFI_INVALID_KEY
Value:
((sl_status_t)0x0B01)

Invalid firmware keyset.


Definition at line 354 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_FIRMWARE_DOWNLOAD_TIMEOUT#

#define SL_STATUS_WIFI_FIRMWARE_DOWNLOAD_TIMEOUT
Value:
((sl_status_t)0x0B02)

The firmware download took too long.


Definition at line 355 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_UNSUPPORTED_MESSAGE_ID#

#define SL_STATUS_WIFI_UNSUPPORTED_MESSAGE_ID
Value:
((sl_status_t)0x0B03)

Unknown request ID or wrong interface ID used.


Definition at line 356 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_WARNING#

#define SL_STATUS_WIFI_WARNING
Value:
((sl_status_t)0x0B04)

The request is successful but some parameters have been ignored.


Definition at line 357 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_NO_PACKET_TO_RECEIVE#

#define SL_STATUS_WIFI_NO_PACKET_TO_RECEIVE
Value:
((sl_status_t)0x0B05)

No Packets waiting to be received.


Definition at line 358 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SLEEP_GRANTED#

#define SL_STATUS_WIFI_SLEEP_GRANTED
Value:
((sl_status_t)0x0B08)

The sleep mode is granted.


Definition at line 359 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SLEEP_NOT_GRANTED#

#define SL_STATUS_WIFI_SLEEP_NOT_GRANTED
Value:
((sl_status_t)0x0B09)

The WFx does not go back to sleep.


Definition at line 360 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SECURE_LINK_MAC_KEY_ERROR#

#define SL_STATUS_WIFI_SECURE_LINK_MAC_KEY_ERROR
Value:
((sl_status_t)0x0B10)

The SecureLink MAC key was not found.


Definition at line 361 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SECURE_LINK_MAC_KEY_ALREADY_BURNED#

#define SL_STATUS_WIFI_SECURE_LINK_MAC_KEY_ALREADY_BURNED
Value:
((sl_status_t)0x0B11)

The SecureLink MAC key is already installed in OTP.


Definition at line 362 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SECURE_LINK_RAM_MODE_NOT_ALLOWED#

#define SL_STATUS_WIFI_SECURE_LINK_RAM_MODE_NOT_ALLOWED
Value:
((sl_status_t)0x0B12)

The SecureLink MAC key cannot be installed in RAM.


Definition at line 363 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SECURE_LINK_FAILED_UNKNOWN_MODE#

#define SL_STATUS_WIFI_SECURE_LINK_FAILED_UNKNOWN_MODE
Value:
((sl_status_t)0x0B13)

The SecureLink MAC key installation failed.


Definition at line 364 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_SECURE_LINK_EXCHANGE_FAILED#

#define SL_STATUS_WIFI_SECURE_LINK_EXCHANGE_FAILED
Value:
((sl_status_t)0x0B14)

SecureLink key (re)negotiation failed.


Definition at line 365 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_WRONG_STATE#

#define SL_STATUS_WIFI_WRONG_STATE
Value:
((sl_status_t)0x0B18)

The device is in an inappropriate state to perform the request.


Definition at line 366 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_CHANNEL_NOT_ALLOWED#

#define SL_STATUS_WIFI_CHANNEL_NOT_ALLOWED
Value:
((sl_status_t)0x0B19)

The request failed due to regulatory limitations.


Definition at line 367 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_NO_MATCHING_AP#

#define SL_STATUS_WIFI_NO_MATCHING_AP
Value:
((sl_status_t)0x0B1A)

The connection request failed because no suitable AP was found.


Definition at line 368 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_CONNECTION_ABORTED#

#define SL_STATUS_WIFI_CONNECTION_ABORTED
Value:
((sl_status_t)0x0B1B)

The connection request was aborted by host.


Definition at line 369 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_CONNECTION_TIMEOUT#

#define SL_STATUS_WIFI_CONNECTION_TIMEOUT
Value:
((sl_status_t)0x0B1C)

The connection request failed because of a timeout.


Definition at line 370 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_CONNECTION_REJECTED_BY_AP#

#define SL_STATUS_WIFI_CONNECTION_REJECTED_BY_AP
Value:
((sl_status_t)0x0B1D)

The connection request failed because the AP rejected the device.


Definition at line 371 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_CONNECTION_AUTH_FAILURE#

#define SL_STATUS_WIFI_CONNECTION_AUTH_FAILURE
Value:
((sl_status_t)0x0B1E)

The connection request failed because the WPA handshake did not complete successfully.


Definition at line 372 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_RETRY_EXCEEDED#

#define SL_STATUS_WIFI_RETRY_EXCEEDED
Value:
((sl_status_t)0x0B1F)

The request failed because the retry limit was exceeded.


Definition at line 373 of file platform/common/inc/sl_status.h

SL_STATUS_WIFI_TX_LIFETIME_EXCEEDED#

#define SL_STATUS_WIFI_TX_LIFETIME_EXCEEDED
Value:
((sl_status_t)0x0B20)

The request failed because the MSDU life time was exceeded.


Definition at line 374 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_FAULT#

#define SL_STATUS_COMPUTE_DRIVER_FAULT
Value:
((sl_status_t)0x1501)

Critical fault.


Definition at line 378 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_ALU_NAN#

#define SL_STATUS_COMPUTE_DRIVER_ALU_NAN
Value:
((sl_status_t)0x1502)

ALU operation output NaN.


Definition at line 379 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_ALU_OVERFLOW#

#define SL_STATUS_COMPUTE_DRIVER_ALU_OVERFLOW
Value:
((sl_status_t)0x1503)

ALU numeric overflow.


Definition at line 380 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_ALU_UNDERFLOW#

#define SL_STATUS_COMPUTE_DRIVER_ALU_UNDERFLOW
Value:
((sl_status_t)0x1504)

ALU numeric underflow.


Definition at line 381 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_OVERFLOW#

#define SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_OVERFLOW
Value:
((sl_status_t)0x1505)

Overflow during array store.


Definition at line 382 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_UNDERFLOW#

#define SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_UNDERFLOW
Value:
((sl_status_t)0x1506)

Underflow during array store conversion.


Definition at line 383 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_INFINITY#

#define SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_INFINITY
Value:
((sl_status_t)0x1507)

Infinity encountered during array store conversion.


Definition at line 384 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_NAN#

#define SL_STATUS_COMPUTE_DRIVER_STORE_CONVERSION_NAN
Value:
((sl_status_t)0x1508)

NaN encountered during array store conversion.


Definition at line 385 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_MATH_NAN#

#define SL_STATUS_COMPUTE_MATH_NAN
Value:
((sl_status_t)0x1512)

MATH NaN encountered.


Definition at line 387 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_MATH_INFINITY#

#define SL_STATUS_COMPUTE_MATH_INFINITY
Value:
((sl_status_t)0x1513)

MATH Infinity encountered.


Definition at line 388 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_MATH_OVERFLOW#

#define SL_STATUS_COMPUTE_MATH_OVERFLOW
Value:
((sl_status_t)0x1514)

MATH numeric overflow.


Definition at line 389 of file platform/common/inc/sl_status.h

SL_STATUS_COMPUTE_MATH_UNDERFLOW#

#define SL_STATUS_COMPUTE_MATH_UNDERFLOW
Value:
((sl_status_t)0x1515)

MATH numeric underflow.


Definition at line 390 of file platform/common/inc/sl_status.h