Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update iotivity-lite port for Zephyr 3.0.0 #235

Draft
wants to merge 30 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
84ecb78
Only build dynamic libraries if the target platform supports it.
Oxymoron79 Mar 4, 2022
8d32cd7
Raise CMake Error if the port cannot be determined
Oxymoron79 Mar 4, 2022
6dcf029
Add CMake variable for compile options
Oxymoron79 Mar 4, 2022
29bcd1f
Add CMake variable for CMake target dependencies
Oxymoron79 Mar 4, 2022
aab57fb
Detect Zephyr port
Oxymoron79 Mar 4, 2022
cda25f5
Update tinycbor submodule to v0.6.0
Oxymoron79 Mar 4, 2022
2eb7a0d
Add missing include for strncasecmp
Oxymoron79 Mar 4, 2022
89078ec
Remove unneeded wchar.h inclusion
Oxymoron79 Mar 4, 2022
8f658cc
zephyr oc_config.h: Add switch for OC_DYNAMIC_ALLOCATION
Oxymoron79 Mar 4, 2022
e3899b0
zephyr clock.c: Fix k_sleep arguments
Oxymoron79 Mar 4, 2022
8067b20
oc_obt.c: Disable support for float data type if it's disabled in Tin…
Oxymoron79 Mar 8, 2022
1923c7f
Move raw flash storage implementation to storage_flash.c
Oxymoron79 Mar 8, 2022
9dc8246
Add storage implementation using the Zephyr file-system API
Oxymoron79 Mar 8, 2022
fe4d6d9
Determine storage implementation based on Zephyr configuration
Oxymoron79 Mar 8, 2022
a1f9d76
zephyr oc_config.h: Add definition for OC_MULTICAST_RESPONSE_JITTER_MS
Oxymoron79 Mar 8, 2022
ba011a5
oc_helpers: Exclude functions only used by oscore.
Oxymoron79 Mar 9, 2022
3706fbf
Zephyr oc_storage_config: Fix debug message.
Oxymoron79 Mar 14, 2022
6f97616
zephyr oc_config.h: Add definition for OC_NETWORK_MONITOR
Oxymoron79 Mar 15, 2022
0876d78
Add include dirs from net/ip subsystem
Oxymoron79 Mar 15, 2022
a506e43
Port Linux ipadapter implementation to Zephyr
Oxymoron79 Mar 15, 2022
ea295f4
Add 16 padding bits to struct ip_context_t for word alignment.
Oxymoron79 Mar 18, 2022
4c32879
Initialize secure IPv6 socket
Oxymoron79 Mar 18, 2022
659dc83
Fix mbedtls build when dynamic memory allocation is disabled
Oxymoron79 Mar 18, 2022
ad62bb2
zephyr oc_config.h: Fix definitions when dynamic memory allocation is…
Oxymoron79 Mar 18, 2022
75e87cc
Define OC_CLOCK_CONF_TICKS_PER_SECOND from Zephyr configuration
Oxymoron79 Mar 18, 2022
6a784bb
zephyr oc_config.h: Synchonize with linux port
Oxymoron79 Mar 18, 2022
c66f4a1
Only add_dependencies if TARGET_DEPENDENCIES is not empty
Oxymoron79 Apr 5, 2022
309cee4
Automatic format commit
CascodaBot Apr 5, 2022
e56ef85
Add atomic implementation for Zephyr
Oxymoron79 Apr 7, 2022
d52d1e8
Add README for zephyr port update.
Oxymoron79 Aug 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unneeded wchar.h inclusion
  • Loading branch information
Oxymoron79 committed Apr 5, 2022
commit 89078ece85c708f256d99e1d4f3860577d00e2a8
2 changes: 0 additions & 2 deletions include/oc_introspection.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@
#ifndef OC_INTROSPECTION_H
#define OC_INTROSPECTION_H

#include <wchar.h>

#include <inttypes.h>
#include <stddef.h>

Expand Down