Skip to content

Commit 05ac520

Browse files
Merge pull request #8618 from miyazakh/renesas_csplus
Fix Renesas cs+ example failure
2 parents c29fba5 + aef224d commit 05ac520

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

IDE/Renesas/cs+/Projects/README

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ test:
1313
- set stack size in "bsp/stacksct.h"
1414
Build "test" wolfCrypt
1515

16+
17+
Note: It could need to initialize clock for the device. You can refer the link below
18+
https://www.renesas.com/ja/document/apn/rx65n-group-rx651-group-initial-settings-example-rev211?language=en&r=1054461

IDE/Renesas/cs+/Projects/common/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,5 @@
7676

7777
#define NO_FILESYSTEM
7878

79+
#define XSTRCASECMP(s1,s2) strcmp((s1),(s2))
7980

IDE/Renesas/cs+/Projects/common/wolfssl_dummy.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,9 @@ void abort(void)
5959
while(1);
6060
}
6161

62+
/* dummy return true when char is alphanumeric character */
63+
int isascii(const char *s)
64+
{
65+
return isalnum(s);
66+
}
6267

0 commit comments

Comments
 (0)