-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix-protypes: Fix
mqtt_agent_task.h
prototypes
The only public function declared in `mqtt_agent_task.c` is `vStartMqttAgentTask` as other functions were extracted to separate files in previous work. The prototypes for these other functions were left behind in `mqtt_agent_task.h`. This commit removes them. Also change `ota_agent_task.c` to include `events.h`, which is where these function prototypes were placed in previous work. Signed-off-by: Reuben Cartwright <[email protected]>
- Loading branch information
1 parent
3fb3ab2
commit 4d6635f
Showing
3 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* FreeRTOS V202012.00 | ||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* Copyright 2024 Arm Limited and/or its affiliates | ||
* Copyright 2023-2024 Arm Limited and/or its affiliates | ||
* <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
|
@@ -56,9 +56,6 @@ struct MQTTAgentCommandContext | |
void * pArgs; | ||
}; | ||
|
||
void vWaitUntilMQTTAgentReady( void ); | ||
void vWaitUntilMQTTAgentConnected( void ); | ||
bool xIsMqttAgentConnected( void ); | ||
void vStartMqttAgentTask( void ); | ||
|
||
#endif /* MQTT_AGENT_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters