mirror of https://github.com/wolfSSL/wolfssl.git
Merge pull request #8618 from miyazakh/renesas_csplus
Fix Renesas cs+ example failurepull/8619/head
commit
05ac52085d
|
@ -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
|
||||
|
|
|
@ -76,4 +76,5 @@
|
|||
|
||||
#define NO_FILESYSTEM
|
||||
|
||||
#define XSTRCASECMP(s1,s2) strcmp((s1),(s2))
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue