Skip to content

Commit

Permalink
gen files
Browse files Browse the repository at this point in the history
  • Loading branch information
kghost committed May 26, 2021
1 parent 5abbedc commit 5db8f44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
11 changes: 5 additions & 6 deletions examples/all-clusters-app/all-clusters-common/gen/callback.h
Original file line number Diff line number Diff line change
Expand Up @@ -934,9 +934,9 @@ void emberAfBridgedDeviceBasicClusterServerManufacturerSpecificAttributeChangedC
* @param message The message that was sent
* @param status The status of the sent message
*/
void emberAfBridgedDeviceBasicClusterServerMessageSentCallback(EmberOutgoingMessageType type,
chip::MessageSendDestination destination, EmberApsFrame * apsFrame,
uint16_t msgLen, uint8_t * message, EmberStatus status);
void emberAfBridgedDeviceBasicClusterServerMessageSentCallback(const chip::MessageSendDestination & destination,
EmberApsFrame * apsFrame, uint16_t msgLen, uint8_t * message,
EmberStatus status);

/** @brief Bridged Device Basic Cluster Server Pre Attribute Changed
*
Expand Down Expand Up @@ -1354,9 +1354,8 @@ void emberAfFixedLabelClusterServerManufacturerSpecificAttributeChangedCallback(
* @param message The message that was sent
* @param status The status of the sent message
*/
void emberAfFixedLabelClusterServerMessageSentCallback(EmberOutgoingMessageType type, chip::MessageSendDestination destination,
EmberApsFrame * apsFrame, uint16_t msgLen, uint8_t * message,
EmberStatus status);
void emberAfFixedLabelClusterServerMessageSentCallback(const chip::MessageSendDestination & destination, EmberApsFrame * apsFrame,
uint16_t msgLen, uint8_t * message, EmberStatus status);

/** @brief Fixed Label Cluster Server Pre Attribute Changed
*
Expand Down
11 changes: 5 additions & 6 deletions src/controller/data_model/gen/callback.h
Original file line number Diff line number Diff line change
Expand Up @@ -886,9 +886,9 @@ void emberAfBridgedDeviceBasicClusterClientManufacturerSpecificAttributeChangedC
* @param message The message that was sent
* @param status The status of the sent message
*/
void emberAfBridgedDeviceBasicClusterClientMessageSentCallback(EmberOutgoingMessageType type,
chip::MessageSendDestination destination, EmberApsFrame * apsFrame,
uint16_t msgLen, uint8_t * message, EmberStatus status);
void emberAfBridgedDeviceBasicClusterClientMessageSentCallback(const chip::MessageSendDestination & destination,
EmberApsFrame * apsFrame, uint16_t msgLen, uint8_t * message,
EmberStatus status);

/** @brief Bridged Device Basic Cluster Client Pre Attribute Changed
*
Expand Down Expand Up @@ -1306,9 +1306,8 @@ void emberAfFixedLabelClusterClientManufacturerSpecificAttributeChangedCallback(
* @param message The message that was sent
* @param status The status of the sent message
*/
void emberAfFixedLabelClusterClientMessageSentCallback(EmberOutgoingMessageType type, chip::MessageSendDestination destination,
EmberApsFrame * apsFrame, uint16_t msgLen, uint8_t * message,
EmberStatus status);
void emberAfFixedLabelClusterClientMessageSentCallback(const chip::MessageSendDestination & destination, EmberApsFrame * apsFrame,
uint16_t msgLen, uint8_t * message, EmberStatus status);

/** @brief Fixed Label Cluster Client Pre Attribute Changed
*
Expand Down

0 comments on commit 5db8f44

Please sign in to comment.