Skip to content

Commit

Permalink
Merge pull request #687 from lealem47/pack_updates
Browse files Browse the repository at this point in the history
Updates to STM32Cube Pack
  • Loading branch information
dgarske authored May 15, 2024
2 parents a08c09d + a87fe3f commit 038fa32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions ide/STM32CUBE/default_conf.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ extern ${variable.value} ${variable.name};
#define WOLFSSH_LOG_PRINTF
#define WOLFSSL_LOG_PRINTF
#define fprintf(err, ... ) printf(__VA_ARGS__)
#define WFFLUSH fflush

#define BENCH_EMBEDDED
#define NO_WRITEV
Expand Down Expand Up @@ -138,8 +139,6 @@ extern ${variable.value} ${variable.name};
#define HAVE_AESGCM
#define WOLFSSL_SHA512
#define HAVE_ECC
#define HAVE_CURVE25519
#define CURVE25519_SMALL
#define HAVE_ED25519

#define WOLFSSH_IGNORE_FILE_WARN
Expand Down
6 changes: 4 additions & 2 deletions ide/STM32CUBE/wolfssh_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ void wolfSSHTest(const void* argument)

printf("Running wolfSSH Tests...\n");

if (wolfSSH_TestsuiteTest(0, NULL))
ret = -1;
/* TODO: Uncomment once proper threading abstractions have been implemented
* in wolfSSL */
/* if (wolfSSH_TestsuiteTest(0, NULL))
ret = -1; */
if (wolfSSH_UnitTest(0, NULL))
ret = -1;
if (wolfSSH_ApiTest(0, NULL))
Expand Down

0 comments on commit 038fa32

Please sign in to comment.