-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 043ba08 Merge: eb0d626 277a5d5 Author: OnlineCaveman <[email protected]> Date: Fri Oct 28 22:09:18 2022 +0200 Merge branch 'w5500' commit 277a5d5 Merge: cf44c4e 187ab2e Author: OnlineCaveman <[email protected]> Date: Fri Oct 28 19:35:32 2022 +0200 Merge branch 'w5500' of https://github.com/OnlineCaveman/knx-samd51 into w5500 commit cf44c4e Author: OnlineCaveman <[email protected]> Date: Fri Oct 28 19:35:02 2022 +0200 Added functionality for W5500 Initialisation works. Compiling fails on "htonl" expansion. If commented out it compiles fine. commit 187ab2e Merge: b0238cf eef3a85 Author: OnlineCaveman <[email protected]> Date: Thu Oct 27 14:30:17 2022 +0200 Merge branch 'thelsing:master' into w5500 commit eb0d626 Merge: b0238cf eef3a85 Author: OnlineCaveman <[email protected]> Date: Thu Oct 27 14:29:49 2022 +0200 Merge branch 'thelsing:master' into master commit b0238cf Author: OnlineCaveman <[email protected]> Date: Tue Oct 25 17:28:00 2022 +0200 Changed comment lines Changed the comment lines to reflect the current possibilities TP and RF commit d24f6de Author: OnlineCaveman <[email protected]> Date: Tue Oct 25 17:24:55 2022 +0200 Added the RF (0x27B0) Added checks for RF 0x27B0 as that should work ootb I suppose. Builds and uploads successfully. Gives the debug output "ERROR, RF transceiver not responding" since I have no RF hw to test. Same goes for the TP 0x07B0. Build and uploads successfully. Gives the debug output "ERROR, TPUART not responding" since no I have no TP uart hw to test. commit 7373ab0 Author: OnlineCaveman <[email protected]> Date: Tue Oct 25 16:19:53 2022 +0200 No IP version yet commit 7676257 Author: OnlineCaveman <[email protected]> Date: Tue Oct 25 15:56:34 2022 +0200 Ifdef include requested change commit 02565a0 Author: OnlineCaveman <[email protected]> Date: Mon Oct 17 21:10:23 2022 +0200 Cleanup Removed unnecesary Qspi stuff for now. Compiles fine for samd51 and samd21. Have no samd21 platform or tpuart to do thorough testing but nothing fundamental was changed in samd_platform other than the ifdef checks. commit 598f6bd Merge: 37e056a b403480 Author: OnlineCaveman <[email protected]> Date: Mon Oct 17 20:38:08 2022 +0200 Merge branch 'master' of https://github.com/OnlineCaveman/knx-samd51 commit 37e056a Author: OnlineCaveman <[email protected]> Date: Mon Oct 17 20:37:44 2022 +0200 ARCH_SAMD Now checking for __SAMD21__ and __SAMD51__ in knx_facade, samd_platform (samd21) and samd51_platform (samd51) Preparation for external flash functionality in platform.h commit b403480 Merge: c0e5621 a0134e6 Author: OnlineCaveman <[email protected]> Date: Mon Oct 17 19:59:28 2022 +0200 Merge branch 'thelsing:master' into master commit c0e5621 Author: OnlineCaveman <[email protected]> Date: Mon Oct 17 19:52:10 2022 +0200 Rename back to original commit 6c4a10e Author: OnlineCaveman <[email protected]> Date: Mon Oct 17 19:51:31 2022 +0200 Fault in change tracking Renaming subdir knx to force changes commit b8107fd Author: OnlineCaveman <[email protected]> Date: Mon Oct 17 19:48:09 2022 +0200 SAMD51/SAMD21 files Separate files for SAMD51 and SAMD21 platforms. commit 4248a1f Author: OnlineCaveman <[email protected]> Date: Sat Oct 15 16:15:32 2022 +0200 Updated for samd51 flash storage compatibility
- Loading branch information
Showing
10 changed files
with
646 additions
and
172 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,5 @@ | ||
.pio | ||
.vscode/.browse.c_cpp.db* | ||
.vscode/c_cpp_properties.json | ||
.vscode/launch.json | ||
.vscode/ipch |
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 |
---|---|---|
|
@@ -20,11 +20,10 @@ board = adafruit_feather_m0 | |
framework = arduino | ||
; We consider that the this projects is opened within its project directory | ||
; while working with VS Code. | ||
lib_extra_dirs = ../../../ | ||
|
||
lib_deps = | ||
SPI | ||
knx | ||
knx=file://../../../knx | ||
|
||
build_flags = | ||
-DMASK_VERSION=0x27B0 | ||
|
@@ -39,11 +38,10 @@ build_flags = | |
#framework = arduino | ||
; We consider that the this projects is opened within its project directory | ||
; while working with VS Code. | ||
#lib_extra_dirs = ../../../ | ||
|
||
#lib_deps = | ||
# WifiManager | ||
# knx | ||
# knx=file://../../../knx | ||
|
||
#build_flags = | ||
# -DMASK_VERSION=0x57B0 | ||
|
@@ -55,11 +53,10 @@ board = nodemcuv2 | |
framework = arduino | ||
; We consider that the this projects is opened within its project directory | ||
; while working with VS Code. | ||
lib_extra_dirs = ../../../ | ||
|
||
lib_deps = | ||
[email protected] | ||
knx | ||
knx=file://../../../knx | ||
|
||
build_flags = | ||
-DMASK_VERSION=0x07B0 | ||
|
@@ -75,11 +72,10 @@ board = esp32dev | |
framework = arduino | ||
; We consider that the this projects is opened within its project directory | ||
; while working with VS Code. | ||
lib_extra_dirs = ../../../ | ||
|
||
lib_deps = | ||
https://github.com/tzapu/WiFiManager.git | ||
knx | ||
knx=file://../../../knx | ||
|
||
build_flags = | ||
-DMASK_VERSION=0x57B0 | ||
|
@@ -91,10 +87,9 @@ board = esp32dev | |
framework = arduino | ||
; We consider that the this projects is opened within its project directory | ||
; while working with VS Code. | ||
lib_extra_dirs = ../../../ | ||
|
||
lib_deps = | ||
knx | ||
knx=file://../../../knx | ||
|
||
build_flags = | ||
-DMASK_VERSION=0x07B0 | ||
|
@@ -107,10 +102,9 @@ board = genericSTM32F103CB | |
framework = arduino | ||
; We consider that the this projects is opened within its project directory | ||
; while working with VS Code. | ||
lib_extra_dirs = ../../../ | ||
|
||
lib_deps = | ||
knx | ||
knx=file://../../../knx | ||
|
||
build_flags = | ||
-DENABLE_HWSERIAL1 | ||
|
@@ -130,10 +124,9 @@ board = genericSTM32F103CB | |
framework = arduino | ||
; We consider that the this projects is opened within its project directory | ||
; while working with VS Code. | ||
lib_extra_dirs = ../../../ | ||
|
||
lib_deps = | ||
knx | ||
knx=file://../../../knx | ||
|
||
build_flags = | ||
-DENABLE_HWSERIAL1 | ||
|
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.