Skip to content

Commit 2ce1862

Browse files
authored
update threadx/netxduo (#239)
* update threadx/netxduo * update STM netxduo fork
1 parent aed0220 commit 2ce1862

File tree

5 files changed

+405
-2
lines changed

5 files changed

+405
-2
lines changed

STMicroelectronics/STM32L4_L4+/lib/netxduo/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@ set(SOURCES
420420
${CORE_LIB_DIR}/netxduo/nx_secure/src/nx_secure_x509_extended_key_usage_extension_parse.c
421421
${CORE_LIB_DIR}/netxduo/nx_secure/src/nx_secure_x509_extension_find.c
422422
${CORE_LIB_DIR}/netxduo/nx_secure/src/nx_secure_x509_find_certificate_methods.c
423+
${CORE_LIB_DIR}/netxduo/nx_secure/src/nx_secure_x509_find_curve_method.c
423424
${CORE_LIB_DIR}/netxduo/nx_secure/src/nx_secure_x509_free_certificate_get.c
424425
${CORE_LIB_DIR}/netxduo/nx_secure/src/nx_secure_x509_key_usage_extension_parse.c
425426
${CORE_LIB_DIR}/netxduo/nx_secure/src/nx_secure_x509_local_certificate_find.c

STMicroelectronics/STM32L4_L4+/lib/netxduo/common/nx_api.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3835,6 +3835,9 @@ VOID _nx_ip_driver_link_status_event(NX_IP *ip_ptr, UINT interface_index);
38353835

38363836
/* Utility functions. */
38373837
UINT _nx_utility_string_length_check(CHAR *input_string, UINT *string_length, UINT max_string_length);
3838+
UINT _nx_utility_string_to_uint(CHAR *input_string, UINT string_length, UINT *number);
3839+
UINT _nx_utility_base64_encode(UCHAR *name, UINT name_size, UCHAR *base64name, UINT base64name_size, UINT *bytes_copied);
3840+
UINT _nx_utility_base64_decode(UCHAR *base64name, UINT base64name_size, UCHAR *name, UINT name_size, UINT *bytes_copied);
38383841

38393842
/* Determine if a C++ compiler is being used. If so, complete the standard
38403843
C conditional started above. */

0 commit comments

Comments
 (0)