This is an automated email from the ASF dual-hosted git repository.
acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from 0ae2c5391 mlearning/tflite-micro: Register DEPTHWISE_CONV_2D in
tflm_tool resolver.
new 35133b6a6 netutils/s2opc: add NuttX platform integration
new 5a7ab4200 examples/s2opc: add OPC UA server example
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../s2opc}/CMakeLists.txt | 31 +-
examples/s2opc/Kconfig | 32 +
{builtin => examples/s2opc}/Make.defs | 6 +-
examples/{baromonitor => s2opc}/Makefile | 20 +-
examples/s2opc/s2opc_main.c | 213 +++++
netutils/s2opc/.gitignore | 2 +
netutils/s2opc/CMakeLists.txt | 254 ++++++
netutils/s2opc/Kconfig | 109 +++
netutils/s2opc/Make.defs | 68 ++
netutils/s2opc/Makefile | 195 +++++
netutils/s2opc/port/nuttx/p_sopc_askpass.c | 114 +++
.../s2opc/port/nuttx/p_sopc_atomic.c | 67 +-
.../s2opc/port/nuttx/p_sopc_date_time.c | 90 +--
netutils/s2opc/port/nuttx/p_sopc_eth_sockets.c | 678 ++++++++++++++++
netutils/s2opc/port/nuttx/p_sopc_filesystem.c | 225 ++++++
.../s2opc/port/nuttx/p_sopc_mem_alloc.c | 67 +-
.../s2opc/port/nuttx/p_sopc_random.c | 77 +-
netutils/s2opc/port/nuttx/p_sopc_sockets.c | 874 +++++++++++++++++++++
netutils/s2opc/port/nuttx/p_sopc_sockets.h | 64 ++
netutils/s2opc/port/nuttx/p_sopc_threads.c | 473 +++++++++++
.../s2opc/port/nuttx/p_sopc_threads.h | 48 +-
netutils/s2opc/port/nuttx/p_sopc_time_reference.c | 309 ++++++++
netutils/s2opc/port/nuttx/p_sopc_udp_sockets.c | 498 ++++++++++++
.../s2opc/port/nuttx/s2opc_common_export.h | 20 +-
.../s2opc/port/nuttx/sopc_build_info.c | 72 +-
.../s2opc/port/nuttx/sopc_nuttx_config.h | 55 +-
26 files changed, 4405 insertions(+), 256 deletions(-)
copy {testing/sched/pthread_mutex_perf => examples/s2opc}/CMakeLists.txt (68%)
create mode 100644 examples/s2opc/Kconfig
copy {builtin => examples/s2opc}/Make.defs (89%)
copy examples/{baromonitor => s2opc}/Makefile (67%)
create mode 100644 examples/s2opc/s2opc_main.c
create mode 100644 netutils/s2opc/.gitignore
create mode 100644 netutils/s2opc/CMakeLists.txt
create mode 100644 netutils/s2opc/Kconfig
create mode 100644 netutils/s2opc/Make.defs
create mode 100644 netutils/s2opc/Makefile
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_askpass.c
copy builtin/builtin_list.c => netutils/s2opc/port/nuttx/p_sopc_atomic.c (59%)
copy testing/testsuites/kernel/sched/cases/api_pthread_test_006.c =>
netutils/s2opc/port/nuttx/p_sopc_date_time.c (50%)
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_eth_sockets.c
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_filesystem.c
copy testing/nuts/nuts_main.c => netutils/s2opc/port/nuttx/p_sopc_mem_alloc.c
(63%)
copy examples/serloop/serloop_main.c =>
netutils/s2opc/port/nuttx/p_sopc_random.c (61%)
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_sockets.c
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_sockets.h
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_threads.c
copy system/flash_eraseall/flash_eraseall_main.c =>
netutils/s2opc/port/nuttx/p_sopc_threads.h (53%)
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_time_reference.c
create mode 100644 netutils/s2opc/port/nuttx/p_sopc_udp_sockets.c
copy crypto/mbedtls/include/md5_alt.h =>
netutils/s2opc/port/nuttx/s2opc_common_export.h (66%)
copy builtin/builtin_list.c => netutils/s2opc/port/nuttx/sopc_build_info.c
(63%)
copy include/testing/unity_config.h =>
netutils/s2opc/port/nuttx/sopc_nuttx_config.h (53%)