Merge pull request #8618 from miyazakh/renesas_csplus

Fix Renesas cs+ example failure
pull/8619/head
JacobBarthelmeh 2025-04-03 10:02:00 -06:00 committed by GitHub
commit 05ac52085d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 0 deletions

View File

@ -13,3 +13,6 @@ test:
- set stack size in "bsp/stacksct.h"
Build "test" wolfCrypt
Note: It could need to initialize clock for the device. You can refer the link below
https://www.renesas.com/ja/document/apn/rx65n-group-rx651-group-initial-settings-example-rev211?language=en&r=1054461

View File

@ -76,4 +76,5 @@
#define NO_FILESYSTEM
#define XSTRCASECMP(s1,s2) strcmp((s1),(s2))

View File

@ -59,4 +59,9 @@ void abort(void)
while(1);
}
/* dummy return true when char is alphanumeric character */
int isascii(const char *s)
{
return isalnum(s);
}