Skip to content

Commit

Permalink
aws-device-advisor: Remove unused references
Browse files Browse the repository at this point in the history
The current plan is to support AWS Device Advisor validation
on keyword-detection application only. Hence, removing all
unused AWS Device Advisor Validation references.

Signed-off-by: Ahmed Ismail <[email protected]>
  • Loading branch information
AhmedIsmail02 committed Feb 27, 2024
1 parent ead4486 commit ff2c2b2
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 37 deletions.
6 changes: 0 additions & 6 deletions applications/blinky/configs/app_config/app_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,3 @@
#define appCONFIG_LOGGING_TASK_PRIORITY ( configMAX_PRIORITIES - 1 )
#define appCONFIG_LOGGING_TASK_STACK_SIZE ( 2048 )
#define appCONFIG_LOGGING_MESSAGE_QUEUE_LENGTH ( 32 )

/** @brief Increase backoff algorithm timeout by 8 seconds when device advisor
* test is active.
*/

#define appCONFIG_DEVICE_ADVISOR_TEST_ACTIVE 0
7 changes: 2 additions & 5 deletions applications/blinky/configs/freertos_config/FreeRTOSConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,8 @@ void vLoggingPrintf( const char * pcFormat,

/* Sets the length of the buffers into which logging messages are written - so
* also defines the maximum length of each log message. */
#if ( appCONFIG_DEVICE_ADVISOR_TEST_ACTIVE == 1 )
#define configLOGGING_MAX_MESSAGE_LENGTH 20480
#else
#define configLOGGING_MAX_MESSAGE_LENGTH 1024
#endif
#define configLOGGING_MAX_MESSAGE_LENGTH 1024

/* Prepend each log message with a message number, the task name and a time stamp. */
#define configLOGGING_INCLUDE_TIME_AND_TASK_NAME 1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,3 @@
#define appCONFIG_LOGGING_TASK_PRIORITY ( configMAX_PRIORITIES - 1 )
#define appCONFIG_LOGGING_TASK_STACK_SIZE ( 2048 )
#define appCONFIG_LOGGING_MESSAGE_QUEUE_LENGTH ( 32 )

/** @brief Increase backoff algorithm timeout by 8 seconds when device advisor
* test is active.
*/

#define appCONFIG_DEVICE_ADVISOR_TEST_ACTIVE 0
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,8 @@ void vLoggingPrintf( const char * pcFormat,

/* Sets the length of the buffers into which logging messages are written - so
* also defines the maximum length of each log message. */
#if ( appCONFIG_DEVICE_ADVISOR_TEST_ACTIVE == 1 )
#define configLOGGING_MAX_MESSAGE_LENGTH 20480
#else
#define configLOGGING_MAX_MESSAGE_LENGTH 1024
#endif
#define configLOGGING_MAX_MESSAGE_LENGTH 1024

/* Prepend each log message with a message number, the task name and a time stamp. */
#define configLOGGING_INCLUDE_TIME_AND_TASK_NAME 1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,3 @@

#define appCONFIG_VSI_CALLBACK_TASK_STACK_SIZE ( configMINIMAL_STACK_SIZE )
#define appCONFIG_VSI_CALLBACK_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )


/** @brief Increase backoff algorithm timeout by 8 seconds when device advisor
* test is active.
*/

#define appCONFIG_DEVICE_ADVISOR_TEST_ACTIVE 0
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,8 @@ void vLoggingPrintf( const char * pcFormat,

/* Sets the length of the buffers into which logging messages are written - so
* also defines the maximum length of each log message. */
#if ( appCONFIG_DEVICE_ADVISOR_TEST_ACTIVE == 1 )
#define configLOGGING_MAX_MESSAGE_LENGTH 20480
#else
#define configLOGGING_MAX_MESSAGE_LENGTH 1024
#endif
#define configLOGGING_MAX_MESSAGE_LENGTH 1024

/* Prepend each log message with a message number, the task name and a time stamp. */
#define configLOGGING_INCLUDE_TIME_AND_TASK_NAME 1

Expand Down
3 changes: 0 additions & 3 deletions docs/speech_recognition.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,3 @@ Creating an empty PS flash layout.
4 0 [None] FreeRTOS_AddEndPoint: MAC: 44-21 IPv4: c0a80069ip
5 34 [OTA Task ] [INFO] OTA over MQTT, Application version from appFirmwareVersion 0.0.20
```

## Running AWS IoT Core Device Advisor tests
Follow the instructions descrived in [Running AWS IoT Core Device Advisor tests](./running_aws_iot_core_device_advisor_tests.md).

0 comments on commit ff2c2b2

Please sign in to comment.