Skip to content

Commit

Permalink
Update for uncrustify
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot committed Jul 3, 2024
1 parent 725ee52 commit a8a8650
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
18 changes: 9 additions & 9 deletions examples/evkbmimxrt1060/test/app_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
#include "test_execution_config.h"


#define appmainPROVISIONING_MODE ( 0 )
#define appmainPROVISIONING_MODE ( 0 )

#define appmainTEST_TASK_STACK_SIZE ( 6144 )
#define appmainTEST_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
#define appmainTEST_TASK_STACK_SIZE ( 6144 )
#define appmainTEST_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )

#define appmainCLI_TASK_STACK_SIZE ( 6144 )
#define appmainCLI_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
#define appmainCLI_TASK_STACK_SIZE ( 6144 )
#define appmainCLI_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )

/**
* @brief Stack size and priority for MQTT agent task.
Expand All @@ -50,8 +50,8 @@
* higher than other MQTT application tasks, so that the agent can drain the queue
* as work is being produced.
*/
#define appmainMQTT_AGENT_TASK_STACK_SIZE ( 6144 )
#define appmainMQTT_AGENT_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
#define appmainMQTT_AGENT_TASK_STACK_SIZE ( 6144 )
#define appmainMQTT_AGENT_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )

extern void prvQualificationTestTask( void * pvParameters );

Expand Down Expand Up @@ -96,7 +96,7 @@ int app_main( void )
configPRINTF( ( "Failed to initialize key value configuration store.\r\n" ) );
}

#if ( appmainPROVISIONING_MODE == 1 )
#if ( appmainPROVISIONING_MODE == 1 )
{
if( xResult == pdPASS )
{
Expand All @@ -108,7 +108,7 @@ int app_main( void )
NULL );
}
}
#endif /* if ( appmainPROVISIONING_MODE == 1 ) */
#endif /* if ( appmainPROVISIONING_MODE == 1 ) */

{
if( xResult == pdPASS )
Expand Down
22 changes: 11 additions & 11 deletions examples/evkbmimxrt1060/test/include/test_param_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,23 +117,23 @@
* #define TRANSPORT_CLIENT_PRIVATE_KEY NULL
*/

#define PKCS11_TEST_RSA_KEY_SUPPORT ( 0 )
#define PKCS11_TEST_EC_KEY_SUPPORT ( 1 )
#define PKCS11_TEST_IMPORT_PRIVATE_KEY_SUPPORT ( 0 )
#define PKCS11_TEST_GENERATE_KEYPAIR_SUPPORT ( 0 )
#define PKCS11_TEST_PREPROVISIONED_SUPPORT ( 1 )
#define PKCS11_TEST_LABEL_DEVICE_PRIVATE_KEY_FOR_TLS pkcs11configLABEL_DEVICE_PRIVATE_KEY_FOR_TLS
#define PKCS11_TEST_LABEL_DEVICE_PUBLIC_KEY_FOR_TLS pkcs11configLABEL_DEVICE_PUBLIC_KEY_FOR_TLS
#define PKCS11_TEST_LABEL_DEVICE_CERTIFICATE_FOR_TLS pkcs11configLABEL_DEVICE_CERTIFICATE_FOR_TLS
#define PKCS11_TEST_RSA_KEY_SUPPORT ( 0 )
#define PKCS11_TEST_EC_KEY_SUPPORT ( 1 )
#define PKCS11_TEST_IMPORT_PRIVATE_KEY_SUPPORT ( 0 )
#define PKCS11_TEST_GENERATE_KEYPAIR_SUPPORT ( 0 )
#define PKCS11_TEST_PREPROVISIONED_SUPPORT ( 1 )
#define PKCS11_TEST_LABEL_DEVICE_PRIVATE_KEY_FOR_TLS pkcs11configLABEL_DEVICE_PRIVATE_KEY_FOR_TLS
#define PKCS11_TEST_LABEL_DEVICE_PUBLIC_KEY_FOR_TLS pkcs11configLABEL_DEVICE_PUBLIC_KEY_FOR_TLS
#define PKCS11_TEST_LABEL_DEVICE_CERTIFICATE_FOR_TLS pkcs11configLABEL_DEVICE_CERTIFICATE_FOR_TLS

/**
* @brief The IoT Thing name for the device for OTA test and MQTT test.
*
* #define IOT_THING_NAME "PLACE_HOLDER"
*/
#define IOT_THING_NAME "PLACE_HOLDER"
#define IOT_THING_NAME "PLACE_HOLDER"

#define OUTGOING_PUBLISH_RECORD_COUNT ( 10 )
#define INCOMING_PUBLISH_RECORD_COUNT ( 10 )
#define OUTGOING_PUBLISH_RECORD_COUNT ( 10 )
#define INCOMING_PUBLISH_RECORD_COUNT ( 10 )

#endif /* TEST_PARAM_CONFIG_H */

0 comments on commit a8a8650

Please sign in to comment.