-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Unify Automated
committed
Aug 9, 2023
1 parent
42fb259
commit 637599d
Showing
10,861 changed files
with
1,199,877 additions
and
858,160 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
find_package(GeckoSDK 4.2.2 REQUIRED) | ||
find_package(GeckoSDK 4.3.0 REQUIRED) | ||
|
||
add_subdirectory(components) | ||
add_subdirectory(applications) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 19 additions & 17 deletions
36
...ations/aox/applications/aoxpc/components/aox_locator_configuration/zap/gen-templates.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
{ | ||
"name": "AoX Locator Configuration", | ||
"version": "AoXLocator-v1", | ||
"override": "../../../../../../../components/uic_dotdot/zap/addon-override.js", | ||
"helpers": ["addon-helper.js"], | ||
"templates": [ | ||
{ | ||
"path": "aox_locator_configuration_attributes.h.zapt", | ||
"name": "Type definitions for the AoXLocator attributes", | ||
"output": "include/aox_locator_configuration_attributes.h" | ||
}, | ||
{ | ||
"path": "aox_locator_configuration_attributes.c.zapt", | ||
"name": "Implementation of the AoXLocator attributes handling", | ||
"output": "src/aox_locator_configuration_attributes.c" | ||
} | ||
] | ||
} | ||
"name": "AoX Locator Configuration", | ||
"version": "AoXLocator-v1", | ||
"override": "../../../../../../../components/uic_dotdot/zap/addon-override.js", | ||
"helpers": [ | ||
"addon-helper.js", | ||
"../../../../../../../components/uic_dotdot/zap/addon-base-helper.js" | ||
], | ||
"templates": [{ | ||
"path": "aox_locator_configuration_attributes.h.zapt", | ||
"name": "Type definitions for the AoXLocator attributes", | ||
"output": "include/aox_locator_configuration_attributes.h" | ||
}, | ||
{ | ||
"path": "aox_locator_configuration_attributes.c.zapt", | ||
"name": "Implementation of the AoXLocator attributes handling", | ||
"output": "src/aox_locator_configuration_attributes.c" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 19 additions & 17 deletions
36
applications/aox/applications/aoxpc/components/aoxpc_attribute_store/zap/gen-templates.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
{ | ||
"name": "AoX Locator Attributestore", | ||
"version": "AoXLocator-v1", | ||
"override": "../../../../../../../components/uic_dotdot/zap/addon-override.js", | ||
"helpers": ["addon-helper.js"], | ||
"templates": [ | ||
{ | ||
"path": "aoxpc_attribute_store_dotdot_attributes.h.zapt", | ||
"name": "Definitions for the Attribute Store helper functions for DotDot attributes", | ||
"output": "include/aoxpc_attribute_store_dotdot_attributes.h" | ||
}, | ||
{ | ||
"path": "aoxpc_attribute_store_dotdot_attributes.c.zapt", | ||
"name": "Implementation of the Attribute Store helper functions for DotDot attributes", | ||
"output": "src/aoxpc_attribute_store_dotdot_attributes.c" | ||
} | ||
] | ||
} | ||
"name": "AoX Locator Attributestore", | ||
"version": "AoXLocator-v1", | ||
"override": "../../../../../../../components/uic_dotdot/zap/addon-override.js", | ||
"helpers": [ | ||
"addon-helper.js", | ||
"../../../../../../../components/uic_dotdot/zap/addon-base-helper.js" | ||
], | ||
"templates": [{ | ||
"path": "aoxpc_attribute_store_dotdot_attributes.h.zapt", | ||
"name": "Definitions for the Attribute Store helper functions for DotDot attributes", | ||
"output": "include/aoxpc_attribute_store_dotdot_attributes.h" | ||
}, | ||
{ | ||
"path": "aoxpc_attribute_store_dotdot_attributes.c.zapt", | ||
"name": "Implementation of the Attribute Store helper functions for DotDot attributes", | ||
"output": "src/aoxpc_attribute_store_dotdot_attributes.c" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# ############################################################################## | ||
# Real-Time Locationing library | ||
# ############################################################################## | ||
add_library(rtl_lib STATIC IMPORTED GLOBAL) | ||
|
||
target_link_libraries(rtl_lib INTERFACE stdc++) | ||
target_link_options(rtl_lib INTERFACE $<$<C_COMPILER_ID:GNU>:-no-pie>) | ||
|
||
# Find library for current platform | ||
string(TOLOWER ${CMAKE_SYSTEM_NAME} SYSTEM_NAME) | ||
string(TOLOWER ${CMAKE_SYSTEM_PROCESSOR} SYSTEM_PROCESSOR) | ||
# TODO: remove this workaround once CMAKE_SYSTEM_PROCESSOR is fixed for RPI. | ||
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "armhf") | ||
set(SYSTEM_PROCESSOR "armv7l") | ||
elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64") | ||
set(SYSTEM_PROCESSOR "aarch64") | ||
endif() | ||
|
||
set_target_properties(rtl_lib PROPERTIES | ||
IMPORTED_LOCATION ${CMAKE_CURRENT_LIST_DIR}/lib/gcc/release/libaox_static_${SYSTEM_NAME}_${SYSTEM_PROCESSOR}.a | ||
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_LIST_DIR}/inc | ||
INTERFACE_COMPILE_DEFINITIONS "RTL_LIB" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
This software makes use of the Eigen 3.3.4 C++ template library for linear | ||
algebra, which is licensed under Mozilla Public License 2.0 available at | ||
https://www.mozilla.org/en-US/MPL/2.0/. The source code for the Eigen | ||
library can be accessed at https://bitbucket.org/eigen/eigen/. No changes | ||
have been made to the source code of the library. |
Oops, something went wrong.