forked from wolfSSL/wolfssl
Merge pull request #8618 from miyazakh/renesas_csplus
Fix Renesas cs+ example failure
This commit is contained in:
@ -13,3 +13,6 @@ test:
|
|||||||
- set stack size in "bsp/stacksct.h"
|
- set stack size in "bsp/stacksct.h"
|
||||||
Build "test" wolfCrypt
|
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
|
||||||
|
@ -76,4 +76,5 @@
|
|||||||
|
|
||||||
#define NO_FILESYSTEM
|
#define NO_FILESYSTEM
|
||||||
|
|
||||||
|
#define XSTRCASECMP(s1,s2) strcmp((s1),(s2))
|
||||||
|
|
||||||
|
@ -59,4 +59,9 @@ void abort(void)
|
|||||||
while(1);
|
while(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* dummy return true when char is alphanumeric character */
|
||||||
|
int isascii(const char *s)
|
||||||
|
{
|
||||||
|
return isalnum(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user