-
Notifications
You must be signed in to change notification settings - Fork 17
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
0 parents
commit 5ce609d
Showing
115 changed files
with
15,001 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--emacs | ||
--summary-file | ||
--show-types | ||
--max-line-length=100 | ||
--min-conf-desc-length=1 | ||
--typedefsfile=../zephyr/scripts/checkpatch/typedefsfile | ||
|
||
--ignore BRACES | ||
--ignore PRINTK_WITHOUT_KERN_LEVEL | ||
--ignore SPLIT_STRING | ||
--ignore VOLATILE | ||
--ignore CONFIG_EXPERIMENTAL | ||
--ignore AVOID_EXTERNS | ||
--ignore NETWORKING_BLOCK_COMMENT_STYLE | ||
--ignore DATE_TIME | ||
--ignore MINMAX | ||
--ignore CONST_STRUCT | ||
--ignore FILE_PATH_CHANGES | ||
--ignore NEW_TYPEDEFS | ||
--exclude ext |
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,151 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# | ||
# clang-format configuration file. Intended for clang-format >= 4. | ||
# | ||
# For more information, see: | ||
# | ||
# Documentation/process/clang-format.rst | ||
# https://clang.llvm.org/docs/ClangFormat.html | ||
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html | ||
# | ||
--- | ||
AccessModifierOffset: -4 | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: false | ||
AlignConsecutiveDeclarations: false | ||
#AlignEscapedNewlines: Left # Unknown to clang-format-4.0 | ||
AlignOperands: true | ||
AlignTrailingComments: false | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: None | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: false | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BraceWrapping: | ||
AfterClass: false | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: true | ||
AfterNamespace: true | ||
AfterObjCDeclaration: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
#AfterExternBlock: false # Unknown to clang-format-5.0 | ||
BeforeCatch: false | ||
BeforeElse: false | ||
IndentBraces: false | ||
#SplitEmptyFunction: true # Unknown to clang-format-4.0 | ||
#SplitEmptyRecord: true # Unknown to clang-format-4.0 | ||
#SplitEmptyNamespace: true # Unknown to clang-format-4.0 | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeBraces: Custom | ||
#BreakBeforeInheritanceComma: false # Unknown to clang-format-4.0 | ||
BreakBeforeTernaryOperators: false | ||
BreakConstructorInitializersBeforeComma: false | ||
#BreakConstructorInitializers: BeforeComma # Unknown to clang-format-4.0 | ||
BreakAfterJavaFieldAnnotations: false | ||
BreakStringLiterals: false | ||
ColumnLimit: 80 | ||
CommentPragmas: '^ IWYU pragma:' | ||
#CompactNamespaces: false # Unknown to clang-format-4.0 | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: false | ||
ConstructorInitializerIndentWidth: 8 | ||
ContinuationIndentWidth: 8 | ||
Cpp11BracedListStyle: false | ||
DerivePointerAlignment: false | ||
DisableFormat: false | ||
ExperimentalAutoDetectBinPacking: false | ||
#FixNamespaceComments: false # Unknown to clang-format-4.0 | ||
|
||
# Taken from: | ||
# git grep -h '^#define [^[:space:]]*for_each[^[:space:]]*(' include/ \ | ||
# | sed "s,^#define \([^[:space:]]*for_each[^[:space:]]*\)(.*$, - '\1'," \ | ||
# | sort | uniq | ||
ForEachMacros: | ||
- 'FOR_EACH' | ||
- 'for_each_linux_bus' | ||
- 'for_each_linux_driver' | ||
- 'metal_bitmap_for_each_clear_bit' | ||
- 'metal_bitmap_for_each_set_bit' | ||
- 'metal_for_each_page_size_down' | ||
- 'metal_for_each_page_size_up' | ||
- 'metal_list_for_each' | ||
- 'RB_FOR_EACH' | ||
- 'RB_FOR_EACH_CONTAINER' | ||
- 'SYS_DLIST_FOR_EACH_CONTAINER' | ||
- 'SYS_DLIST_FOR_EACH_CONTAINER_SAFE' | ||
- 'SYS_DLIST_FOR_EACH_NODE' | ||
- 'SYS_DLIST_FOR_EACH_NODE_SAFE' | ||
- 'SYS_SFLIST_FOR_EACH_CONTAINER' | ||
- 'SYS_SFLIST_FOR_EACH_CONTAINER_SAFE' | ||
- 'SYS_SFLIST_FOR_EACH_NODE' | ||
- 'SYS_SFLIST_FOR_EACH_NODE_SAFE' | ||
- 'SYS_SLIST_FOR_EACH_CONTAINER' | ||
- 'SYS_SLIST_FOR_EACH_CONTAINER_SAFE' | ||
- 'SYS_SLIST_FOR_EACH_NODE' | ||
- 'SYS_SLIST_FOR_EACH_NODE_SAFE' | ||
- '_WAIT_Q_FOR_EACH' | ||
- 'Z_GENLIST_FOR_EACH_CONTAINER' | ||
- 'Z_GENLIST_FOR_EACH_CONTAINER_SAFE' | ||
- 'Z_GENLIST_FOR_EACH_NODE' | ||
- 'Z_GENLIST_FOR_EACH_NODE_SAFE' | ||
|
||
#IncludeBlocks: Preserve # Unknown to clang-format-5.0 | ||
IncludeCategories: | ||
- Regex: '.*' | ||
Priority: 1 | ||
IncludeIsMainRegex: '(Test)?$' | ||
IndentCaseLabels: false | ||
#IndentPPDirectives: None # Unknown to clang-format-5.0 | ||
IndentWidth: 8 | ||
IndentWrappedFunctionNames: false | ||
JavaScriptQuotes: Leave | ||
JavaScriptWrapImports: true | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MacroBlockBegin: '' | ||
MacroBlockEnd: '' | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: Inner | ||
#ObjCBinPackProtocolList: Auto # Unknown to clang-format-5.0 | ||
ObjCBlockIndentWidth: 8 | ||
ObjCSpaceAfterProperty: true | ||
ObjCSpaceBeforeProtocolList: true | ||
|
||
# Taken from git's rules | ||
#PenaltyBreakAssignment: 10 # Unknown to clang-format-4.0 | ||
PenaltyBreakBeforeFirstCallParameter: 30 | ||
PenaltyBreakComment: 10 | ||
PenaltyBreakFirstLessLess: 0 | ||
PenaltyBreakString: 10 | ||
PenaltyExcessCharacter: 100 | ||
PenaltyReturnTypeOnItsOwnLine: 60 | ||
|
||
PointerAlignment: Right | ||
ReflowComments: false | ||
SortIncludes: false | ||
#SortUsingDeclarations: false # Unknown to clang-format-4.0 | ||
SpaceAfterCStyleCast: false | ||
SpaceAfterTemplateKeyword: true | ||
SpaceBeforeAssignmentOperators: true | ||
#SpaceBeforeCtorInitializerColon: true # Unknown to clang-format-5.0 | ||
#SpaceBeforeInheritanceColon: true # Unknown to clang-format-5.0 | ||
SpaceBeforeParens: ControlStatements | ||
#SpaceBeforeRangeBasedForLoopColon: true # Unknown to clang-format-5.0 | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 1 | ||
SpacesInAngles: false | ||
SpacesInContainerLiterals: false | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: Cpp03 | ||
TabWidth: 8 | ||
UseTab: Always | ||
... |
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,55 @@ | ||
# EditorConfig: https://editorconfig.org/ | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# All (Defaults) | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
max_line_length = 100 | ||
|
||
# Assembly | ||
[*.S] | ||
indent_style = tab | ||
indent_size = 8 | ||
|
||
# C | ||
[*.{c,h}] | ||
indent_style = tab | ||
indent_size = 8 | ||
|
||
# Python | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# YAML | ||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Shell Script | ||
[*.sh] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# CMake | ||
[{CMakeLists.txt,*.cmake}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Makefile | ||
[Makefile] | ||
indent_style = tab | ||
|
||
# Kconfig | ||
[Kconfig] | ||
indent_style = tab | ||
|
||
# devicetree | ||
[*.{dts,dtsi,overlay}] | ||
indent_style = tab | ||
indent_size = 4 |
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,42 @@ | ||
# Copyright (c) 2021, Teslabs Engineering S.L. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: teslabs/spinner:latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
path: spinner | ||
|
||
- name: Cache Zephyr | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
modules | ||
zephyr | ||
key: ${{ hashFiles('spinner/west.yml') }} | ||
|
||
- name: Initialize | ||
working-directory: spinner | ||
run: | | ||
pip3 install -U west | ||
west init -l . | ||
west update | ||
pip3 install -r ../zephyr/scripts/requirements-base.txt | ||
pip3 install -r docs/requirements.txt | ||
- name: Lint code | ||
run: | | ||
git diff --name-only ${{ github.base_ref}} ${{ github.sha }} -- '*.[ch]' | xargs zephyr/scripts/checkpatch.pl | ||
- name: Build | ||
working-directory: spinner | ||
run: | | ||
west build -b p_nucleo_ihm002 -s spinner |
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,34 @@ | ||
# Copyright (c) 2021, Teslabs Engineering S.L. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Documentation | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt install -y cmake ninja-build python3 python3-pip doxygen graphviz | ||
pip3 install -r docs/requirements.txt | ||
- name: Build | ||
run: | | ||
cmake -Sdocs -Bbuild_docs | ||
cmake --build build_docs -t doxygen | ||
cmake --build build_docs -t html | ||
touch build_docs/html/.nojekyll | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
if: github.ref == 'refs/heads/main' | ||
with: | ||
branch: gh-pages | ||
folder: build_docs/html | ||
single-commit: true | ||
|
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,10 @@ | ||
# zephyr | ||
/build* | ||
|
||
# python | ||
.venv | ||
|
||
# editors | ||
*.swp | ||
.vscode | ||
.~lock* |
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,7 @@ | ||
# Copyright (c) 2021 Teslabs Engineering S.L. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
add_subdirectory(drivers) | ||
add_subdirectory(lib) | ||
|
||
zephyr_include_directories(include) |
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,41 @@ | ||
FROM ubuntu:20.04 | ||
|
||
# install dependencies | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
git \ | ||
cmake \ | ||
ninja-build \ | ||
gperf \ | ||
ccache \ | ||
dfu-util \ | ||
device-tree-compiler \ | ||
wget \ | ||
python3-dev \ | ||
python3-pip \ | ||
python3-setuptools \ | ||
python3-tk \ | ||
python3-wheel \ | ||
xz-utils \ | ||
file \ | ||
make \ | ||
gcc \ | ||
gcc-multilib \ | ||
g++-multilib \ | ||
libsdl2-dev \ | ||
doxygen \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# install SDK | ||
ARG ZSDK_TOOL=toolchain-arm | ||
ARG ZSDK_VERSION=0.12.4 | ||
RUN wget -q "https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${ZSDK_VERSION}/zephyr-${ZSDK_TOOL}-${ZSDK_VERSION}-x86_64-linux-setup.run" && \ | ||
sh "zephyr-${ZSDK_TOOL}-${ZSDK_VERSION}-x86_64-linux-setup.run" --quiet -- -d /opt/toolchains/zephyr-${ZSDK_TOOL}-${ZSDK_VERSION} && \ | ||
rm "zephyr-${ZSDK_TOOL}-${ZSDK_VERSION}-x86_64-linux-setup.run" | ||
|
||
ENV ZEPHYR_TOOLCHAIN_VARIANT=zephyr | ||
ENV ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-${ZSDK_TOOL}-${ZSDK_VERSION} | ||
|
||
# install West | ||
RUN pip3 install west |
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 @@ | ||
# Copyright (c) 2021 Teslabs Engineering S.L. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
rsource "drivers/Kconfig" | ||
rsource "lib/Kconfig" |
Oops, something went wrong.