Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
v1.4.1 to not destroy original CString
Browse files Browse the repository at this point in the history
### Releases v1.4.1

1. Don't need `memmove()`, CString no longer destroyed. Check [All memmove() removed - string no longer destroyed #11](#11)
  • Loading branch information
khoih-prog authored Oct 5, 2022
1 parent afeca4e commit 7c1e487
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ char *cStr;
#define CSTRING_SIZE 40000

// Select either cString is stored in SDRAM or not
#define USING_CSTRING_IN_SDRAM false //true
#define USING_CSTRING_IN_SDRAM true

#if USING_CSTRING_IN_SDRAM
#include "SDRAM.h"
Expand Down

0 comments on commit 7c1e487

Please sign in to comment.