From 55d50afcd99bdebde42589fc85040693ff84388e Mon Sep 17 00:00:00 2001
From: Lennard Karger <lennard.karger@stud.hs-hannover.de>
Date: Fri, 11 Nov 2022 17:36:39 +0100
Subject: [PATCH] =?UTF-8?q?platform.ini=20wieder=20hinzugef=C3=BCgt?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .gitignore                                    |  2 -
 .../platformio.ini                            | 59 +++++++++++++++++++
 .../SoaapBleMaster_Test_2/platformio.ini      | 59 +++++++++++++++++++
 .../SoaapBleSlave_Test_2/platformio.ini       | 32 ++++++++++
 4 files changed, 150 insertions(+), 2 deletions(-)
 create mode 100644 sketches/_PIO_Sketches/Karger/SoaapBleMasterMessdatenAusgabe/platformio.ini
 create mode 100644 sketches/_PIO_Sketches/Karger/SoaapBleMaster_Test_2/platformio.ini
 create mode 100644 sketches/_PIO_Sketches/Karger/SoaapBleSlave_Test_2/platformio.ini

diff --git a/.gitignore b/.gitignore
index 7eaa5d2..6c7b69a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1 @@
-*.ini
-sketches/_PIO_Sketches/Karger/BLE_Slae_Test/platformio.ini
 .gitignore
diff --git a/sketches/_PIO_Sketches/Karger/SoaapBleMasterMessdatenAusgabe/platformio.ini b/sketches/_PIO_Sketches/Karger/SoaapBleMasterMessdatenAusgabe/platformio.ini
new file mode 100644
index 0000000..441ea11
--- /dev/null
+++ b/sketches/_PIO_Sketches/Karger/SoaapBleMasterMessdatenAusgabe/platformio.ini
@@ -0,0 +1,59 @@
+; PlatformIO Project Configuration File
+;
+;   Build options: build flags, source filter
+;   Upload options: custom upload port, speed and extra flags
+;   Library options: dependencies, extra library storages
+;   Advanced options: extra scripting
+;
+; Please visit documentation for the other options and examples
+; https://docs.platformio.org/page/projectconf.html
+
+[env:nano33ble]
+platform = nordicnrf52
+board = nano33ble
+framework = arduino
+upload_port = COM3
+build_flags =
+	-DsmnDEFBYBUILD -DsmnNANOBLE33 -DsmnDEBUG
+lib_deps = 
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\BlePoll
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\environment
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\ComRingBuf
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\LoopCheck
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\MidiNotes
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\Monitor
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Gpio
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Radio
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Ser
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Twi
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SensorLSM9DS1
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SoaapMsg
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\StateMachine
+	;symlink://C:\Users\lenna\OneDrive\Dokumente\Git\SOAAP\libraries\SoaapComDue
+	
+[env:Logging]
+platform = nordicnrf52
+board = nano33ble
+framework = arduino
+upload_port = COM3
+build_flags =
+	-DsmnDEFBYBUILD -DsmnNANOBLE33 -DsmnDEBUG
+lib_deps = 
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\BlePoll
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\environment
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\ComRingBuf
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\LoopCheck
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\MidiNotes
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\Monitor
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Gpio
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Radio
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Ser
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Twi
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SensorLSM9DS1
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SoaapMsg
+	symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\StateMachine
+	;symlink://C:\Users\lenna\OneDrive\Dokumente\Git\SOAAP\libraries\SoaapComDue
+monitor_filters =
+  default   ; Remove typical terminal control codes from input
+  time      ; Add timestamp with milliseconds for each new line
+  log2file  ; Log data to a file “platformio-device-monitor-*.log” located in the current working directory
\ No newline at end of file
diff --git a/sketches/_PIO_Sketches/Karger/SoaapBleMaster_Test_2/platformio.ini b/sketches/_PIO_Sketches/Karger/SoaapBleMaster_Test_2/platformio.ini
new file mode 100644
index 0000000..e77e37f
--- /dev/null
+++ b/sketches/_PIO_Sketches/Karger/SoaapBleMaster_Test_2/platformio.ini
@@ -0,0 +1,59 @@
+; PlatformIO Project Configuration File
+;
+;   Build options: build flags, source filter
+;   Upload options: custom upload port, speed and extra flags
+;   Library options: dependencies, extra library storages
+;   Advanced options: extra scripting
+;
+; Please visit documentation for the other options and examples
+; https://docs.platformio.org/page/projectconf.html
+
+[env:nano33ble]
+platform = nordicnrf52
+board = nano33ble
+framework = arduino
+upload_port = COM3
+build_flags =
+	-DsmnDEFBYBUILD -DsmnNANOBLE33 -DsmnDEBUG
+lib_deps = 
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\BlePoll
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\environment
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\ComRingBuf
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\LoopCheck
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\MidiNotes
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\Monitor
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Gpio
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Radio
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Ser
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Twi
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SensorLSM9DS1
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SoaapMsg
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\StateMachine
+	;symlink://C:\Users\lenna\OneDrive\Dokumente\Git\SOAAP\libraries\SoaapComDue
+	
+[env:Logging]
+platform = nordicnrf52
+board = nano33ble
+framework = arduino
+upload_port = COM3
+build_flags =
+	-DsmnDEFBYBUILD -DsmnNANOBLE33 -DsmnDEBUG
+lib_deps = 
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\BlePoll
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\environment
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\ComRingBuf
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\LoopCheck
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\MidiNotes
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\Monitor
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Gpio
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Radio
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Ser
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Twi
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SensorLSM9DS1
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SoaapMsg
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\StateMachine
+	;symlink://C:\Users\lenna\OneDrive\Dokumente\Git\SOAAP\libraries\SoaapComDue
+monitor_filters =
+  default   ; Remove typical terminal control codes from input
+  time      ; Add timestamp with milliseconds for each new line
+  log2file  ; Log data to a file “platformio-device-monitor-*.log” located in the current working directory
\ No newline at end of file
diff --git a/sketches/_PIO_Sketches/Karger/SoaapBleSlave_Test_2/platformio.ini b/sketches/_PIO_Sketches/Karger/SoaapBleSlave_Test_2/platformio.ini
new file mode 100644
index 0000000..bcf5898
--- /dev/null
+++ b/sketches/_PIO_Sketches/Karger/SoaapBleSlave_Test_2/platformio.ini
@@ -0,0 +1,32 @@
+; PlatformIO Project Configuration File
+;
+;   Build options: build flags, source filter
+;   Upload options: custom upload port, speed and extra flags
+;   Library options: dependencies, extra library storages
+;   Advanced options: extra scripting
+;
+; Please visit documentation for the other options and examples
+; https://docs.platformio.org/page/projectconf.html
+
+[env:nano33ble]
+platform = nordicnrf52
+board = nano33ble
+framework = arduino
+upload_port = COM5
+build_flags =
+	-DsmnDEFBYBUILD -DsmnNANOBLE33  -DsmnDEBUG ;-DSlaveACM3
+lib_deps = 
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\BlePoll
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\environment
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\ComRingBuf
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\LoopCheck
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\MidiNotes
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\Monitor
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Gpio
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Radio
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Ser
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\nRF52840Twi
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SensorLSM9DS1
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\SoaapMsg
+	;symlink://C:\Users\Lennard\Documents\Git_local\REP_STR\libraries\StateMachine
+	;symlink://C:\Users\lenna\OneDrive\Dokumente\Git\SOAAP\libraries\SoaapComDue
\ No newline at end of file
-- 
GitLab