fix cs+ failure

This commit is contained in:
Hideki Miyazaki
2025-04-02 07:18:52 +09:00
parent 9bcb3f71d0
commit aef224d53e
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);
}