-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deletion for arduino support. Code documentation. clean up.
- Loading branch information
Jakob Elias Gebler
committed
Feb 28, 2023
1 parent
5b4dd0d
commit 067b3a5
Showing
211 changed files
with
16,128 additions
and
21,199 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+21.5 MB
...417-stm32f427-437-and-stm32f429-439-advanced-arm-based-32-bit-mcus-stmicroelectronics.pdf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+957 KB
Documents/STM32F4/dm00039084-discovery-kit-with-stm32f407vg-mcu-stmicroelectronics.pdf
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,11 @@ | ||
# Find Zephyr. This also loads Zephyr's build system. | ||
cmake_minimum_required(VERSION 3.13.1) | ||
find_package(Zephyr) | ||
project(epos_controller_mainTest) | ||
|
||
target_sources(app PRIVATE | ||
src/main.cpp | ||
../../Library/epos4/epos4.cpp | ||
) | ||
|
||
include_directories(../../Library/epos4) |
File renamed without changes.
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 @@ | ||
Dieses Projekt soll zum Testen der Can-Kommunikation und das Verfahrens des Motors mittels PPM OHNE simulink model verwendet werden. | ||
|
||
Interessant -> Funktioniert tx_callback(int ?,..-) | ||
|
||
Motor bewegt sich im PPM modus | ||
|
||
west build -b stm32f4_disco .\zephyr\Medit\epos_matlab | ||
west flash | ||
|
||
python3 .\Downloads\pythonploter2.py |
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,17 @@ | ||
CONFIG_CAN=y | ||
CONFIG_CAN_INIT_PRIORITY=80 | ||
CONFIG_CAN_MAX_FILTER=10 | ||
|
||
CONFIG_LOG=y | ||
# CONFIG_CAN_LOG_LEVEL_DBG=y | ||
CONFIG_DEBUG_OPTIMIZATIONS=y | ||
|
||
CONFIG_CPLUSPLUS=y | ||
CONFIG_NEWLIB_LIBC_FLOAT_PRINTF=y | ||
CONFIG_CBPRINTF_FP_SUPPORT=y | ||
CONFIG_NEWLIB_LIBC=y | ||
|
||
CONFIG_PM=y | ||
CONFIG_DMA=y | ||
CONFIG_DMA_STM32=y | ||
CONFIG_UART_ASYNC_API=y |
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,21 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Win32", | ||
"includePath": [ | ||
"${workspaceFolder}/**", | ||
"${workspaceFolder}/epos4" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE", | ||
"_UNICODE" | ||
], | ||
"cStandard": "c17", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "windows-msvc-x64", | ||
"compilerArgs": [] | ||
} | ||
], | ||
"version": 4 | ||
} |
Oops, something went wrong.