forked from zmkfirmware/zmk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: pointer movement/scrolling zmkfirmware#2027
- Loading branch information
Showing
152 changed files
with
1,543 additions
and
324 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM docker.io/zmkfirmware/zmk-dev-arm:3.2 | ||
FROM docker.io/zmkfirmware/zmk-dev-arm:3.5-branch | ||
|
||
COPY .bashrc tmp | ||
RUN mv /tmp/.bashrc ~/.bashrc |
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
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,48 +1,38 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "LEFT", | ||
"includePath": [ | ||
"/workspaces/zmk/**" | ||
], | ||
"defines": [], | ||
"compilerPath": "/opt/zephyr-sdk-0.15.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"cStandard": "c17", | ||
"cppStandard": "c++98", | ||
"intelliSenseMode": "linux-gcc-arm", | ||
"compileCommands": "/workspaces/zmk/app/build/left/compile_commands.json", | ||
"compilerPathInCppPropertiesJson": "/opt/zephyr-sdk-0.15.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"compileCommandsInCppPropertiesJson": "${workspaceFolder}/app/build/left/compile_commands.json", | ||
"mergeConfigurations": false, | ||
"browse": { | ||
"path": [ | ||
"/workspaces/zmk/**", | ||
"${workspaceFolder}" | ||
], | ||
"limitSymbolsToIncludedHeaders": true | ||
} | ||
}, | ||
{ | ||
"name": "RIGHT", | ||
"includePath": [ | ||
"/workspaces/zmk/**" | ||
], | ||
"defines": [], | ||
"compilerPath": "/opt/zephyr-sdk-0.15.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"cStandard": "c17", | ||
"cppStandard": "c++98", | ||
"intelliSenseMode": "linux-gcc-arm", | ||
"compilerPathInCppPropertiesJson": "/opt/zephyr-sdk-0.15.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"mergeConfigurations": false, | ||
"browse": { | ||
"path": [ | ||
"/workspaces/zmk/**", | ||
"/workspaces/zmk" | ||
], | ||
"limitSymbolsToIncludedHeaders": true | ||
}, | ||
"compileCommands": "/workspaces/zmk/app/build/right/compile_commands.json" | ||
} | ||
], | ||
"version": 4 | ||
} | ||
"configurations": [ | ||
{ | ||
"name": "LEFT", | ||
"includePath": ["/workspaces/zmk/**"], | ||
"defines": [], | ||
"compilerPath": "/opt/zephyr-sdk-0.16.3/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"cStandard": "c17", | ||
"cppStandard": "c++98", | ||
"intelliSenseMode": "linux-gcc-arm", | ||
"compileCommands": "/workspaces/zmk/app/build/left/compile_commands.json", | ||
"compilerPathInCppPropertiesJson": "/opt/zephyr-sdk-0.16.3/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"compileCommandsInCppPropertiesJson": "${workspaceFolder}/app/build/left/compile_commands.json", | ||
"mergeConfigurations": false, | ||
"browse": { | ||
"path": ["/workspaces/zmk/**", "${workspaceFolder}"], | ||
"limitSymbolsToIncludedHeaders": true | ||
} | ||
}, | ||
{ | ||
"name": "RIGHT", | ||
"includePath": ["/workspaces/zmk/**"], | ||
"defines": [], | ||
"compilerPath": "/opt/zephyr-sdk-0.16.3/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"cStandard": "c17", | ||
"cppStandard": "c++98", | ||
"intelliSenseMode": "linux-gcc-arm", | ||
"compilerPathInCppPropertiesJson": "/opt/zephyr-sdk-0.16.3/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc", | ||
"mergeConfigurations": false, | ||
"browse": { | ||
"path": ["/workspaces/zmk/**", "/workspaces/zmk"], | ||
"limitSymbolsToIncludedHeaders": true | ||
}, | ||
"compileCommands": "/workspaces/zmk/app/build/right/compile_commands.json" | ||
} | ||
], | ||
"version": 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
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
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,6 +1,3 @@ | ||
|
||
if(CONFIG_PINMUX) | ||
zephyr_library() | ||
zephyr_library_sources(pinmux.c) | ||
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) | ||
endif() | ||
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) |
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,6 +1,3 @@ | ||
|
||
if(CONFIG_PINMUX) | ||
zephyr_library() | ||
zephyr_library_sources(pinmux.c) | ||
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) | ||
endif() | ||
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) |
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,6 +1,3 @@ | ||
|
||
if(CONFIG_PINMUX) | ||
zephyr_library() | ||
zephyr_library_sources(pinmux.c) | ||
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) | ||
endif() | ||
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) |
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 |
---|---|---|
|
@@ -16,7 +16,4 @@ endif # USB_DEVICE_STACK | |
config BT_CTLR | ||
default BT | ||
|
||
config PINMUX | ||
default y | ||
|
||
endif # BOARD_PUCHI_BLE_v1 |
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
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
Oops, something went wrong.