You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
The required HEAP is also about **3 times of the CString size**
183
+
The required HEAP is also about **3 times of the CString size** because of many `unnecessary copies` of the CString in HEAP. Avoid this `unefficient` way.
176
184
177
185
178
-
3. To use `CString`but destroy it after sending. Use function
186
+
3. To use `CString`without destroying it after sending. Use function
The required HEAP is also about **1 times of the CString size without using SDRAM, or none if using SDRAM**.
189
-
200
+
The required HEAP is also about **1 times of the CString size without using SDRAM, or none if using SDRAM**. This way is the best and most efficient way to use by avoiding of many `unnecessary copies` of the CString in HEAP
0 commit comments