diff --git a/IDE/WORKBENCH/README.md b/IDE/WORKBENCH/README.md index 7158596ce..4d5c6c56a 100644 --- a/IDE/WORKBENCH/README.md +++ b/IDE/WORKBENCH/README.md @@ -35,20 +35,20 @@ if everything is working. 1. In usrAppInit.c, make a call to the wolfCrypt test application by adding the following to the usrAppInit() function: - typedef struct func_args { - int argc; - char** argv; - int return_code; - } func_args; + typedef struct func_args { + int argc; + char** argv; + int return_code; + } func_args; - func_args args; + func_args args; wolfcrypt_test(&args); 2. Include these header files in usrAppInit.c: - #include - #include - #include - #include + #include + #include + #include + #include 3. Start the simulator and check that all wolfCrypt tests pass. If there is a certificate file error, adjust the caCert file locations in wolfcrypt/test/test.c or wolfssl/test.h to those of the filesystem in use.