diff --git a/stepper/steppermotor_F401RE/.settings/language.settings.xml b/stepper/steppermotor_F401RE/.settings/language.settings.xml
index dee8543..e9ec34c 100644
--- a/stepper/steppermotor_F401RE/.settings/language.settings.xml
+++ b/stepper/steppermotor_F401RE/.settings/language.settings.xml
@@ -6,7 +6,7 @@
-
+
@@ -18,7 +18,7 @@
-
+
diff --git a/stepper/steppermotor_F401RE/.settings/stm32cubeide.project.prefs b/stepper/steppermotor_F401RE/.settings/stm32cubeide.project.prefs
index 6cc080e..d8377cb 100644
--- a/stepper/steppermotor_F401RE/.settings/stm32cubeide.project.prefs
+++ b/stepper/steppermotor_F401RE/.settings/stm32cubeide.project.prefs
@@ -1,4 +1,4 @@
635E684B79701B039C64EA45C3F84D30=06D6BDB73C214833FC1C613EA37D5A96
-8DF89ED150041C4CBC7CB9A9CAA90856=7E7998FE6928AC5B09C3B82F4A5F71B9
-DC22A860405A8BF2F2C095E5B6529F12=7E7998FE6928AC5B09C3B82F4A5F71B9
+8DF89ED150041C4CBC7CB9A9CAA90856=76FE2906A5BA5CF649FB5B55F7F96516
+DC22A860405A8BF2F2C095E5B6529F12=03D6DC78904E12AE15B0131D09EE91C9
eclipse.preferences.version=1
diff --git a/stepper/steppermotor_F401RE/Core/Src/main.c b/stepper/steppermotor_F401RE/Core/Src/main.c
index 468e5a3..2c28af8 100644
--- a/stepper/steppermotor_F401RE/Core/Src/main.c
+++ b/stepper/steppermotor_F401RE/Core/Src/main.c
@@ -47,6 +47,7 @@
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
static volatile uint16_t gLastError;
+static volatile bool gButtonPressed = FALSE;
/* Initialization parameters. */
l6208_Init_t initDeviceParameters =
@@ -79,7 +80,6 @@ void ButtonHandler(void);
int main(void)
{
int32_t pos;
- uint16_t mySpeed;
uint32_t freqPwm;
/* STM32xx HAL library initialization */
@@ -128,337 +128,44 @@ int main(void)
BSP_MotorControl_SetBridgeInputPwmFreq(0, freqPwm>>1);
-//----- Move of 16000 microsteps in the FW direction
-
- /* Move device 16000 microsteps in the FORWARD direction */
- BSP_MotorControl_Move(0, FORWARD, 16000);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Move of 16000 microsteps in the BW direction
-
- /* Move device 16000 microsteps in the BACKWARD direction*/
- BSP_MotorControl_Move(0, BACKWARD, 16000);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
pos = BSP_MotorControl_GetPosition(0);
-
- /* Set the current position to be the Home position */
+
BSP_MotorControl_SetHome(0, pos);
+
+ //BSP_MotorControl_Move(0, FORWARD, 4000);
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Go to position -6400
-
- /* Request to go to position -6400 */
- BSP_MotorControl_GoTo(0, -6400);
+ //BSP_MotorControl_WaitWhileActive(0);
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- if (pos != -6400)
- {
- MyErrorHandler(L6208_ERROR_POSITION);
- }
+ //HAL_Delay(2000);
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
+ //BSP_MotorControl_Move(0, BACKWARD, 4000);
- /* Set the current position to be the Mark position */
- BSP_MotorControl_SetMark(0, pos);
+ //BSP_MotorControl_WaitWhileActive(0);
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Go Home
+ //BSP_MotorControl_SoftStop(0);
- /* Request to go to Home */
- BSP_MotorControl_GoHome(0);
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Go to position 6400
-
- /* Request to go to position 6400 */
- BSP_MotorControl_CmdGoToDir(0, FORWARD, 6400);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Go Mark which was set previously after go to -6400
-
- /* Request to go to Mark position */
- BSP_MotorControl_GoMark(0);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Run the motor BACKWARD
-
- /* Request to run BACKWARD */
- BSP_MotorControl_Run(0, BACKWARD);
- HAL_Delay(5000);
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
-
-//----- Increase the speed while running
-
- /* Increase speed to 2400 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 2400);
- HAL_Delay(5000);
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
-
-//----- Decrease the speed while running
-
- /* Decrease speed to 1200 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 1200);
- HAL_Delay(5000);
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
-
-//----- Increase acceleration while running
-
- /* Increase acceleration to 2000 microstep/s^2 */
- BSP_MotorControl_SetAcceleration(0, 2000);
- HAL_Delay(5000);
-
- /* Increase speed to 2400 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 2400);
- HAL_Delay(5000);
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
-
- if (mySpeed != 2400)
- {
- MyErrorHandler(L6208_ERROR_SPEED);
- }
-//----- Increase deceleration while running
-
- /* Increase deceleration to 2000 microstep/s^2 */
- BSP_MotorControl_SetDeceleration(0, 2000);
- HAL_Delay(5000);
-
- /* Decrease speed to 1200 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 1200);
- HAL_Delay(5000);
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
-
-//----- Soft stopped required while running
-
- /* Request soft stop */
- BSP_MotorControl_SoftStop(0);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Run stopped by hardstop
-
- /* Request to run in FORWARD direction */
- BSP_MotorControl_Run(0, FORWARD);
- HAL_Delay(5000);
-
- /* Request to immediatly stop */
- BSP_MotorControl_HardStop(0);
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- GOTO stopped by softstop
-
- /* Request to go to position 20000 */
- BSP_MotorControl_GoTo(0, 20000);
- HAL_Delay(5000);
-
- /* Request to perform a soft stop */
- BSP_MotorControl_SoftStop(0);
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Change step mode to full step mode
-
- /* Select full step mode (normal mode) */
BSP_MotorControl_SelectStepMode(0, STEP_MODE_FULL);
- /* Set speed, acceleration and deceleration to scale with normal mode */
- /* For normal mode and half step mode, these parameters are in steps/s or /s^2 */
- /* For microstep modes, these parameters are either in (1/16)step/s or /s^2 */
- BSP_MotorControl_SetMaxSpeed(0, BSP_MotorControl_GetMaxSpeed(0)>>4);
- BSP_MotorControl_SetMinSpeed(0, L6208_MIN_SPEED);
- BSP_MotorControl_SetAcceleration(0, BSP_MotorControl_GetAcceleration(0)>>4);
- BSP_MotorControl_SetDeceleration(0, BSP_MotorControl_GetDeceleration(0)>>4);
-
- /* Request to go position 200 (full steps) */
- BSP_MotorControl_GoTo(0, 200);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- if (pos != 200)
- {
- MyErrorHandler(L6208_ERROR_POSITION);
- }
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Change step mode to half step mode
- /* Select half step mode */
- BSP_MotorControl_SelectStepMode(0, STEP_MODE_HALF);
-
- /* Request to go position -400 (half steps) */
- BSP_MotorControl_GoTo(0, -400);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- if (pos != -400)
- {
- MyErrorHandler(L6208_ERROR_POSITION);
- }
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Change step mode 1/4 microstepping mode
- /* Select 1/4 step mode */
- BSP_MotorControl_SelectStepMode(0, STEP_MODE_1_4);
-
- /* Set speed, acceleration and deceleration to scale with microstep mode */
- /* For normal mode and half step mode, these parameters are in steps/s or /s^2 */
- /* For microstep modes, these parameters are either in (1/16)step/s or /s^2 */
- BSP_MotorControl_SetMaxSpeed(0, BSP_MotorControl_GetMaxSpeed(0)<<4);
- BSP_MotorControl_SetMinSpeed(0, L6208_MIN_SPEED);
- BSP_MotorControl_SetAcceleration(0, BSP_MotorControl_GetAcceleration(0)<<4);
- BSP_MotorControl_SetDeceleration(0, BSP_MotorControl_GetDeceleration(0)<<4);
-
- /* Request to go position 800 (quarter steps) */
- BSP_MotorControl_GoTo(0, 800);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- if (pos != 800)
- {
- MyErrorHandler(L6208_ERROR_POSITION);
- }
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Change step mode 1/8 microstepping mode
- /* Select 1/8 step mode */
- BSP_MotorControl_SelectStepMode(0, STEP_MODE_1_8);
-
- /* Request to go position -1600 (1/8th steps) */
- BSP_MotorControl_GoTo(0, -1600);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- if (pos != -1600)
- {
- MyErrorHandler(L6208_ERROR_POSITION);
- }
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
-
-//----- Restore 1/16 microstepping mode
-
- /* Reset device to 1/16 microstepping mode */
- BSP_MotorControl_SelectStepMode(0, STEP_MODE_1_16);
-
- /* Set speed and acceleration at lowest values */
- BSP_MotorControl_SetMaxSpeed(0, L6208_MIN_SPEED);
- BSP_MotorControl_SetAcceleration(0, L6208_MIN_ACC_DEC_RATE);
- BSP_MotorControl_SetDeceleration(0, L6208_MIN_ACC_DEC_RATE);
-
- /* Move device 49 microsteps (1/16th steps) in the FORWARD direction*/
- BSP_MotorControl_Move(0, FORWARD, 49);
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
-
- if (pos != 49)
- {
- MyErrorHandler(L6208_ERROR_POSITION);
- }
-
- /* Set speed and acceleration from powerspin6208_target_config.h */
- BSP_MotorControl_SetMaxSpeed(0, L6208_CONF_PARAM_RUNNING_SPEED);
- BSP_MotorControl_SetAcceleration(0, L6208_CONF_PARAM_ACC_RATE);
- BSP_MotorControl_SetDeceleration(0, L6208_CONF_PARAM_DEC_RATE);
-
- /* Turn off power bridges when motor is stopped */
- BSP_MotorControl_SetStopMode(0, HIZ_MODE);
-
/* Infinite loop */
- while(1)
- {
- /* Request to run */
- BSP_MotorControl_Run(0, BSP_MotorControl_GetDirection(0));
- HAL_Delay(5000);
-
- /* Request soft stop */
- BSP_MotorControl_SoftStop(0);
- HAL_Delay(2000);
- }
+ while(1)
+ {
+ if (gButtonPressed)
+ {
+ gButtonPressed = FALSE;
+ BSP_MotorControl_Move(0, FORWARD, 25);
+ BSP_MotorControl_WaitWhileActive(0);
+ BSP_MotorControl_Move(0, FORWARD, 25);
+ BSP_MotorControl_WaitWhileActive(0);
+ BSP_MotorControl_Move(0, FORWARD, 25);
+ BSP_MotorControl_WaitWhileActive(0);
+ BSP_MotorControl_Move(0, FORWARD, 25);
+ BSP_MotorControl_WaitWhileActive(0);
+ HAL_Delay(2000);
+ }
+ BSP_MotorControl_GoHome(0);
+ BSP_MotorControl_WaitWhileActive(0);
+ HAL_Delay(2000);
+ }
}
/**
@@ -496,18 +203,11 @@ void MyErrorHandler(uint16_t error)
*/
void ButtonHandler(void)
{
- if (BSP_MotorControl_GetDirection(0) != BACKWARD)
- {
- BSP_MotorControl_SetDirection(0, BACKWARD);
- }
- else
- {
- BSP_MotorControl_SetDirection(0, FORWARD);
- }
+ gButtonPressed = TRUE;
/* Let 200 ms before clearing the IT for key debouncing */
- HAL_Delay(200);
- __HAL_GPIO_EXTI_CLEAR_IT(KEY_BUTTON_PIN);
- HAL_NVIC_ClearPendingIRQ(KEY_BUTTON_EXTI_IRQn);
+ HAL_Delay(200);
+ __HAL_GPIO_EXTI_CLEAR_IT(KEY_BUTTON_PIN);
+ HAL_NVIC_ClearPendingIRQ(KEY_BUTTON_EXTI_IRQn);
}
#ifdef USE_FULL_ASSERT
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/clock_f4.o b/stepper/steppermotor_F401RE/Debug/Core/Src/clock_f4.o
index 34de2bd..a573bf7 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/clock_f4.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/clock_f4.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/l6208.o b/stepper/steppermotor_F401RE/Debug/Core/Src/l6208.o
index e9f80ba..aca075f 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/l6208.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/l6208.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/main.o b/stepper/steppermotor_F401RE/Debug/Core/Src/main.o
index 4a22da0..c90696b 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/main.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/main.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/main.su b/stepper/steppermotor_F401RE/Debug/Core/Src/main.su
index 176c5cc..3ba361d 100644
--- a/stepper/steppermotor_F401RE/Debug/Core/Src/main.su
+++ b/stepper/steppermotor_F401RE/Debug/Core/Src/main.su
@@ -1,4 +1,4 @@
-main.c:79:5:main 24 static
-main.c:469:6:MyFlagInterruptHandler 8 static
-main.c:480:6:MyErrorHandler 16 static
-main.c:497:6:ButtonHandler 8 static
+main.c:79:5:main 16 static
+main.c:172:6:MyFlagInterruptHandler 8 static
+main.c:183:6:MyErrorHandler 16 static
+main.c:200:6:ButtonHandler 8 static
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_hal_msp.o b/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_hal_msp.o
index e06465d..380aaef 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_hal_msp.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_hal_msp.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_it.o b/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_it.o
index d75017d..3eb9f00 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_it.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_it.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_nucleo.o b/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_nucleo.o
index 1105a23..66c1109 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_nucleo.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/stm32f4xx_nucleo.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/syscalls.o b/stepper/steppermotor_F401RE/Debug/Core/Src/syscalls.o
index c81f12e..779fe2d 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/syscalls.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/syscalls.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/sysmem.o b/stepper/steppermotor_F401RE/Debug/Core/Src/sysmem.o
index 8b8d9bf..c3b2337 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/sysmem.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/sysmem.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/system_stm32f4xx.o b/stepper/steppermotor_F401RE/Debug/Core/Src/system_stm32f4xx.o
index 4acaf42..071962a 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/system_stm32f4xx.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/system_stm32f4xx.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihm05a1_stm32f4xx.o b/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihm05a1_stm32f4xx.o
index c7265ea..cc5b75b 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihm05a1_stm32f4xx.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihm05a1_stm32f4xx.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihmxx.o b/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihmxx.o
index 3d718cb..b89eb18 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihmxx.o and b/stepper/steppermotor_F401RE/Debug/Core/Src/x_nucleo_ihmxx.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Core/Startup/startup_stm32f401retx.o b/stepper/steppermotor_F401RE/Debug/Core/Startup/startup_stm32f401retx.o
index dc85d2b..e8966f8 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Core/Startup/startup_stm32f401retx.o and b/stepper/steppermotor_F401RE/Debug/Core/Startup/startup_stm32f401retx.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o
index 6bcb7c4..5c9e2bb 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su
index d3a7a8d..44eefe7 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su
@@ -1,25 +1,27 @@
-stm32f4xx_hal.c:173:19:HAL_Init 8 static
-stm32f4xx_hal.c:206:19:HAL_DeInit 8 static
-stm32f4xx_hal.c:235:13:HAL_MspInit 4 static
-stm32f4xx_hal.c:246:13:HAL_MspDeInit 4 static
-stm32f4xx_hal.c:269:26:HAL_InitTick 16 static
-stm32f4xx_hal.c:328:13:HAL_IncTick 4 static
-stm32f4xx_hal.c:339:17:HAL_GetTick 4 static
-stm32f4xx_hal.c:348:10:HAL_GetTickPrio 4 static
-stm32f4xx_hal.c:357:19:HAL_SetTickFreq 24 static
-stm32f4xx_hal.c:377:21:HAL_GetTickFreq 4 static
-stm32f4xx_hal.c:393:13:HAL_Delay 24 static
-stm32f4xx_hal.c:419:13:HAL_SuspendTick 4 static
-stm32f4xx_hal.c:435:13:HAL_ResumeTick 4 static
-stm32f4xx_hal.c:445:10:HAL_GetHalVersion 4 static
-stm32f4xx_hal.c:454:10:HAL_GetREVID 4 static
-stm32f4xx_hal.c:463:10:HAL_GetDEVID 4 static
-stm32f4xx_hal.c:472:6:HAL_DBGMCU_EnableDBGSleepMode 4 static
-stm32f4xx_hal.c:481:6:HAL_DBGMCU_DisableDBGSleepMode 4 static
-stm32f4xx_hal.c:490:6:HAL_DBGMCU_EnableDBGStopMode 4 static
-stm32f4xx_hal.c:499:6:HAL_DBGMCU_DisableDBGStopMode 4 static
-stm32f4xx_hal.c:508:6:HAL_DBGMCU_EnableDBGStandbyMode 4 static
-stm32f4xx_hal.c:517:6:HAL_DBGMCU_DisableDBGStandbyMode 4 static
-stm32f4xx_hal.c:528:6:HAL_EnableCompensationCell 4 static
-stm32f4xx_hal.c:539:6:HAL_DisableCompensationCell 4 static
-stm32f4xx_hal.c:549:6:HAL_GetUID 16 static
+stm32f4xx_hal.c:157:19:HAL_Init 8 static
+stm32f4xx_hal.c:190:19:HAL_DeInit 8 static
+stm32f4xx_hal.c:219:13:HAL_MspInit 4 static
+stm32f4xx_hal.c:230:13:HAL_MspDeInit 4 static
+stm32f4xx_hal.c:253:26:HAL_InitTick 16 static
+stm32f4xx_hal.c:312:13:HAL_IncTick 4 static
+stm32f4xx_hal.c:323:17:HAL_GetTick 4 static
+stm32f4xx_hal.c:332:10:HAL_GetTickPrio 4 static
+stm32f4xx_hal.c:341:19:HAL_SetTickFreq 24 static
+stm32f4xx_hal.c:373:21:HAL_GetTickFreq 4 static
+stm32f4xx_hal.c:389:13:HAL_Delay 24 static
+stm32f4xx_hal.c:415:13:HAL_SuspendTick 4 static
+stm32f4xx_hal.c:431:13:HAL_ResumeTick 4 static
+stm32f4xx_hal.c:441:10:HAL_GetHalVersion 4 static
+stm32f4xx_hal.c:450:10:HAL_GetREVID 4 static
+stm32f4xx_hal.c:459:10:HAL_GetDEVID 4 static
+stm32f4xx_hal.c:468:6:HAL_DBGMCU_EnableDBGSleepMode 4 static
+stm32f4xx_hal.c:477:6:HAL_DBGMCU_DisableDBGSleepMode 4 static
+stm32f4xx_hal.c:486:6:HAL_DBGMCU_EnableDBGStopMode 4 static
+stm32f4xx_hal.c:495:6:HAL_DBGMCU_DisableDBGStopMode 4 static
+stm32f4xx_hal.c:504:6:HAL_DBGMCU_EnableDBGStandbyMode 4 static
+stm32f4xx_hal.c:513:6:HAL_DBGMCU_DisableDBGStandbyMode 4 static
+stm32f4xx_hal.c:524:6:HAL_EnableCompensationCell 4 static
+stm32f4xx_hal.c:535:6:HAL_DisableCompensationCell 4 static
+stm32f4xx_hal.c:544:10:HAL_GetUIDw0 4 static
+stm32f4xx_hal.c:553:10:HAL_GetUIDw1 4 static
+stm32f4xx_hal.c:562:10:HAL_GetUIDw2 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o
index 105455b..5ebdc79 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o
index 06df6de..ab4034a 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.d
deleted file mode 100644
index afaddd9..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.o
deleted file mode 100644
index 1bd5104..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.d
deleted file mode 100644
index 048d3ba..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.o
deleted file mode 100644
index 1ea6e15..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o
index 745eb32..641c5b4 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su
index 6d4b3bd..0aecb9f 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su
@@ -12,21 +12,21 @@ core_cm4.h:1863:26:NVIC_EncodePriority 40 static
core_cm4.h:1890:22:NVIC_DecodePriority 40 static
core_cm4.h:1939:34:__NVIC_SystemReset 4 static,ignoring_inline_asm
core_cm4.h:2022:26:SysTick_Config 16 static
-stm32f4xx_hal_cortex.c:159:6:HAL_NVIC_SetPriorityGrouping 16 static
-stm32f4xx_hal_cortex.c:181:6:HAL_NVIC_SetPriority 32 static
-stm32f4xx_hal_cortex.c:203:6:HAL_NVIC_EnableIRQ 16 static
-stm32f4xx_hal_cortex.c:219:6:HAL_NVIC_DisableIRQ 16 static
-stm32f4xx_hal_cortex.c:232:6:HAL_NVIC_SystemReset 8 static
-stm32f4xx_hal_cortex.c:245:10:HAL_SYSTICK_Config 16 static
-stm32f4xx_hal_cortex.c:274:6:HAL_MPU_Disable 4 static,ignoring_inline_asm
-stm32f4xx_hal_cortex.c:297:6:HAL_MPU_Enable 16 static,ignoring_inline_asm
-stm32f4xx_hal_cortex.c:316:6:HAL_MPU_ConfigRegion 16 static
-stm32f4xx_hal_cortex.c:360:10:HAL_NVIC_GetPriorityGrouping 8 static
-stm32f4xx_hal_cortex.c:387:6:HAL_NVIC_GetPriority 24 static
-stm32f4xx_hal_cortex.c:402:6:HAL_NVIC_SetPendingIRQ 16 static
-stm32f4xx_hal_cortex.c:420:10:HAL_NVIC_GetPendingIRQ 16 static
-stm32f4xx_hal_cortex.c:436:6:HAL_NVIC_ClearPendingIRQ 16 static
-stm32f4xx_hal_cortex.c:453:10:HAL_NVIC_GetActive 16 static
-stm32f4xx_hal_cortex.c:470:6:HAL_SYSTICK_CLKSourceConfig 16 static
-stm32f4xx_hal_cortex.c:488:6:HAL_SYSTICK_IRQHandler 8 static
-stm32f4xx_hal_cortex.c:497:13:HAL_SYSTICK_Callback 4 static
+stm32f4xx_hal_cortex.c:143:6:HAL_NVIC_SetPriorityGrouping 16 static
+stm32f4xx_hal_cortex.c:165:6:HAL_NVIC_SetPriority 32 static
+stm32f4xx_hal_cortex.c:187:6:HAL_NVIC_EnableIRQ 16 static
+stm32f4xx_hal_cortex.c:203:6:HAL_NVIC_DisableIRQ 16 static
+stm32f4xx_hal_cortex.c:216:6:HAL_NVIC_SystemReset 8 static
+stm32f4xx_hal_cortex.c:229:10:HAL_SYSTICK_Config 16 static
+stm32f4xx_hal_cortex.c:258:6:HAL_MPU_Disable 4 static,ignoring_inline_asm
+stm32f4xx_hal_cortex.c:281:6:HAL_MPU_Enable 16 static,ignoring_inline_asm
+stm32f4xx_hal_cortex.c:300:6:HAL_MPU_ConfigRegion 16 static
+stm32f4xx_hal_cortex.c:344:10:HAL_NVIC_GetPriorityGrouping 8 static
+stm32f4xx_hal_cortex.c:371:6:HAL_NVIC_GetPriority 24 static
+stm32f4xx_hal_cortex.c:386:6:HAL_NVIC_SetPendingIRQ 16 static
+stm32f4xx_hal_cortex.c:404:10:HAL_NVIC_GetPendingIRQ 16 static
+stm32f4xx_hal_cortex.c:420:6:HAL_NVIC_ClearPendingIRQ 16 static
+stm32f4xx_hal_cortex.c:437:10:HAL_NVIC_GetActive 16 static
+stm32f4xx_hal_cortex.c:454:6:HAL_SYSTICK_CLKSourceConfig 16 static
+stm32f4xx_hal_cortex.c:472:6:HAL_SYSTICK_IRQHandler 8 static
+stm32f4xx_hal_cortex.c:481:13:HAL_SYSTICK_Callback 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.d
deleted file mode 100644
index f3a3ae4..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o
deleted file mode 100644
index 8cc31f8..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.d
deleted file mode 100644
index 93aab3c..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.o
deleted file mode 100644
index 4ebd6eb..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.d
deleted file mode 100644
index 405131e..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.o
deleted file mode 100644
index 6ba16d7..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.d
deleted file mode 100644
index 94075e2..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.o
deleted file mode 100644
index fce90d7..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.d
deleted file mode 100644
index fbf306a..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.o
deleted file mode 100644
index 2b82a32..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.d
deleted file mode 100644
index bb6b8b7..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.o
deleted file mode 100644
index 0b91c5a..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.d
deleted file mode 100644
index a7dd8ea..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.o
deleted file mode 100644
index 6df10ef..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.d
deleted file mode 100644
index 91c9a93..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.o
deleted file mode 100644
index 3ffc3fb..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o
index f8623e1..cfb53dc 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su
index 1d012e7..496f52a 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su
@@ -1,15 +1,15 @@
-stm32f4xx_hal_dma.c:187:19:HAL_DMA_Init 32 static
-stm32f4xx_hal_dma.c:326:19:HAL_DMA_DeInit 24 static
-stm32f4xx_hal_dma.c:416:19:HAL_DMA_Start 32 static
-stm32f4xx_hal_dma.c:460:19:HAL_DMA_Start_IT 32 static
-stm32f4xx_hal_dma.c:523:19:HAL_DMA_Abort 24 static
-stm32f4xx_hal_dma.c:590:19:HAL_DMA_Abort_IT 16 static
-stm32f4xx_hal_dma.c:620:19:HAL_DMA_PollForTransfer 48 static
-stm32f4xx_hal_dma.c:756:6:HAL_DMA_IRQHandler 32 static
-stm32f4xx_hal_dma.c:977:19:HAL_DMA_RegisterCallback 32 static
-stm32f4xx_hal_dma.c:1037:19:HAL_DMA_UnRegisterCallback 24 static
-stm32f4xx_hal_dma.c:1122:22:HAL_DMA_GetState 16 static
-stm32f4xx_hal_dma.c:1133:10:HAL_DMA_GetError 16 static
-stm32f4xx_hal_dma.c:1159:13:DMA_SetConfig 24 static
-stm32f4xx_hal_dma.c:1193:17:DMA_CalcBaseAndBitshift 24 static
-stm32f4xx_hal_dma.c:1221:26:DMA_CheckFifoParam 24 static
+stm32f4xx_hal_dma.c:171:19:HAL_DMA_Init 32 static
+stm32f4xx_hal_dma.c:310:19:HAL_DMA_DeInit 24 static
+stm32f4xx_hal_dma.c:408:19:HAL_DMA_Start 32 static
+stm32f4xx_hal_dma.c:452:19:HAL_DMA_Start_IT 32 static
+stm32f4xx_hal_dma.c:514:19:HAL_DMA_Abort 24 static
+stm32f4xx_hal_dma.c:581:19:HAL_DMA_Abort_IT 16 static
+stm32f4xx_hal_dma.c:611:19:HAL_DMA_PollForTransfer 48 static
+stm32f4xx_hal_dma.c:747:6:HAL_DMA_IRQHandler 32 static
+stm32f4xx_hal_dma.c:968:19:HAL_DMA_RegisterCallback 32 static
+stm32f4xx_hal_dma.c:1028:19:HAL_DMA_UnRegisterCallback 24 static
+stm32f4xx_hal_dma.c:1113:22:HAL_DMA_GetState 16 static
+stm32f4xx_hal_dma.c:1124:10:HAL_DMA_GetError 16 static
+stm32f4xx_hal_dma.c:1150:13:DMA_SetConfig 24 static
+stm32f4xx_hal_dma.c:1184:17:DMA_CalcBaseAndBitshift 24 static
+stm32f4xx_hal_dma.c:1212:26:DMA_CheckFifoParam 24 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.d
deleted file mode 100644
index 771b70b..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.o
deleted file mode 100644
index 0e93a53..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o
index 0105b6a..0befa7a 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su
index b0cbf18..2652b39 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su
@@ -1,4 +1,4 @@
-stm32f4xx_hal_dma_ex.c:117:19:HAL_DMAEx_MultiBufferStart 32 static
-stm32f4xx_hal_dma_ex.c:171:19:HAL_DMAEx_MultiBufferStart_IT 32 static
-stm32f4xx_hal_dma_ex.c:256:19:HAL_DMAEx_ChangeMemory 24 static
-stm32f4xx_hal_dma_ex.c:293:13:DMA_MultiBufferSetConfig 24 static
+stm32f4xx_hal_dma_ex.c:101:19:HAL_DMAEx_MultiBufferStart 32 static
+stm32f4xx_hal_dma_ex.c:155:19:HAL_DMAEx_MultiBufferStart_IT 32 static
+stm32f4xx_hal_dma_ex.c:240:19:HAL_DMAEx_ChangeMemory 24 static
+stm32f4xx_hal_dma_ex.c:277:13:DMA_MultiBufferSetConfig 24 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.d
deleted file mode 100644
index 6b78ac4..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.o
deleted file mode 100644
index 226ac95..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.d
deleted file mode 100644
index 2aa66b1..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.o
deleted file mode 100644
index 26f2a8d..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o
index 58d5a51..4e2ec43 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o
index a8045c2..6dc0d6e 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su
index 97c3482..49d6471 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su
@@ -1,17 +1,17 @@
-stm32f4xx_hal_flash.c:172:19:HAL_FLASH_Program 32 static
-stm32f4xx_hal_flash.c:230:19:HAL_FLASH_Program_IT 32 static
-stm32f4xx_hal_flash.c:277:6:HAL_FLASH_IRQHandler 16 static
-stm32f4xx_hal_flash.c:400:13:HAL_FLASH_EndOfOperationCallback 16 static
-stm32f4xx_hal_flash.c:417:13:HAL_FLASH_OperationErrorCallback 16 static
-stm32f4xx_hal_flash.c:449:19:HAL_FLASH_Unlock 16 static
-stm32f4xx_hal_flash.c:473:19:HAL_FLASH_Lock 4 static
-stm32f4xx_hal_flash.c:485:19:HAL_FLASH_OB_Unlock 4 static
-stm32f4xx_hal_flash.c:505:19:HAL_FLASH_OB_Lock 4 static
-stm32f4xx_hal_flash.c:517:19:HAL_FLASH_OB_Launch 8 static
-stm32f4xx_hal_flash.c:554:10:HAL_FLASH_GetError 4 static
-stm32f4xx_hal_flash.c:568:19:FLASH_WaitForLastOperation 24 static
-stm32f4xx_hal_flash.c:628:13:FLASH_Program_DoubleWord 24 static
-stm32f4xx_hal_flash.c:656:13:FLASH_Program_Word 16 static
-stm32f4xx_hal_flash.c:681:13:FLASH_Program_HalfWord 16 static
-stm32f4xx_hal_flash.c:706:13:FLASH_Program_Byte 16 static
-stm32f4xx_hal_flash.c:723:13:FLASH_SetErrorCode 4 static
+stm32f4xx_hal_flash.c:156:19:HAL_FLASH_Program 32 static
+stm32f4xx_hal_flash.c:214:19:HAL_FLASH_Program_IT 32 static
+stm32f4xx_hal_flash.c:261:6:HAL_FLASH_IRQHandler 16 static
+stm32f4xx_hal_flash.c:384:13:HAL_FLASH_EndOfOperationCallback 16 static
+stm32f4xx_hal_flash.c:401:13:HAL_FLASH_OperationErrorCallback 16 static
+stm32f4xx_hal_flash.c:433:19:HAL_FLASH_Unlock 16 static
+stm32f4xx_hal_flash.c:457:19:HAL_FLASH_Lock 4 static
+stm32f4xx_hal_flash.c:469:19:HAL_FLASH_OB_Unlock 4 static
+stm32f4xx_hal_flash.c:489:19:HAL_FLASH_OB_Lock 4 static
+stm32f4xx_hal_flash.c:501:19:HAL_FLASH_OB_Launch 8 static
+stm32f4xx_hal_flash.c:538:10:HAL_FLASH_GetError 4 static
+stm32f4xx_hal_flash.c:552:19:FLASH_WaitForLastOperation 24 static
+stm32f4xx_hal_flash.c:612:13:FLASH_Program_DoubleWord 24 static,ignoring_inline_asm
+stm32f4xx_hal_flash.c:646:13:FLASH_Program_Word 16 static
+stm32f4xx_hal_flash.c:671:13:FLASH_Program_HalfWord 16 static
+stm32f4xx_hal_flash.c:696:13:FLASH_Program_Byte 16 static
+stm32f4xx_hal_flash.c:713:13:FLASH_SetErrorCode 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o
index 6e9e30b..ce85028 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su
index 3ee9c7d..dc2fcd4 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su
@@ -1,22 +1,22 @@
-stm32f4xx_hal_flash_ex.c:178:19:HAL_FLASHEx_Erase 24 static
-stm32f4xx_hal_flash_ex.c:249:19:HAL_FLASHEx_Erase_IT 24 static
-stm32f4xx_hal_flash_ex.c:302:19:HAL_FLASHEx_OBProgram 24 static
-stm32f4xx_hal_flash_ex.c:361:6:HAL_FLASHEx_OBGetConfig 16 static
-stm32f4xx_hal_flash_ex.c:390:19:HAL_FLASHEx_AdvOBProgram 24 static
-stm32f4xx_hal_flash_ex.c:446:6:HAL_FLASHEx_AdvOBGetConfig 16 static
-stm32f4xx_hal_flash_ex.c:478:19:HAL_FLASHEx_OB_SelectPCROP 16 static
-stm32f4xx_hal_flash_ex.c:503:19:HAL_FLASHEx_OB_DeSelectPCROP 16 static
-stm32f4xx_hal_flash_ex.c:969:13:FLASH_MassErase 16 static
-stm32f4xx_hal_flash_ex.c:998:6:FLASH_Erase_Sector 24 static
-stm32f4xx_hal_flash_ex.c:1048:26:FLASH_OB_EnableWRP 24 static
-stm32f4xx_hal_flash_ex.c:1084:26:FLASH_OB_DisableWRP 24 static
-stm32f4xx_hal_flash_ex.c:1117:26:FLASH_OB_EnablePCROP 24 static
-stm32f4xx_hal_flash_ex.c:1145:26:FLASH_OB_DisablePCROP 24 static
-stm32f4xx_hal_flash_ex.c:1178:26:FLASH_OB_RDP_LevelConfig 24 static
-stm32f4xx_hal_flash_ex.c:1212:26:FLASH_OB_UserConfig 24 static
-stm32f4xx_hal_flash_ex.c:1247:26:FLASH_OB_BOR_LevelConfig 16 static
-stm32f4xx_hal_flash_ex.c:1265:16:FLASH_OB_GetUser 4 static
-stm32f4xx_hal_flash_ex.c:1275:17:FLASH_OB_GetWRP 4 static
-stm32f4xx_hal_flash_ex.c:1289:16:FLASH_OB_GetRDP 16 static
-stm32f4xx_hal_flash_ex.c:1317:16:FLASH_OB_GetBOR 4 static
-stm32f4xx_hal_flash_ex.c:1327:6:FLASH_FlushCaches 4 static
+stm32f4xx_hal_flash_ex.c:162:19:HAL_FLASHEx_Erase 24 static
+stm32f4xx_hal_flash_ex.c:233:19:HAL_FLASHEx_Erase_IT 24 static
+stm32f4xx_hal_flash_ex.c:286:19:HAL_FLASHEx_OBProgram 24 static
+stm32f4xx_hal_flash_ex.c:345:6:HAL_FLASHEx_OBGetConfig 16 static
+stm32f4xx_hal_flash_ex.c:374:19:HAL_FLASHEx_AdvOBProgram 24 static
+stm32f4xx_hal_flash_ex.c:430:6:HAL_FLASHEx_AdvOBGetConfig 16 static
+stm32f4xx_hal_flash_ex.c:462:19:HAL_FLASHEx_OB_SelectPCROP 16 static
+stm32f4xx_hal_flash_ex.c:487:19:HAL_FLASHEx_OB_DeSelectPCROP 16 static
+stm32f4xx_hal_flash_ex.c:953:13:FLASH_MassErase 16 static
+stm32f4xx_hal_flash_ex.c:982:6:FLASH_Erase_Sector 24 static
+stm32f4xx_hal_flash_ex.c:1032:26:FLASH_OB_EnableWRP 24 static
+stm32f4xx_hal_flash_ex.c:1068:26:FLASH_OB_DisableWRP 24 static
+stm32f4xx_hal_flash_ex.c:1101:26:FLASH_OB_EnablePCROP 24 static
+stm32f4xx_hal_flash_ex.c:1129:26:FLASH_OB_DisablePCROP 24 static
+stm32f4xx_hal_flash_ex.c:1162:26:FLASH_OB_RDP_LevelConfig 24 static
+stm32f4xx_hal_flash_ex.c:1196:26:FLASH_OB_UserConfig 24 static
+stm32f4xx_hal_flash_ex.c:1231:26:FLASH_OB_BOR_LevelConfig 16 static
+stm32f4xx_hal_flash_ex.c:1249:16:FLASH_OB_GetUser 4 static
+stm32f4xx_hal_flash_ex.c:1259:17:FLASH_OB_GetWRP 4 static
+stm32f4xx_hal_flash_ex.c:1273:16:FLASH_OB_GetRDP 16 static
+stm32f4xx_hal_flash_ex.c:1301:16:FLASH_OB_GetBOR 4 static
+stm32f4xx_hal_flash_ex.c:1311:6:FLASH_FlushCaches 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o
index 3087e53..3654105 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.d
deleted file mode 100644
index 1d2774a..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.o
deleted file mode 100644
index 589d71e..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.d
deleted file mode 100644
index feea01f..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.o
deleted file mode 100644
index 403077c..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o
index f143260..a311bec 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su
index c1b2c91..5cb8dea 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su
@@ -1,8 +1,8 @@
-stm32f4xx_hal_gpio.c:187:6:HAL_GPIO_Init 40 static
-stm32f4xx_hal_gpio.c:312:6:HAL_GPIO_DeInit 32 static
-stm32f4xx_hal_gpio.c:393:15:HAL_GPIO_ReadPin 24 static
-stm32f4xx_hal_gpio.c:428:6:HAL_GPIO_WritePin 16 static
-stm32f4xx_hal_gpio.c:451:6:HAL_GPIO_TogglePin 16 static
-stm32f4xx_hal_gpio.c:470:19:HAL_GPIO_LockPin 24 static
-stm32f4xx_hal_gpio.c:503:6:HAL_GPIO_EXTI_IRQHandler 16 static
-stm32f4xx_hal_gpio.c:518:13:HAL_GPIO_EXTI_Callback 16 static
+stm32f4xx_hal_gpio.c:171:6:HAL_GPIO_Init 40 static
+stm32f4xx_hal_gpio.c:296:6:HAL_GPIO_DeInit 32 static
+stm32f4xx_hal_gpio.c:377:15:HAL_GPIO_ReadPin 24 static
+stm32f4xx_hal_gpio.c:412:6:HAL_GPIO_WritePin 16 static
+stm32f4xx_hal_gpio.c:435:6:HAL_GPIO_TogglePin 16 static
+stm32f4xx_hal_gpio.c:461:19:HAL_GPIO_LockPin 24 static
+stm32f4xx_hal_gpio.c:495:6:HAL_GPIO_EXTI_IRQHandler 16 static
+stm32f4xx_hal_gpio.c:510:13:HAL_GPIO_EXTI_Callback 16 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.d
deleted file mode 100644
index 2147446..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.o
deleted file mode 100644
index d9ce50f..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.d
deleted file mode 100644
index f88d5aa..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.o
deleted file mode 100644
index 2dc4109..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.d
deleted file mode 100644
index 2bb20df..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.o
deleted file mode 100644
index e54b9eb..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.d
deleted file mode 100644
index 9524b21..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o
deleted file mode 100644
index 951afe1..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.d
deleted file mode 100644
index 7bfb4f7..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o
deleted file mode 100644
index 89b4df5..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.d
deleted file mode 100644
index b45d3cf..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.o
deleted file mode 100644
index 72e905a..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.d
deleted file mode 100644
index e117296..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.o
deleted file mode 100644
index 9b57f1b..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.d
deleted file mode 100644
index 0735da0..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.o
deleted file mode 100644
index 8a3670d..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.d
deleted file mode 100644
index da782fa..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.o
deleted file mode 100644
index 10b0642..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.d
deleted file mode 100644
index a609c3f..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.o
deleted file mode 100644
index bc14229..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.d
deleted file mode 100644
index d4fb718..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.o
deleted file mode 100644
index 4e7e786..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.d
deleted file mode 100644
index 8d739f7..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.o
deleted file mode 100644
index c5b7325..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.d
deleted file mode 100644
index b5f8608..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.o
deleted file mode 100644
index 50cec4e..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.d
deleted file mode 100644
index bac8c21..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.o
deleted file mode 100644
index 1142da0..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.su
deleted file mode 100644
index ad8a90d..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.su
+++ /dev/null
@@ -1,4 +0,0 @@
-stm32f4xx_hal_msp_template.c:67:6:HAL_MspInit 4 static
-stm32f4xx_hal_msp_template.c:78:6:HAL_MspDeInit 4 static
-stm32f4xx_hal_msp_template.c:89:6:HAL_PPP_MspInit 4 static
-stm32f4xx_hal_msp_template.c:100:6:HAL_PPP_MspDeInit 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.d
deleted file mode 100644
index 12622af..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.o
deleted file mode 100644
index a638cf0..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.d
deleted file mode 100644
index 6656692..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.o
deleted file mode 100644
index 062dda3..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.d
deleted file mode 100644
index 28c1beb..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.o
deleted file mode 100644
index 797c9f3..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.d
deleted file mode 100644
index 7ca7073..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o
deleted file mode 100644
index cf93c86..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.d
deleted file mode 100644
index d5db802..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o
deleted file mode 100644
index 7c73fc7..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o
index cb2843b..739eb7a 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su
index edc8c04..2e967b0 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su
@@ -1,17 +1,17 @@
-stm32f4xx_hal_pwr.c:108:6:HAL_PWR_DeInit 4 static
-stm32f4xx_hal_pwr.c:121:6:HAL_PWR_EnableBkUpAccess 4 static
-stm32f4xx_hal_pwr.c:133:6:HAL_PWR_DisableBkUpAccess 4 static
-stm32f4xx_hal_pwr.c:268:6:HAL_PWR_ConfigPVD 16 static
-stm32f4xx_hal_pwr.c:311:6:HAL_PWR_EnablePVD 4 static
-stm32f4xx_hal_pwr.c:320:6:HAL_PWR_DisablePVD 4 static
-stm32f4xx_hal_pwr.c:334:6:HAL_PWR_EnableWakeUpPin 16 static
-stm32f4xx_hal_pwr.c:352:6:HAL_PWR_DisableWakeUpPin 16 static
-stm32f4xx_hal_pwr.c:381:6:HAL_PWR_EnterSLEEPMode 16 static,ignoring_inline_asm
-stm32f4xx_hal_pwr.c:424:6:HAL_PWR_EnterSTOPMode 16 static,ignoring_inline_asm
-stm32f4xx_hal_pwr.c:463:6:HAL_PWR_EnterSTANDBYMode 4 static,ignoring_inline_asm
-stm32f4xx_hal_pwr.c:484:6:HAL_PWR_PVD_IRQHandler 8 static
-stm32f4xx_hal_pwr.c:501:13:HAL_PWR_PVDCallback 4 static
-stm32f4xx_hal_pwr.c:516:6:HAL_PWR_EnableSleepOnExit 4 static
-stm32f4xx_hal_pwr.c:528:6:HAL_PWR_DisableSleepOnExit 4 static
-stm32f4xx_hal_pwr.c:540:6:HAL_PWR_EnableSEVOnPend 4 static
-stm32f4xx_hal_pwr.c:552:6:HAL_PWR_DisableSEVOnPend 4 static
+stm32f4xx_hal_pwr.c:92:6:HAL_PWR_DeInit 4 static
+stm32f4xx_hal_pwr.c:105:6:HAL_PWR_EnableBkUpAccess 4 static
+stm32f4xx_hal_pwr.c:117:6:HAL_PWR_DisableBkUpAccess 4 static
+stm32f4xx_hal_pwr.c:252:6:HAL_PWR_ConfigPVD 16 static
+stm32f4xx_hal_pwr.c:295:6:HAL_PWR_EnablePVD 4 static
+stm32f4xx_hal_pwr.c:304:6:HAL_PWR_DisablePVD 4 static
+stm32f4xx_hal_pwr.c:318:6:HAL_PWR_EnableWakeUpPin 16 static
+stm32f4xx_hal_pwr.c:336:6:HAL_PWR_DisableWakeUpPin 16 static
+stm32f4xx_hal_pwr.c:365:6:HAL_PWR_EnterSLEEPMode 16 static,ignoring_inline_asm
+stm32f4xx_hal_pwr.c:408:6:HAL_PWR_EnterSTOPMode 16 static,ignoring_inline_asm
+stm32f4xx_hal_pwr.c:447:6:HAL_PWR_EnterSTANDBYMode 4 static,ignoring_inline_asm
+stm32f4xx_hal_pwr.c:468:6:HAL_PWR_PVD_IRQHandler 8 static
+stm32f4xx_hal_pwr.c:485:13:HAL_PWR_PVDCallback 4 static
+stm32f4xx_hal_pwr.c:500:6:HAL_PWR_EnableSleepOnExit 4 static
+stm32f4xx_hal_pwr.c:512:6:HAL_PWR_DisableSleepOnExit 4 static
+stm32f4xx_hal_pwr.c:524:6:HAL_PWR_EnableSEVOnPend 4 static
+stm32f4xx_hal_pwr.c:536:6:HAL_PWR_DisableSEVOnPend 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o
index cdd8df6..faec714 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su
index 421643d..c043d09 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su
@@ -1,10 +1,10 @@
-stm32f4xx_hal_pwr_ex.c:159:19:HAL_PWREx_EnableBkUpReg 16 static
-stm32f4xx_hal_pwr_ex.c:183:19:HAL_PWREx_DisableBkUpReg 16 static
-stm32f4xx_hal_pwr_ex.c:207:6:HAL_PWREx_EnableFlashPowerDown 4 static
-stm32f4xx_hal_pwr_ex.c:216:6:HAL_PWREx_DisableFlashPowerDown 4 static
-stm32f4xx_hal_pwr_ex.c:229:10:HAL_PWREx_GetVoltageRange 4 static
-stm32f4xx_hal_pwr_ex.c:306:19:HAL_PWREx_ControlVoltageScaling 32 static
-stm32f4xx_hal_pwr_ex.c:397:6:HAL_PWREx_EnableMainRegulatorLowVoltage 4 static
-stm32f4xx_hal_pwr_ex.c:408:6:HAL_PWREx_DisableMainRegulatorLowVoltage 4 static
-stm32f4xx_hal_pwr_ex.c:419:6:HAL_PWREx_EnableLowRegulatorLowVoltage 4 static
-stm32f4xx_hal_pwr_ex.c:430:6:HAL_PWREx_DisableLowRegulatorLowVoltage 4 static
+stm32f4xx_hal_pwr_ex.c:143:19:HAL_PWREx_EnableBkUpReg 16 static
+stm32f4xx_hal_pwr_ex.c:167:19:HAL_PWREx_DisableBkUpReg 16 static
+stm32f4xx_hal_pwr_ex.c:191:6:HAL_PWREx_EnableFlashPowerDown 4 static
+stm32f4xx_hal_pwr_ex.c:200:6:HAL_PWREx_DisableFlashPowerDown 4 static
+stm32f4xx_hal_pwr_ex.c:213:10:HAL_PWREx_GetVoltageRange 4 static
+stm32f4xx_hal_pwr_ex.c:290:19:HAL_PWREx_ControlVoltageScaling 32 static
+stm32f4xx_hal_pwr_ex.c:361:6:HAL_PWREx_EnableMainRegulatorLowVoltage 4 static
+stm32f4xx_hal_pwr_ex.c:372:6:HAL_PWREx_DisableMainRegulatorLowVoltage 4 static
+stm32f4xx_hal_pwr_ex.c:383:6:HAL_PWREx_EnableLowRegulatorLowVoltage 4 static
+stm32f4xx_hal_pwr_ex.c:394:6:HAL_PWREx_DisableLowRegulatorLowVoltage 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.d
deleted file mode 100644
index 21b86f1..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.o
deleted file mode 100644
index e979bd5..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o
index c60cfcd..d8005c5 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su
index 4868380..97d6aee 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su
@@ -1,14 +1,14 @@
-stm32f4xx_hal_rcc.c:218:26:HAL_RCC_DeInit 4 static
-stm32f4xx_hal_rcc.c:237:26:HAL_RCC_OscConfig 32 static
-stm32f4xx_hal_rcc.c:581:19:HAL_RCC_ClockConfig 24 static
-stm32f4xx_hal_rcc.c:765:6:HAL_RCC_MCOConfig 56 static
-stm32f4xx_hal_rcc.c:831:6:HAL_RCC_EnableCSS 4 static
-stm32f4xx_hal_rcc.c:840:6:HAL_RCC_DisableCSS 4 static
-stm32f4xx_hal_rcc.c:875:17:HAL_RCC_GetSysClockFreq 40 static
-stm32f4xx_hal_rcc.c:931:10:HAL_RCC_GetHCLKFreq 4 static
-stm32f4xx_hal_rcc.c:942:10:HAL_RCC_GetPCLK1Freq 8 static
-stm32f4xx_hal_rcc.c:954:10:HAL_RCC_GetPCLK2Freq 8 static
-stm32f4xx_hal_rcc.c:967:13:HAL_RCC_GetOscConfig 16 static
-stm32f4xx_hal_rcc.c:1046:6:HAL_RCC_GetClockConfig 16 static
-stm32f4xx_hal_rcc.c:1072:6:HAL_RCC_NMI_IRQHandler 8 static
-stm32f4xx_hal_rcc.c:1089:13:HAL_RCC_CSSCallback 4 static
+stm32f4xx_hal_rcc.c:202:26:HAL_RCC_DeInit 4 static
+stm32f4xx_hal_rcc.c:221:26:HAL_RCC_OscConfig 32 static
+stm32f4xx_hal_rcc.c:582:19:HAL_RCC_ClockConfig 24 static
+stm32f4xx_hal_rcc.c:766:6:HAL_RCC_MCOConfig 56 static
+stm32f4xx_hal_rcc.c:832:6:HAL_RCC_EnableCSS 4 static
+stm32f4xx_hal_rcc.c:841:6:HAL_RCC_DisableCSS 4 static
+stm32f4xx_hal_rcc.c:876:17:HAL_RCC_GetSysClockFreq 40 static
+stm32f4xx_hal_rcc.c:932:10:HAL_RCC_GetHCLKFreq 4 static
+stm32f4xx_hal_rcc.c:943:10:HAL_RCC_GetPCLK1Freq 8 static
+stm32f4xx_hal_rcc.c:955:10:HAL_RCC_GetPCLK2Freq 8 static
+stm32f4xx_hal_rcc.c:968:13:HAL_RCC_GetOscConfig 16 static
+stm32f4xx_hal_rcc.c:1047:6:HAL_RCC_GetClockConfig 16 static
+stm32f4xx_hal_rcc.c:1073:6:HAL_RCC_NMI_IRQHandler 8 static
+stm32f4xx_hal_rcc.c:1090:13:HAL_RCC_CSSCallback 4 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o
index cc5d9e3..25407ac 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su
index fbaf0c6..72fc12d 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su
@@ -1,6 +1,6 @@
-stm32f4xx_hal_rcc_ex.c:2519:19:HAL_RCCEx_PeriphCLKConfig 32 static
-stm32f4xx_hal_rcc_ex.c:2647:6:HAL_RCCEx_GetPeriphCLKConfig 24 static
-stm32f4xx_hal_rcc_ex.c:2685:10:HAL_RCCEx_GetPeriphCLKFreq 32 static
-stm32f4xx_hal_rcc_ex.c:2809:19:HAL_RCCEx_EnablePLLI2S 24 static
-stm32f4xx_hal_rcc_ex.c:2892:19:HAL_RCCEx_DisablePLLI2S 16 static
-stm32f4xx_hal_rcc_ex.c:3149:19:HAL_RCC_DeInit 16 static
+stm32f4xx_hal_rcc_ex.c:2515:19:HAL_RCCEx_PeriphCLKConfig 32 static
+stm32f4xx_hal_rcc_ex.c:2643:6:HAL_RCCEx_GetPeriphCLKConfig 24 static
+stm32f4xx_hal_rcc_ex.c:2681:10:HAL_RCCEx_GetPeriphCLKFreq 32 static
+stm32f4xx_hal_rcc_ex.c:2805:19:HAL_RCCEx_EnablePLLI2S 24 static
+stm32f4xx_hal_rcc_ex.c:2888:19:HAL_RCCEx_DisablePLLI2S 16 static
+stm32f4xx_hal_rcc_ex.c:3145:19:HAL_RCC_DeInit 16 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.d
deleted file mode 100644
index f95bec3..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.o
deleted file mode 100644
index 7a0ffa4..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.d
deleted file mode 100644
index e9c3373..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.o
deleted file mode 100644
index 51e3758..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.d
deleted file mode 100644
index 6994646..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.o
deleted file mode 100644
index 6c5ac7d..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.d
deleted file mode 100644
index 136683f..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.o
deleted file mode 100644
index 97193eb..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.d
deleted file mode 100644
index f848a35..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.o
deleted file mode 100644
index 9db7af6..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.d
deleted file mode 100644
index e4c156f..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.o
deleted file mode 100644
index c1d0842..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.d
deleted file mode 100644
index c59ce0b..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.o
deleted file mode 100644
index 67a5acc..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.d
deleted file mode 100644
index b6a952d..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.o
deleted file mode 100644
index fb3dbb6..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.d
deleted file mode 100644
index 5cc5d31..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.o
deleted file mode 100644
index 07c4787..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.o
index e667235..0bc3173 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.d
deleted file mode 100644
index 5ed6798..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.o
deleted file mode 100644
index 017c96b..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o
index 443da9e..6788810 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.su
index 9f208fc..8f7d8b4 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.su
@@ -1,106 +1,114 @@
-stm32f4xx_hal_tim.c:206:19:HAL_TIM_Base_Init 16 static
-stm32f4xx_hal_tim.c:245:19:HAL_TIM_Base_DeInit 16 static
-stm32f4xx_hal_tim.c:273:13:HAL_TIM_Base_MspInit 16 static
-stm32f4xx_hal_tim.c:288:13:HAL_TIM_Base_MspDeInit 16 static
-stm32f4xx_hal_tim.c:303:19:HAL_TIM_Base_Start 16 static
-stm32f4xx_hal_tim.c:327:19:HAL_TIM_Base_Stop 16 static
-stm32f4xx_hal_tim.c:351:19:HAL_TIM_Base_Start_IT 16 static
-stm32f4xx_hal_tim.c:372:19:HAL_TIM_Base_Stop_IT 16 static
-stm32f4xx_hal_tim.c:394:19:HAL_TIM_Base_Start_DMA 24 static
-stm32f4xx_hal_tim.c:439:19:HAL_TIM_Base_Stop_DMA 16 static
-stm32f4xx_hal_tim.c:488:19:HAL_TIM_OC_Init 16 static
-stm32f4xx_hal_tim.c:527:19:HAL_TIM_OC_DeInit 16 static
-stm32f4xx_hal_tim.c:555:13:HAL_TIM_OC_MspInit 16 static
-stm32f4xx_hal_tim.c:570:13:HAL_TIM_OC_MspDeInit 16 static
-stm32f4xx_hal_tim.c:591:19:HAL_TIM_OC_Start 16 static
-stm32f4xx_hal_tim.c:624:19:HAL_TIM_OC_Stop 16 static
-stm32f4xx_hal_tim.c:657:19:HAL_TIM_OC_Start_IT 16 static
-stm32f4xx_hal_tim.c:724:19:HAL_TIM_OC_Stop_IT 16 static
-stm32f4xx_hal_tim.c:793:19:HAL_TIM_OC_Start_DMA 24 static
-stm32f4xx_hal_tim.c:911:19:HAL_TIM_OC_Stop_DMA 16 static
-stm32f4xx_hal_tim.c:1000:19:HAL_TIM_PWM_Init 16 static
-stm32f4xx_hal_tim.c:1039:19:HAL_TIM_PWM_DeInit 16 static
-stm32f4xx_hal_tim.c:1067:13:HAL_TIM_PWM_MspInit 16 static
-stm32f4xx_hal_tim.c:1082:13:HAL_TIM_PWM_MspDeInit 16 static
-stm32f4xx_hal_tim.c:1103:19:HAL_TIM_PWM_Start 16 static
-stm32f4xx_hal_tim.c:1136:19:HAL_TIM_PWM_Stop 16 static
-stm32f4xx_hal_tim.c:1172:19:HAL_TIM_PWM_Start_IT 16 static
-stm32f4xx_hal_tim.c:1239:19:HAL_TIM_PWM_Stop_IT 16 static
-stm32f4xx_hal_tim.c:1308:19:HAL_TIM_PWM_Start_DMA 24 static
-stm32f4xx_hal_tim.c:1426:19:HAL_TIM_PWM_Stop_DMA 16 static
-stm32f4xx_hal_tim.c:1515:19:HAL_TIM_IC_Init 16 static
-stm32f4xx_hal_tim.c:1554:19:HAL_TIM_IC_DeInit 16 static
-stm32f4xx_hal_tim.c:1582:13:HAL_TIM_IC_MspInit 16 static
-stm32f4xx_hal_tim.c:1597:13:HAL_TIM_IC_MspDeInit 16 static
-stm32f4xx_hal_tim.c:1618:19:HAL_TIM_IC_Start 16 static
-stm32f4xx_hal_tim.c:1645:19:HAL_TIM_IC_Stop 16 static
-stm32f4xx_hal_tim.c:1672:19:HAL_TIM_IC_Start_IT 16 static
-stm32f4xx_hal_tim.c:1732:19:HAL_TIM_IC_Stop_IT 16 static
-stm32f4xx_hal_tim.c:1795:19:HAL_TIM_IC_Start_DMA 24 static
-stm32f4xx_hal_tim.c:1909:19:HAL_TIM_IC_Stop_DMA 16 static
-stm32f4xx_hal_tim.c:1997:19:HAL_TIM_OnePulse_Init 16 static
-stm32f4xx_hal_tim.c:2043:19:HAL_TIM_OnePulse_DeInit 16 static
-stm32f4xx_hal_tim.c:2071:13:HAL_TIM_OnePulse_MspInit 16 static
-stm32f4xx_hal_tim.c:2086:13:HAL_TIM_OnePulse_MspDeInit 16 static
-stm32f4xx_hal_tim.c:2105:19:HAL_TIM_OnePulse_Start 16 static
-stm32f4xx_hal_tim.c:2142:19:HAL_TIM_OnePulse_Stop 16 static
-stm32f4xx_hal_tim.c:2179:19:HAL_TIM_OnePulse_Start_IT 16 static
-stm32f4xx_hal_tim.c:2222:19:HAL_TIM_OnePulse_Stop_IT 16 static
-stm32f4xx_hal_tim.c:2285:19:HAL_TIM_Encoder_Init 32 static
-stm32f4xx_hal_tim.c:2374:19:HAL_TIM_Encoder_DeInit 16 static
-stm32f4xx_hal_tim.c:2402:13:HAL_TIM_Encoder_MspInit 16 static
-stm32f4xx_hal_tim.c:2417:13:HAL_TIM_Encoder_MspDeInit 16 static
-stm32f4xx_hal_tim.c:2437:19:HAL_TIM_Encoder_Start 16 static
-stm32f4xx_hal_tim.c:2480:19:HAL_TIM_Encoder_Stop 16 static
-stm32f4xx_hal_tim.c:2524:19:HAL_TIM_Encoder_Start_IT 16 static
-stm32f4xx_hal_tim.c:2573:19:HAL_TIM_Encoder_Stop_IT 16 static
-stm32f4xx_hal_tim.c:2628:19:HAL_TIM_Encoder_Start_DMA 24 static
-stm32f4xx_hal_tim.c:2746:19:HAL_TIM_Encoder_Stop_DMA 16 static
-stm32f4xx_hal_tim.c:2809:6:HAL_TIM_IRQHandler 16 static
-stm32f4xx_hal_tim.c:2972:19:HAL_TIM_OC_ConfigChannel 24 static
-stm32f4xx_hal_tim.c:3042:19:HAL_TIM_IC_ConfigChannel 24 static
-stm32f4xx_hal_tim.c:3139:19:HAL_TIM_PWM_ConfigChannel 24 static
-stm32f4xx_hal_tim.c:3240:19:HAL_TIM_OnePulse_ConfigChannel 56 static
-stm32f4xx_hal_tim.c:3377:19:HAL_TIM_DMABurst_WriteStart 24 static
-stm32f4xx_hal_tim.c:3509:19:HAL_TIM_DMABurst_WriteStop 16 static
-stm32f4xx_hal_tim.c:3602:19:HAL_TIM_DMABurst_ReadStart 24 static
-stm32f4xx_hal_tim.c:3735:19:HAL_TIM_DMABurst_ReadStop 16 static
-stm32f4xx_hal_tim.c:3808:19:HAL_TIM_GenerateEvent 16 static
-stm32f4xx_hal_tim.c:3846:19:HAL_TIM_ConfigOCrefClear 24 static
-stm32f4xx_hal_tim.c:3949:19:HAL_TIM_ConfigClockSource 24 static
-stm32f4xx_hal_tim.c:4110:19:HAL_TIM_ConfigTI1Input 24 static
-stm32f4xx_hal_tim.c:4143:19:HAL_TIM_SlaveConfigSynchronization 16 static
-stm32f4xx_hal_tim.c:4178:19:HAL_TIM_SlaveConfigSynchronization_IT 16 static
-stm32f4xx_hal_tim.c:4217:10:HAL_TIM_ReadCapturedValue 24 static
-stm32f4xx_hal_tim.c:4304:13:HAL_TIM_PeriodElapsedCallback 16 static
-stm32f4xx_hal_tim.c:4319:13:HAL_TIM_OC_DelayElapsedCallback 16 static
-stm32f4xx_hal_tim.c:4334:13:HAL_TIM_IC_CaptureCallback 16 static
-stm32f4xx_hal_tim.c:4349:13:HAL_TIM_PWM_PulseFinishedCallback 16 static
-stm32f4xx_hal_tim.c:4364:13:HAL_TIM_TriggerCallback 16 static
-stm32f4xx_hal_tim.c:4379:13:HAL_TIM_ErrorCallback 16 static
-stm32f4xx_hal_tim.c:4412:22:HAL_TIM_Base_GetState 16 static
-stm32f4xx_hal_tim.c:4423:22:HAL_TIM_OC_GetState 16 static
-stm32f4xx_hal_tim.c:4434:22:HAL_TIM_PWM_GetState 16 static
-stm32f4xx_hal_tim.c:4445:22:HAL_TIM_IC_GetState 16 static
-stm32f4xx_hal_tim.c:4456:22:HAL_TIM_OnePulse_GetState 16 static
-stm32f4xx_hal_tim.c:4467:22:HAL_TIM_Encoder_GetState 16 static
-stm32f4xx_hal_tim.c:4481:6:TIM_Base_SetConfig 24 static
-stm32f4xx_hal_tim.c:4540:6:TIM_TI1_SetConfig 32 static
-stm32f4xx_hal_tim.c:4582:6:TIM_OC2_SetConfig 32 static
-stm32f4xx_hal_tim.c:4649:6:TIM_DMADelayPulseCplt 24 static
-stm32f4xx_hal_tim.c:4683:6:TIM_DMAError 24 static
-stm32f4xx_hal_tim.c:4698:6:TIM_DMACaptureCplt 24 static
-stm32f4xx_hal_tim.c:4739:6:TIM_CCxChannelCmd 32 static
-stm32f4xx_hal_tim.c:4762:13:TIM_DMAPeriodElapsedCplt 24 static
-stm32f4xx_hal_tim.c:4777:13:TIM_DMATriggerCplt 24 static
-stm32f4xx_hal_tim.c:4792:13:TIM_OC1_SetConfig 32 static
-stm32f4xx_hal_tim.c:4857:13:TIM_OC3_SetConfig 32 static
-stm32f4xx_hal_tim.c:4925:13:TIM_OC4_SetConfig 32 static
-stm32f4xx_hal_tim.c:4983:13:TIM_SlaveTimer_SetConfig 32 static
-stm32f4xx_hal_tim.c:5120:13:TIM_TI1_ConfigInputStage 32 static
-stm32f4xx_hal_tim.c:5163:13:TIM_TI2_SetConfig 32 static
-stm32f4xx_hal_tim.c:5203:13:TIM_TI2_ConfigInputStage 32 static
-stm32f4xx_hal_tim.c:5246:13:TIM_TI3_SetConfig 32 static
-stm32f4xx_hal_tim.c:5294:13:TIM_TI4_SetConfig 32 static
-stm32f4xx_hal_tim.c:5337:13:TIM_ITRx_SetConfig 24 static
-stm32f4xx_hal_tim.c:5368:13:TIM_ETR_SetConfig 32 static
+stm32f4xx_hal_tim.c:265:19:HAL_TIM_Base_Init 16 static
+stm32f4xx_hal_tim.c:317:19:HAL_TIM_Base_DeInit 16 static
+stm32f4xx_hal_tim.c:353:13:HAL_TIM_Base_MspInit 16 static
+stm32f4xx_hal_tim.c:368:13:HAL_TIM_Base_MspDeInit 16 static
+stm32f4xx_hal_tim.c:384:19:HAL_TIM_Base_Start 24 static
+stm32f4xx_hal_tim.c:413:19:HAL_TIM_Base_Stop 16 static
+stm32f4xx_hal_tim.c:436:19:HAL_TIM_Base_Start_IT 24 static
+stm32f4xx_hal_tim.c:462:19:HAL_TIM_Base_Stop_IT 16 static
+stm32f4xx_hal_tim.c:483:19:HAL_TIM_Base_Start_DMA 32 static
+stm32f4xx_hal_tim.c:542:19:HAL_TIM_Base_Stop_DMA 16 static
+stm32f4xx_hal_tim.c:597:19:HAL_TIM_OC_Init 16 static
+stm32f4xx_hal_tim.c:649:19:HAL_TIM_OC_DeInit 16 static
+stm32f4xx_hal_tim.c:685:13:HAL_TIM_OC_MspInit 16 static
+stm32f4xx_hal_tim.c:700:13:HAL_TIM_OC_MspDeInit 16 static
+stm32f4xx_hal_tim.c:721:19:HAL_TIM_OC_Start 24 static
+stm32f4xx_hal_tim.c:759:19:HAL_TIM_OC_Stop 16 static
+stm32f4xx_hal_tim.c:791:19:HAL_TIM_OC_Start_IT 24 static
+stm32f4xx_hal_tim.c:863:19:HAL_TIM_OC_Stop_IT 16 static
+stm32f4xx_hal_tim.c:931:19:HAL_TIM_OC_Start_DMA 32 static
+stm32f4xx_hal_tim.c:1073:19:HAL_TIM_OC_Stop_DMA 16 static
+stm32f4xx_hal_tim.c:1170:19:HAL_TIM_PWM_Init 16 static
+stm32f4xx_hal_tim.c:1222:19:HAL_TIM_PWM_DeInit 16 static
+stm32f4xx_hal_tim.c:1258:13:HAL_TIM_PWM_MspInit 16 static
+stm32f4xx_hal_tim.c:1273:13:HAL_TIM_PWM_MspDeInit 16 static
+stm32f4xx_hal_tim.c:1294:19:HAL_TIM_PWM_Start 24 static
+stm32f4xx_hal_tim.c:1332:19:HAL_TIM_PWM_Stop 16 static
+stm32f4xx_hal_tim.c:1367:19:HAL_TIM_PWM_Start_IT 24 static
+stm32f4xx_hal_tim.c:1438:19:HAL_TIM_PWM_Stop_IT 16 static
+stm32f4xx_hal_tim.c:1506:19:HAL_TIM_PWM_Start_DMA 32 static
+stm32f4xx_hal_tim.c:1647:19:HAL_TIM_PWM_Stop_DMA 16 static
+stm32f4xx_hal_tim.c:1744:19:HAL_TIM_IC_Init 16 static
+stm32f4xx_hal_tim.c:1796:19:HAL_TIM_IC_DeInit 16 static
+stm32f4xx_hal_tim.c:1832:13:HAL_TIM_IC_MspInit 16 static
+stm32f4xx_hal_tim.c:1847:13:HAL_TIM_IC_MspDeInit 16 static
+stm32f4xx_hal_tim.c:1868:19:HAL_TIM_IC_Start 24 static
+stm32f4xx_hal_tim.c:1900:19:HAL_TIM_IC_Stop 16 static
+stm32f4xx_hal_tim.c:1926:19:HAL_TIM_IC_Start_IT 24 static
+stm32f4xx_hal_tim.c:1991:19:HAL_TIM_IC_Stop_IT 16 static
+stm32f4xx_hal_tim.c:2053:19:HAL_TIM_IC_Start_DMA 32 static
+stm32f4xx_hal_tim.c:2188:19:HAL_TIM_IC_Stop_DMA 16 static
+stm32f4xx_hal_tim.c:2283:19:HAL_TIM_OnePulse_Init 16 static
+stm32f4xx_hal_tim.c:2342:19:HAL_TIM_OnePulse_DeInit 16 static
+stm32f4xx_hal_tim.c:2378:13:HAL_TIM_OnePulse_MspInit 16 static
+stm32f4xx_hal_tim.c:2393:13:HAL_TIM_OnePulse_MspDeInit 16 static
+stm32f4xx_hal_tim.c:2412:19:HAL_TIM_OnePulse_Start 16 static
+stm32f4xx_hal_tim.c:2448:19:HAL_TIM_OnePulse_Stop 16 static
+stm32f4xx_hal_tim.c:2484:19:HAL_TIM_OnePulse_Start_IT 16 static
+stm32f4xx_hal_tim.c:2526:19:HAL_TIM_OnePulse_Stop_IT 16 static
+stm32f4xx_hal_tim.c:2596:19:HAL_TIM_Encoder_Init 32 static
+stm32f4xx_hal_tim.c:2701:19:HAL_TIM_Encoder_DeInit 16 static
+stm32f4xx_hal_tim.c:2737:13:HAL_TIM_Encoder_MspInit 16 static
+stm32f4xx_hal_tim.c:2752:13:HAL_TIM_Encoder_MspDeInit 16 static
+stm32f4xx_hal_tim.c:2772:19:HAL_TIM_Encoder_Start 16 static
+stm32f4xx_hal_tim.c:2816:19:HAL_TIM_Encoder_Stop 16 static
+stm32f4xx_hal_tim.c:2862:19:HAL_TIM_Encoder_Start_IT 16 static
+stm32f4xx_hal_tim.c:2912:19:HAL_TIM_Encoder_Stop_IT 16 static
+stm32f4xx_hal_tim.c:2966:19:HAL_TIM_Encoder_Start_DMA 24 static
+stm32f4xx_hal_tim.c:3101:19:HAL_TIM_Encoder_Stop_DMA 16 static
+stm32f4xx_hal_tim.c:3167:6:HAL_TIM_IRQHandler 16 static
+stm32f4xx_hal_tim.c:3382:19:HAL_TIM_OC_ConfigChannel 24 static
+stm32f4xx_hal_tim.c:3462:19:HAL_TIM_IC_ConfigChannel 24 static
+stm32f4xx_hal_tim.c:3559:19:HAL_TIM_PWM_ConfigChannel 24 static
+stm32f4xx_hal_tim.c:3674:19:HAL_TIM_OnePulse_ConfigChannel 56 static
+stm32f4xx_hal_tim.c:3813:19:HAL_TIM_DMABurst_WriteStart 24 static
+stm32f4xx_hal_tim.c:3982:19:HAL_TIM_DMABurst_WriteStop 24 static
+stm32f4xx_hal_tim.c:4078:19:HAL_TIM_DMABurst_ReadStart 24 static
+stm32f4xx_hal_tim.c:4242:19:HAL_TIM_DMABurst_ReadStop 24 static
+stm32f4xx_hal_tim.c:4320:19:HAL_TIM_GenerateEvent 16 static
+stm32f4xx_hal_tim.c:4357:19:HAL_TIM_ConfigOCrefClear 24 static
+stm32f4xx_hal_tim.c:4481:19:HAL_TIM_ConfigClockSource 24 static
+stm32f4xx_hal_tim.c:4633:19:HAL_TIM_ConfigTI1Input 24 static
+stm32f4xx_hal_tim.c:4665:19:HAL_TIM_SlaveConfigSynchro 16 static
+stm32f4xx_hal_tim.c:4705:19:HAL_TIM_SlaveConfigSynchro_IT 16 static
+stm32f4xx_hal_tim.c:4748:10:HAL_TIM_ReadCapturedValue 24 static
+stm32f4xx_hal_tim.c:4832:13:HAL_TIM_PeriodElapsedCallback 16 static
+stm32f4xx_hal_tim.c:4847:13:HAL_TIM_PeriodElapsedHalfCpltCallback 16 static
+stm32f4xx_hal_tim.c:4862:13:HAL_TIM_OC_DelayElapsedCallback 16 static
+stm32f4xx_hal_tim.c:4877:13:HAL_TIM_IC_CaptureCallback 16 static
+stm32f4xx_hal_tim.c:4892:13:HAL_TIM_IC_CaptureHalfCpltCallback 16 static
+stm32f4xx_hal_tim.c:4907:13:HAL_TIM_PWM_PulseFinishedCallback 16 static
+stm32f4xx_hal_tim.c:4922:13:HAL_TIM_PWM_PulseFinishedHalfCpltCallback 16 static
+stm32f4xx_hal_tim.c:4937:13:HAL_TIM_TriggerCallback 16 static
+stm32f4xx_hal_tim.c:4952:13:HAL_TIM_TriggerHalfCpltCallback 16 static
+stm32f4xx_hal_tim.c:4967:13:HAL_TIM_ErrorCallback 16 static
+stm32f4xx_hal_tim.c:5484:22:HAL_TIM_Base_GetState 16 static
+stm32f4xx_hal_tim.c:5494:22:HAL_TIM_OC_GetState 16 static
+stm32f4xx_hal_tim.c:5504:22:HAL_TIM_PWM_GetState 16 static
+stm32f4xx_hal_tim.c:5514:22:HAL_TIM_IC_GetState 16 static
+stm32f4xx_hal_tim.c:5524:22:HAL_TIM_OnePulse_GetState 16 static
+stm32f4xx_hal_tim.c:5534:22:HAL_TIM_Encoder_GetState 16 static
+stm32f4xx_hal_tim.c:5556:6:TIM_DMAError 24 static
+stm32f4xx_hal_tim.c:5574:6:TIM_DMADelayPulseCplt 24 static
+stm32f4xx_hal_tim.c:5615:6:TIM_DMADelayPulseHalfCplt 24 static
+stm32f4xx_hal_tim.c:5656:6:TIM_DMACaptureCplt 24 static
+stm32f4xx_hal_tim.c:5697:6:TIM_DMACaptureHalfCplt 24 static
+stm32f4xx_hal_tim.c:5738:13:TIM_DMAPeriodElapsedCplt 24 static
+stm32f4xx_hal_tim.c:5756:13:TIM_DMAPeriodElapsedHalfCplt 24 static
+stm32f4xx_hal_tim.c:5774:13:TIM_DMATriggerCplt 24 static
+stm32f4xx_hal_tim.c:5792:13:TIM_DMATriggerHalfCplt 24 static
+stm32f4xx_hal_tim.c:5811:6:TIM_Base_SetConfig 24 static
+stm32f4xx_hal_tim.c:5859:13:TIM_OC1_SetConfig 32 static
+stm32f4xx_hal_tim.c:5934:6:TIM_OC2_SetConfig 32 static
+stm32f4xx_hal_tim.c:6010:13:TIM_OC3_SetConfig 32 static
+stm32f4xx_hal_tim.c:6084:13:TIM_OC4_SetConfig 32 static
+stm32f4xx_hal_tim.c:6144:26:TIM_SlaveTimer_SetConfig 32 static
+stm32f4xx_hal_tim.c:6275:6:TIM_TI1_SetConfig 32 static
+stm32f4xx_hal_tim.c:6322:13:TIM_TI1_ConfigInputStage 32 static
+stm32f4xx_hal_tim.c:6365:13:TIM_TI2_SetConfig 32 static
+stm32f4xx_hal_tim.c:6405:13:TIM_TI2_ConfigInputStage 32 static
+stm32f4xx_hal_tim.c:6448:13:TIM_TI3_SetConfig 32 static
+stm32f4xx_hal_tim.c:6496:13:TIM_TI4_SetConfig 32 static
+stm32f4xx_hal_tim.c:6539:13:TIM_ITRx_SetConfig 24 static
+stm32f4xx_hal_tim.c:6569:6:TIM_ETR_SetConfig 32 static
+stm32f4xx_hal_tim.c:6599:6:TIM_CCxChannelCmd 32 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o
index d79127e..525ac26 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.su
index fa36f6d..7b8c525 100644
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.su
+++ b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.su
@@ -1,37 +1,39 @@
-stm32f4xx_hal_tim_ex.c:157:19:HAL_TIMEx_HallSensor_Init 48 static
-stm32f4xx_hal_tim_ex.c:230:19:HAL_TIMEx_HallSensor_DeInit 16 static
+stm32f4xx_hal_tim_ex.c:130:19:HAL_TIMEx_HallSensor_Init 48 static
+stm32f4xx_hal_tim_ex.c:222:19:HAL_TIMEx_HallSensor_DeInit 16 static
stm32f4xx_hal_tim_ex.c:258:13:HAL_TIMEx_HallSensor_MspInit 16 static
stm32f4xx_hal_tim_ex.c:273:13:HAL_TIMEx_HallSensor_MspDeInit 16 static
-stm32f4xx_hal_tim_ex.c:288:19:HAL_TIMEx_HallSensor_Start 16 static
-stm32f4xx_hal_tim_ex.c:310:19:HAL_TIMEx_HallSensor_Stop 16 static
-stm32f4xx_hal_tim_ex.c:332:19:HAL_TIMEx_HallSensor_Start_IT 16 static
-stm32f4xx_hal_tim_ex.c:357:19:HAL_TIMEx_HallSensor_Stop_IT 16 static
-stm32f4xx_hal_tim_ex.c:384:19:HAL_TIMEx_HallSensor_Start_DMA 24 static
-stm32f4xx_hal_tim_ex.c:432:19:HAL_TIMEx_HallSensor_Stop_DMA 16 static
-stm32f4xx_hal_tim_ex.c:487:19:HAL_TIMEx_OCN_Start 16 static
-stm32f4xx_hal_tim_ex.c:517:19:HAL_TIMEx_OCN_Stop 16 static
-stm32f4xx_hal_tim_ex.c:547:19:HAL_TIMEx_OCN_Start_IT 16 static
-stm32f4xx_hal_tim_ex.c:614:19:HAL_TIMEx_OCN_Stop_IT 16 static
-stm32f4xx_hal_tim_ex.c:686:19:HAL_TIMEx_OCN_Start_DMA 24 static
-stm32f4xx_hal_tim_ex.c:801:19:HAL_TIMEx_OCN_Stop_DMA 16 static
-stm32f4xx_hal_tim_ex.c:900:19:HAL_TIMEx_PWMN_Start 16 static
-stm32f4xx_hal_tim_ex.c:929:19:HAL_TIMEx_PWMN_Stop 16 static
-stm32f4xx_hal_tim_ex.c:959:19:HAL_TIMEx_PWMN_Start_IT 16 static
-stm32f4xx_hal_tim_ex.c:1026:19:HAL_TIMEx_PWMN_Stop_IT 16 static
-stm32f4xx_hal_tim_ex.c:1098:19:HAL_TIMEx_PWMN_Start_DMA 24 static
-stm32f4xx_hal_tim_ex.c:1213:19:HAL_TIMEx_PWMN_Stop_DMA 16 static
-stm32f4xx_hal_tim_ex.c:1301:19:HAL_TIMEx_OnePulseN_Start 16 static
-stm32f4xx_hal_tim_ex.c:1327:19:HAL_TIMEx_OnePulseN_Stop 16 static
-stm32f4xx_hal_tim_ex.c:1357:19:HAL_TIMEx_OnePulseN_Start_IT 16 static
-stm32f4xx_hal_tim_ex.c:1389:19:HAL_TIMEx_OnePulseN_Stop_IT 16 static
-stm32f4xx_hal_tim_ex.c:1458:19:HAL_TIMEx_ConfigCommutationEvent 24 static
-stm32f4xx_hal_tim_ex.c:1508:19:HAL_TIMEx_ConfigCommutationEvent_IT 24 static
-stm32f4xx_hal_tim_ex.c:1562:19:HAL_TIMEx_ConfigCommutationEvent_DMA 24 static
-stm32f4xx_hal_tim_ex.c:1607:19:HAL_TIMEx_MasterConfigSynchronization 16 static
-stm32f4xx_hal_tim_ex.c:1644:19:HAL_TIMEx_ConfigBreakDeadTime 24 static
-stm32f4xx_hal_tim_ex.c:1708:19:HAL_TIMEx_RemapConfig 16 static
-stm32f4xx_hal_tim_ex.c:1766:13:HAL_TIMEx_CommutationCallback 16 static
-stm32f4xx_hal_tim_ex.c:1781:13:HAL_TIMEx_BreakCallback 16 static
-stm32f4xx_hal_tim_ex.c:1814:22:HAL_TIMEx_HallSensor_GetState 16 static
-stm32f4xx_hal_tim_ex.c:1829:6:TIMEx_DMACommutationCplt 24 static
-stm32f4xx_hal_tim_ex.c:1853:13:TIM_CCxNChannelCmd 32 static
+stm32f4xx_hal_tim_ex.c:288:19:HAL_TIMEx_HallSensor_Start 24 static
+stm32f4xx_hal_tim_ex.c:315:19:HAL_TIMEx_HallSensor_Stop 16 static
+stm32f4xx_hal_tim_ex.c:336:19:HAL_TIMEx_HallSensor_Start_IT 24 static
+stm32f4xx_hal_tim_ex.c:366:19:HAL_TIMEx_HallSensor_Stop_IT 16 static
+stm32f4xx_hal_tim_ex.c:392:19:HAL_TIMEx_HallSensor_Start_DMA 32 static
+stm32f4xx_hal_tim_ex.c:452:19:HAL_TIMEx_HallSensor_Stop_DMA 16 static
+stm32f4xx_hal_tim_ex.c:508:19:HAL_TIMEx_OCN_Start 24 static
+stm32f4xx_hal_tim_ex.c:543:19:HAL_TIMEx_OCN_Stop 16 static
+stm32f4xx_hal_tim_ex.c:572:19:HAL_TIMEx_OCN_Start_IT 24 static
+stm32f4xx_hal_tim_ex.c:638:19:HAL_TIMEx_OCN_Stop_IT 24 static
+stm32f4xx_hal_tim_ex.c:704:19:HAL_TIMEx_OCN_Start_DMA 32 static
+stm32f4xx_hal_tim_ex.c:822:19:HAL_TIMEx_OCN_Stop_DMA 16 static
+stm32f4xx_hal_tim_ex.c:917:19:HAL_TIMEx_PWMN_Start 24 static
+stm32f4xx_hal_tim_ex.c:951:19:HAL_TIMEx_PWMN_Stop 16 static
+stm32f4xx_hal_tim_ex.c:980:19:HAL_TIMEx_PWMN_Start_IT 24 static
+stm32f4xx_hal_tim_ex.c:1045:19:HAL_TIMEx_PWMN_Stop_IT 24 static
+stm32f4xx_hal_tim_ex.c:1112:19:HAL_TIMEx_PWMN_Start_DMA 32 static
+stm32f4xx_hal_tim_ex.c:1229:19:HAL_TIMEx_PWMN_Stop_DMA 16 static
+stm32f4xx_hal_tim_ex.c:1312:19:HAL_TIMEx_OnePulseN_Start 16 static
+stm32f4xx_hal_tim_ex.c:1337:19:HAL_TIMEx_OnePulseN_Stop 16 static
+stm32f4xx_hal_tim_ex.c:1366:19:HAL_TIMEx_OnePulseN_Start_IT 16 static
+stm32f4xx_hal_tim_ex.c:1397:19:HAL_TIMEx_OnePulseN_Stop_IT 16 static
+stm32f4xx_hal_tim_ex.c:1467:19:HAL_TIMEx_ConfigCommutEvent 24 static
+stm32f4xx_hal_tim_ex.c:1523:19:HAL_TIMEx_ConfigCommutEvent_IT 24 static
+stm32f4xx_hal_tim_ex.c:1580:19:HAL_TIMEx_ConfigCommutEvent_DMA 24 static
+stm32f4xx_hal_tim_ex.c:1629:19:HAL_TIMEx_MasterConfigSynchronization 24 static
+stm32f4xx_hal_tim_ex.c:1690:19:HAL_TIMEx_ConfigBreakDeadTime 24 static
+stm32f4xx_hal_tim_ex.c:1766:19:HAL_TIMEx_RemapConfig 16 static
+stm32f4xx_hal_tim_ex.c:1822:13:HAL_TIMEx_CommutCallback 16 static
+stm32f4xx_hal_tim_ex.c:1836:13:HAL_TIMEx_CommutHalfCpltCallback 16 static
+stm32f4xx_hal_tim_ex.c:1851:13:HAL_TIMEx_BreakCallback 16 static
+stm32f4xx_hal_tim_ex.c:1884:22:HAL_TIMEx_HallSensor_GetState 16 static
+stm32f4xx_hal_tim_ex.c:1907:6:TIMEx_DMACommutationCplt 24 static
+stm32f4xx_hal_tim_ex.c:1926:6:TIMEx_DMACommutationHalfCplt 24 static
+stm32f4xx_hal_tim_ex.c:1953:13:TIM_CCxNChannelCmd 32 static
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_alarm_template.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_alarm_template.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_wakeup_template.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_wakeup_template.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_tim_template.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_tim_template.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o
index d6d5aca..db9e27f 100644
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o and b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.d b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.d
deleted file mode 100644
index 40c0bf5..0000000
--- a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.d
+++ /dev/null
@@ -1,89 +0,0 @@
-Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.o: \
- ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
- ../Core/Inc/stm32f4xx_hal_conf.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h \
- ../Drivers/CMSIS/Include/core_cm4.h \
- ../Drivers/CMSIS/Include/cmsis_version.h \
- ../Drivers/CMSIS/Include/cmsis_compiler.h \
- ../Drivers/CMSIS/Include/cmsis_gcc.h \
- ../Drivers/CMSIS/Include/mpu_armv7.h \
- ../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \
- ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
-
-../Core/Inc/stm32f4xx_hal_conf.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
-
-../Drivers/CMSIS/Include/core_cm4.h:
-
-../Drivers/CMSIS/Include/cmsis_version.h:
-
-../Drivers/CMSIS/Include/cmsis_compiler.h:
-
-../Drivers/CMSIS/Include/cmsis_gcc.h:
-
-../Drivers/CMSIS/Include/mpu_armv7.h:
-
-../Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h:
-
-../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h:
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.o b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.o
deleted file mode 100644
index af5adcf..0000000
Binary files a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.o and /dev/null differ
diff --git a/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.su b/stepper/steppermotor_F401RE/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.su
deleted file mode 100644
index e69de29..0000000
diff --git a/stepper/steppermotor_F401RE/Debug/makefile b/stepper/steppermotor_F401RE/Debug/makefile
index faeadf7..59fa55a 100644
--- a/stepper/steppermotor_F401RE/Debug/makefile
+++ b/stepper/steppermotor_F401RE/Debug/makefile
@@ -54,8 +54,8 @@ all: main-build
main-build: steppermotor_F401RE.elf secondary-outputs
# Tool invocations
-steppermotor_F401RE.elf: $(OBJS) $(USER_OBJS) C:\Users\Gregor\Desktop\Projektarbeit\Workspace\stepper\steppermotor_F401RE\STM32F401RETX_FLASH.ld
- arm-none-eabi-gcc -o "steppermotor_F401RE.elf" @"objects.list" $(USER_OBJS) $(LIBS) -mcpu=cortex-m4 -T"C:\Users\Gregor\Desktop\Projektarbeit\Workspace\stepper\steppermotor_F401RE\STM32F401RETX_FLASH.ld" --specs=nosys.specs -Wl,-Map="steppermotor_F401RE.map" -Wl,--gc-sections -static --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -Wl,--start-group -lc -lm -Wl,--end-group
+steppermotor_F401RE.elf: $(OBJS) $(USER_OBJS) C:\Users\wuest\Desktop\Studium\Master\Sem2\Projekt\Arbeit\uC\Motorsteuerung\stepper\steppermotor_F401RE\STM32F401RETX_FLASH.ld
+ arm-none-eabi-gcc -o "steppermotor_F401RE.elf" @"objects.list" $(USER_OBJS) $(LIBS) -mcpu=cortex-m4 -T"C:\Users\wuest\Desktop\Studium\Master\Sem2\Projekt\Arbeit\uC\Motorsteuerung\stepper\steppermotor_F401RE\STM32F401RETX_FLASH.ld" --specs=nosys.specs -Wl,-Map="steppermotor_F401RE.map" -Wl,--gc-sections -static --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -Wl,--start-group -lc -lm -Wl,--end-group
@echo 'Finished building target: $@'
@echo ' '
diff --git a/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.bin b/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.bin
index cc9940d..b35ca0b 100644
Binary files a/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.bin and b/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.bin differ
diff --git a/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.elf b/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.elf
index c16a6fa..46bcca7 100644
Binary files a/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.elf and b/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.elf differ
diff --git a/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.list b/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.list
index e29c928..26466d4 100644
--- a/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.list
+++ b/stepper/steppermotor_F401RE/Debug/steppermotor_F401RE.list
@@ -5,45 +5,45 @@ Sections:
Idx Name Size VMA LMA File off Algn
0 .isr_vector 00000194 08000000 08000000 00010000 2**0
CONTENTS, ALLOC, LOAD, READONLY, DATA
- 1 .text 00005648 08000194 08000194 00010194 2**2
+ 1 .text 00004c28 08000194 08000194 00010194 2**2
CONTENTS, ALLOC, LOAD, READONLY, CODE
- 2 .rodata 00000070 080057dc 080057dc 000157dc 2**2
+ 2 .rodata 00000070 08004dbc 08004dbc 00014dbc 2**2
CONTENTS, ALLOC, LOAD, READONLY, DATA
- 3 .ARM.extab 00000000 0800584c 0800584c 00020178 2**0
+ 3 .ARM.extab 00000000 08004e2c 08004e2c 00020178 2**0
CONTENTS
- 4 .ARM 00000008 0800584c 0800584c 0001584c 2**2
+ 4 .ARM 00000008 08004e2c 08004e2c 00014e2c 2**2
CONTENTS, ALLOC, LOAD, READONLY, DATA
- 5 .preinit_array 00000000 08005854 08005854 00020178 2**0
+ 5 .preinit_array 00000000 08004e34 08004e34 00020178 2**0
CONTENTS, ALLOC, LOAD, DATA
- 6 .init_array 00000004 08005854 08005854 00015854 2**2
+ 6 .init_array 00000004 08004e34 08004e34 00014e34 2**2
CONTENTS, ALLOC, LOAD, DATA
- 7 .fini_array 00000004 08005858 08005858 00015858 2**2
+ 7 .fini_array 00000004 08004e38 08004e38 00014e38 2**2
CONTENTS, ALLOC, LOAD, DATA
- 8 .data 00000178 20000000 0800585c 00020000 2**2
+ 8 .data 00000178 20000000 08004e3c 00020000 2**2
CONTENTS, ALLOC, LOAD, DATA
- 9 .bss 00000244 20000178 080059d4 00020178 2**2
+ 9 .bss 00000244 20000178 08004fb4 00020178 2**2
ALLOC
- 10 ._user_heap_stack 00000604 200003bc 080059d4 000203bc 2**0
+ 10 ._user_heap_stack 00000604 200003bc 08004fb4 000203bc 2**0
ALLOC
11 .ARM.attributes 00000030 00000000 00000000 00020178 2**0
CONTENTS, READONLY
- 12 .debug_info 00011295 00000000 00000000 000201a8 2**0
+ 12 .debug_info 0000e71f 00000000 00000000 000201a8 2**0
CONTENTS, READONLY, DEBUGGING
- 13 .debug_abbrev 00002146 00000000 00000000 0003143d 2**0
+ 13 .debug_abbrev 00001e39 00000000 00000000 0002e8c7 2**0
CONTENTS, READONLY, DEBUGGING
- 14 .debug_aranges 00001058 00000000 00000000 00033588 2**3
+ 14 .debug_aranges 000010b8 00000000 00000000 00030700 2**3
CONTENTS, READONLY, DEBUGGING
- 15 .debug_ranges 00000f60 00000000 00000000 000345e0 2**3
+ 15 .debug_ranges 00000fc0 00000000 00000000 000317b8 2**3
CONTENTS, READONLY, DEBUGGING
- 16 .debug_macro 0001d0d8 00000000 00000000 00035540 2**0
+ 16 .debug_macro 0001694d 00000000 00000000 00032778 2**0
CONTENTS, READONLY, DEBUGGING
- 17 .debug_line 0000a74e 00000000 00000000 00052618 2**0
+ 17 .debug_line 00009d93 00000000 00000000 000490c5 2**0
CONTENTS, READONLY, DEBUGGING
- 18 .debug_str 0009621d 00000000 00000000 0005cd66 2**0
+ 18 .debug_str 0009119a 00000000 00000000 00052e58 2**0
CONTENTS, READONLY, DEBUGGING
- 19 .comment 0000007b 00000000 00000000 000f2f83 2**0
+ 19 .comment 0000007b 00000000 00000000 000e3ff2 2**0
CONTENTS, READONLY
- 20 .debug_frame 00004378 00000000 00000000 000f3000 2**2
+ 20 .debug_frame 00004534 00000000 00000000 000e4070 2**2
CONTENTS, READONLY, DEBUGGING
Disassembly of section .text:
@@ -62,7 +62,7 @@ Disassembly of section .text:
80001aa: bd10 pop {r4, pc}
80001ac: 20000178 .word 0x20000178
80001b0: 00000000 .word 0x00000000
- 80001b4: 080057c4 .word 0x080057c4
+ 80001b4: 08004da4 .word 0x08004da4
080001b8 :
80001b8: b508 push {r3, lr}
@@ -74,7 +74,7 @@ Disassembly of section .text:
80001c6: bd08 pop {r3, pc}
80001c8: 00000000 .word 0x00000000
80001cc: 2000017c .word 0x2000017c
- 80001d0: 080057c4 .word 0x080057c4
+ 80001d0: 08004da4 .word 0x08004da4
080001d4 <__aeabi_uldivmod>:
80001d4: b953 cbnz r3, 80001ec <__aeabi_uldivmod+0x18>
@@ -430,14 +430,14 @@ void SystemClock_Config(void)
if(HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
800053c: f107 030c add.w r3, r7, #12
8000540: 4618 mov r0, r3
- 8000542: f003 fd67 bl 8004014
+ 8000542: f003 f829 bl 8003598
8000546: 4603 mov r3, r0
8000548: 2b00 cmp r3, #0
800054a: d002 beq.n 8000552
{
MyErrorHandler(0);
800054c: 2000 movs r0, #0
- 800054e: f001 ff27 bl 80023a0
+ 800054e: f001 fd29 bl 8001fa4
}
/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2
@@ -461,14 +461,14 @@ void SystemClock_Config(void)
8000568: f107 033c add.w r3, r7, #60 ; 0x3c
800056c: 2102 movs r1, #2
800056e: 4618 mov r0, r3
- 8000570: f003 ff92 bl 8004498
+ 8000570: f003 fa82 bl 8003a78
8000574: 4603 mov r3, r0
8000576: 2b00 cmp r3, #0
8000578: d002 beq.n 8000580
{
MyErrorHandler(1);
800057a: 2001 movs r0, #1
- 800057c: f001 ff10 bl 80023a0
+ 800057c: f001 fd12 bl 8001fa4
}
}
8000580: bf00 nop
@@ -518,7 +518,7 @@ void L6208_Init(void* pInit)
/* Initialise the GPIOs */
L6208_Board_GpioInit();
- 80005b8: f002 f8a0 bl 80026fc
+ 80005b8: f001 fea2 bl 8002300
if (pInit == NULL)
80005bc: 687b ldr r3, [r7, #4]
@@ -544,17 +544,17 @@ void L6208_Init(void* pInit)
80005d0: 6b9b ldr r3, [r3, #56] ; 0x38
80005d2: 4619 mov r1, r3
80005d4: 2000 movs r0, #0
- 80005d6: f002 f9c9 bl 800296c
+ 80005d6: f001 ffcb bl 8002570
L6208_Board_VrefPwmInit(BRIDGE_B, devicePrm.vrefPwmFreq);
80005da: 4b0f ldr r3, [pc, #60] ; (8000618 )
80005dc: 6b9b ldr r3, [r3, #56] ; 0x38
80005de: 4619 mov r1, r3
80005e0: 2001 movs r0, #1
- 80005e2: f002 f9c3 bl 800296c
+ 80005e2: f001 ffc5 bl 8002570
/* Initialise the tick */
L6208_Board_TickInit();
- 80005e6: f002 f92b bl 8002840
+ 80005e6: f001 ff2d bl 8002444
/* Reset L6208 */
L6208_ResetDevice();
@@ -566,13 +566,13 @@ void L6208_Init(void* pInit)
80005f0: 6b9b ldr r3, [r3, #56] ; 0x38
80005f2: 4619 mov r1, r3
80005f4: 2000 movs r0, #0
- 80005f6: f002 fa87 bl 8002b08
+ 80005f6: f002 f889 bl 800270c
L6208_Board_VrefPwmStart(BRIDGE_B, devicePrm.vrefPwmFreq);
80005fa: 4b07 ldr r3, [pc, #28] ; (8000618 )
80005fc: 6b9b ldr r3, [r3, #56] ; 0x38
80005fe: 4619 mov r1, r3
8000600: 2001 movs r0, #1
- 8000602: f002 fa81 bl 8002b08
+ 8000602: f002 f883 bl 800270c
L6208_Enable(0);
8000606: 2000 movs r0, #0
8000608: f000 f864 bl 80006d4
@@ -662,7 +662,7 @@ uint8_t L6208_CheckStatusHw(void)
8000674: b580 push {r7, lr}
8000676: af00 add r7, sp, #0
if(!L6208_Board_FLAG_PIN_GetState())
- 8000678: f002 fb2e bl 8002cd8
+ 8000678: f002 f930 bl 80028dc
800067c: 4603 mov r3, r0
800067e: 2b00 cmp r3, #0
8000680: d101 bne.n 8000686
@@ -693,7 +693,7 @@ void L6208_Disable(uint8_t deviceId)
8000692: 4603 mov r3, r0
8000694: 71fb strb r3, [r7, #7]
L6208_Board_Disable();
- 8000696: f002 fb2b bl 8002cf0
+ 8000696: f002 f92d bl 80028f4
L6208_ClearSysFlag(EN_A_set);
800069a: 2001 movs r0, #1
800069c: f000 ffe0 bl 8001660
@@ -756,7 +756,7 @@ void L6208_Enable(uint8_t deviceId)
80006da: 4603 mov r3, r0
80006dc: 71fb strb r3, [r7, #7]
L6208_Board_Enable();
- 80006de: f002 fb2d bl 8002d3c
+ 80006de: f002 f92f bl 8002940
L6208_SetSysFlag(EN_A_set);
80006e2: 2001 movs r0, #1
80006e4: f001 faf8 bl 8001cd8
@@ -847,7 +847,7 @@ uint16_t L6208_GetCurrentSpeed(uint8_t deviceId)
800074c: 6d9b ldr r3, [r3, #88] ; 0x58
800074e: 461d mov r5, r3
8000750: f04f 0600 mov.w r6, #0
- 8000754: f002 f8ee bl 8002934
+ 8000754: f001 fef0 bl 8002538
8000758: 4603 mov r3, r0
800075a: f04f 0400 mov.w r4, #0
800075e: fb03 f106 mul.w r1, r3, r6
@@ -1567,14 +1567,14 @@ void L6208_HardHiZ(uint8_t deviceId)
/* Disables PWMs */
L6208_Board_VrefPwmStop(BRIDGE_A);
8000b58: 2000 movs r0, #0
- 8000b5a: f002 f813 bl 8002b84
+ 8000b5a: f001 fe15 bl 8002788
L6208_Board_VrefPwmStop(BRIDGE_B);
8000b5e: 2001 movs r0, #1
- 8000b60: f002 f810 bl 8002b84
+ 8000b60: f001 fe12 bl 8002788
/* Disables tick timer */
L6208_Board_TickStop();
- 8000b64: f001 fedc bl 8002920
+ 8000b64: f001 fcde bl 8002524
}
8000b68: bf00 nop
8000b6a: 3708 adds r7, #8
@@ -1611,7 +1611,7 @@ void L6208_HardStop(uint8_t deviceId)
/* Disables tick timer */
L6208_Board_TickStop();
- 8000b94: f001 fec4 bl 8002920
+ 8000b94: f001 fcc6 bl 8002524
}
8000b98: bf00 nop
8000b9a: 3708 adds r7, #8
@@ -1693,7 +1693,7 @@ void L6208_ReleaseReset(uint8_t deviceId)
8000bfa: 4603 mov r3, r0
8000bfc: 71fb strb r3, [r7, #7]
L6208_Board_ReleaseReset();
- 8000bfe: f001 fff3 bl 8002be8
+ 8000bfe: f001 fdf5 bl 80027ec
}
8000c02: bf00 nop
8000c04: 3708 adds r7, #8
@@ -1713,7 +1713,7 @@ void L6208_Reset(uint8_t deviceId)
8000c10: 4603 mov r3, r0
8000c12: 71fb strb r3, [r7, #7]
L6208_Board_Reset();
- 8000c14: f001 fff4 bl 8002c00
+ 8000c14: f001 fdf6 bl 8002804
}
8000c18: bf00 nop
8000c1a: 3708 adds r7, #8
@@ -1862,7 +1862,7 @@ void L6208_SetDecayMode(uint8_t deviceId, motorDecayMode_t decayMode)
8000ce0: d006 beq.n 8000cf0
{
L6208_Board_CONTROL_PIN_Set();
- 8000ce2: f001 ff99 bl 8002c18
+ 8000ce2: f001 fd9b bl 800281c
L6208_SetSysFlag(fastdecaymode);
8000ce6: f44f 6000 mov.w r0, #2048 ; 0x800
8000cea: f000 fff5 bl 8001cd8
@@ -1874,7 +1874,7 @@ void L6208_SetDecayMode(uint8_t deviceId, motorDecayMode_t decayMode)
}
8000cee: e005 b.n 8000cfc
L6208_Board_CONTROL_PIN_Reset();
- 8000cf0: f001 ff9e bl 8002c30
+ 8000cf0: f001 fda0 bl 8002834
L6208_ClearSysFlag(fastdecaymode);
8000cf4: f44f 6000 mov.w r0, #2048 ; 0x800
8000cf8: f000 fcb2 bl 8001660
@@ -2001,7 +2001,7 @@ void L6208_SetDirection(uint8_t deviceId, motorDir_t dir)
8000da8: f44f 7000 mov.w r0, #512 ; 0x200
8000dac: f000 ff94 bl 8001cd8
L6208_Board_DIR_PIN_Set();
- 8000db0: f001 ff7a bl 8002ca8
+ 8000db0: f001 fd7c bl 80028ac
8000db4: e022 b.n 8000dfc
}
}
@@ -2050,7 +2050,7 @@ void L6208_SetDirection(uint8_t deviceId, motorDir_t dir)
8000df0: f44f 7000 mov.w r0, #512 ; 0x200
8000df4: f000 fc34 bl 8001660
L6208_Board_DIR_PIN_Reset();
- 8000df8: f001 ff62 bl 8002cc0
+ 8000df8: f001 fd64 bl 80028c4
}
}
}
@@ -2320,11 +2320,11 @@ bool L6208_SetStepMode(uint8_t deviceId, motorStepMode_t stepMode)
case STEP_MODE_HALF:
/* Set the Half/Full pin low and Reset and the set the Half/Full pin high*/
L6208_Board_HALF_FULL_PIN_Reset();
- 8000f7a: f001 fe89 bl 8002c90
+ 8000f7a: f001 fc8b bl 8002894
L6208_Board_Reset();
- 8000f7e: f001 fe3f bl 8002c00
+ 8000f7e: f001 fc41 bl 8002804
L6208_Board_HALF_FULL_PIN_Set();
- 8000f82: f001 fe79 bl 8002c78
+ 8000f82: f001 fc7b bl 800287c
/* Set system flag */
L6208_SetSysFlag(halfstep);
8000f86: 2080 movs r0, #128 ; 0x80
@@ -2334,9 +2334,9 @@ bool L6208_SetStepMode(uint8_t deviceId, motorStepMode_t stepMode)
case STEP_MODE_FULL:
/* Set the Half/Full pin low and Reset */
L6208_Board_HALF_FULL_PIN_Reset();
- 8000f8e: f001 fe7f bl 8002c90
+ 8000f8e: f001 fc81 bl 8002894
L6208_Board_Reset();
- 8000f92: f001 fe35 bl 8002c00
+ 8000f92: f001 fc37 bl 8002804
/* Set system flag */
L6208_SetSysFlag(fullstep);
8000f96: 2040 movs r0, #64 ; 0x40
@@ -2346,25 +2346,25 @@ bool L6208_SetStepMode(uint8_t deviceId, motorStepMode_t stepMode)
case STEP_MODE_WAVE:
/* Set the Half/Full pin low and Reset and the set the Half/Full pin high*/
L6208_Board_CLOCK_PIN_Reset();
- 8000f9e: f001 fe5f bl 8002c60
+ 8000f9e: f001 fc61 bl 8002864
L6208_Board_HALF_FULL_PIN_Reset();
- 8000fa2: f001 fe75 bl 8002c90
+ 8000fa2: f001 fc77 bl 8002894
L6208_Board_Reset();
- 8000fa6: f001 fe2b bl 8002c00
+ 8000fa6: f001 fc2d bl 8002804
L6208_Board_CLOCK_PIN_Set();
- 8000faa: f001 fe4d bl 8002c48
+ 8000faa: f001 fc4f bl 800284c
L6208_Board_HALF_FULL_PIN_Set();
- 8000fae: f001 fe63 bl 8002c78
+ 8000fae: f001 fc65 bl 800287c
L6208_Board_Delay(2);
8000fb2: 2002 movs r0, #2
- 8000fb4: f001 fb96 bl 80026e4
+ 8000fb4: f001 f998 bl 80022e8
L6208_Board_CLOCK_PIN_Reset();
- 8000fb8: f001 fe52 bl 8002c60
+ 8000fb8: f001 fc54 bl 8002864
L6208_Board_Delay(2);
8000fbc: 2002 movs r0, #2
- 8000fbe: f001 fb91 bl 80026e4
+ 8000fbe: f001 f993 bl 80022e8
L6208_Board_HALF_FULL_PIN_Reset();
- 8000fc2: f001 fe65 bl 8002c90
+ 8000fc2: f001 fc67 bl 8002894
/* Set system flag */
L6208_SetSysFlag(wavestep);
8000fc6: f44f 5080 mov.w r0, #4096 ; 0x1000
@@ -2374,9 +2374,9 @@ bool L6208_SetStepMode(uint8_t deviceId, motorStepMode_t stepMode)
case STEP_MODE_1_4:
/* Set the Half/Full pin low and Reset */
L6208_Board_HALF_FULL_PIN_Reset();
- 8000fd0: f001 fe5e bl 8002c90
+ 8000fd0: f001 fc60 bl 8002894
L6208_Board_Reset();
- 8000fd4: f001 fe14 bl 8002c00
+ 8000fd4: f001 fc16 bl 8002804
/* Set system flag */
L6208_SetSysFlag(microstep);
8000fd8: f44f 7080 mov.w r0, #256 ; 0x100
@@ -2390,9 +2390,9 @@ bool L6208_SetStepMode(uint8_t deviceId, motorStepMode_t stepMode)
case STEP_MODE_1_8:
/* Set the Half/Full pin low and Reset */
L6208_Board_HALF_FULL_PIN_Reset();
- 8000fea: f001 fe51 bl 8002c90
+ 8000fea: f001 fc53 bl 8002894
L6208_Board_Reset();
- 8000fee: f001 fe07 bl 8002c00
+ 8000fee: f001 fc09 bl 8002804
/* Set system flag */
L6208_SetSysFlag(microstep);
8000ff2: f44f 7080 mov.w r0, #256 ; 0x100
@@ -2406,9 +2406,9 @@ bool L6208_SetStepMode(uint8_t deviceId, motorStepMode_t stepMode)
case STEP_MODE_1_16:
/* Set the Half/Full pin low and Reset */
L6208_Board_HALF_FULL_PIN_Reset();
- 8001004: f001 fe44 bl 8002c90
+ 8001004: f001 fc46 bl 8002894
L6208_Board_Reset();
- 8001008: f001 fdfa bl 8002c00
+ 8001008: f001 fbfc bl 8002804
/* Set system flag */
L6208_SetSysFlag(microstep);
800100c: f44f 7080 mov.w r0, #256 ; 0x100
@@ -2426,9 +2426,9 @@ bool L6208_SetStepMode(uint8_t deviceId, motorStepMode_t stepMode)
}
L6208_Board_Delay(2);
8001022: 2002 movs r0, #2
- 8001024: f001 fb5e bl 80026e4
+ 8001024: f001 f960 bl 80022e8
L6208_Board_ReleaseReset();
- 8001028: f001 fdde bl 8002be8
+ 8001028: f001 fbe0 bl 80027ec
L6208_ResetSteps();
800102c: f000 fcb6 bl 800199c
return TRUE;
@@ -2633,7 +2633,7 @@ void L6208_TickHandler(uint8_t deviceId)
/* Update state, target speed, acceleration and deceleration rates */
L6208_Board_CLOCK_PIN_Reset();
- 800114e: f001 fd87 bl 8002c60
+ 800114e: f001 fb89 bl 8002864
switch(L6208_GetMotionState(0))
8001152: 2000 movs r0, #0
@@ -3212,7 +3212,7 @@ void L6208_TickHandler(uint8_t deviceId)
80014aa: 2200 movs r2, #0
80014ac: 4619 mov r1, r3
80014ae: 2000 movs r0, #0
- 80014b0: f001 fad2 bl 8002a58
+ 80014b0: f001 f8d4 bl 800265c
L6208_Board_VrefPwmSetDutyCycle(BRIDGE_B, microTable1[devicePrm.uStepSample], FALSE);
80014b4: 4b39 ldr r3, [pc, #228] ; (800159c )
80014b6: f893 302c ldrb.w r3, [r3, #44] ; 0x2c
@@ -3223,7 +3223,7 @@ void L6208_TickHandler(uint8_t deviceId)
80014c4: 2200 movs r2, #0
80014c6: 4619 mov r1, r3
80014c8: 2001 movs r0, #1
- 80014ca: f001 fac5 bl 8002a58
+ 80014ca: f001 f8c7 bl 800265c
if(devicePrm.uStepsample2update > 0)
80014ce: 4b33 ldr r3, [pc, #204] ; (800159c )
80014d0: f893 302b ldrb.w r3, [r3, #43] ; 0x2b
@@ -3269,7 +3269,7 @@ void L6208_TickHandler(uint8_t deviceId)
800150c: 4b23 ldr r3, [pc, #140] ; (800159c )
800150e: 721a strb r2, [r3, #8]
L6208_Board_CLOCK_PIN_Set();
- 8001510: f001 fb9a bl 8002c48
+ 8001510: f001 f99c bl 800284c
8001514: e03b b.n 800158e
}
}
@@ -3356,7 +3356,7 @@ void L6208_TickHandler(uint8_t deviceId)
8001586: 4b05 ldr r3, [pc, #20] ; (800159c )
8001588: 721a strb r2, [r3, #8]
L6208_Board_CLOCK_PIN_Set();
- 800158a: f001 fb5d bl 8002c48
+ 800158a: f001 f95f bl 800284c
}
}
}
@@ -3411,7 +3411,7 @@ void L6208_VrefPwmSetFreq(uint8_t deviceId, uint32_t newFreq)
80015d2: 71fb strb r3, [r7, #7]
if (!L6208_Board_VrefPwmFreqCheck(newFreq)) L6208_ErrorHandler(L6208_ERROR_SET_PWM);
80015d4: 6838 ldr r0, [r7, #0]
- 80015d6: f001 f9b6 bl 8002946
+ 80015d6: f000 ffb8 bl 800254a
80015da: 4603 mov r3, r0
80015dc: 2b00 cmp r3, #0
80015de: d103 bne.n 80015e8
@@ -3427,13 +3427,13 @@ void L6208_VrefPwmSetFreq(uint8_t deviceId, uint32_t newFreq)
80015f0: 6b9b ldr r3, [r3, #56] ; 0x38
80015f2: 4619 mov r1, r3
80015f4: 2000 movs r0, #0
- 80015f6: f001 f9b9 bl 800296c
+ 80015f6: f000 ffbb bl 8002570
L6208_Board_VrefPwmInit(BRIDGE_B, devicePrm.vrefPwmFreq);
80015fa: 4b10 ldr r3, [pc, #64] ; (800163c )
80015fc: 6b9b ldr r3, [r3, #56] ; 0x38
80015fe: 4619 mov r1, r3
8001600: 2001 movs r0, #1
- 8001602: f001 f9b3 bl 800296c
+ 8001602: f000 ffb5 bl 8002570
/* Recompute the waveform samples according to the new PWM frequency */
L6208_ScaleWaveformTable();
8001606: f000 fa19 bl 8001a3c
@@ -3452,13 +3452,13 @@ void L6208_VrefPwmSetFreq(uint8_t deviceId, uint32_t newFreq)
800161c: 6b9b ldr r3, [r3, #56] ; 0x38
800161e: 4619 mov r1, r3
8001620: 2000 movs r0, #0
- 8001622: f001 fa71 bl 8002b08
+ 8001622: f001 f873 bl 800270c
L6208_Board_VrefPwmStart(BRIDGE_B, devicePrm.vrefPwmFreq);
8001626: 4b05 ldr r3, [pc, #20] ; (800163c )
8001628: 6b9b ldr r3, [r3, #56] ; 0x38
800162a: 4619 mov r1, r3
800162c: 2001 movs r0, #1
- 800162e: f001 fa6b bl 8002b08
+ 800162e: f001 f86d bl 800270c
}
}
8001632: bf00 nop
@@ -3689,7 +3689,7 @@ uint16_t L6208_ConvertAcceDecelRateValue(uint16_t newAccOrDecRate)
}
/* Compute (tick frequency)^2 */
tmp32 = (uint32_t)L6208_Board_TickGetFreq();
- 8001774: f001 f8de bl 8002934
+ 8001774: f000 fee0 bl 8002538
8001778: 6178 str r0, [r7, #20]
tmp32 *= tmp32;
800177a: 697b ldr r3, [r7, #20]
@@ -4125,7 +4125,7 @@ uint32_t L6208_ScaleWaveformSample(uint8_t sampleIndex)
80019ee: f832 3013 ldrh.w r3, [r2, r3, lsl #1]
80019f2: 60fb str r3, [r7, #12]
sample *= L6208_Board_VrefPwmGetPeriod();
- 80019f4: f001 f8ec bl 8002bd0
+ 80019f4: f000 feee bl 80027d4
80019f8: 4602 mov r2, r0
80019fa: 68fb ldr r3, [r7, #12]
80019fc: fb02 f303 mul.w r3, r2, r3
@@ -4157,7 +4157,7 @@ uint32_t L6208_ScaleWaveformSample(uint8_t sampleIndex)
8001a2a: 3710 adds r7, #16
8001a2c: 46bd mov sp, r7
8001a2e: bd80 pop {r7, pc}
- 8001a30: 080057dc .word 0x080057dc
+ 8001a30: 08004dbc .word 0x08004dbc
8001a34: 20000230 .word 0x20000230
8001a38: 51eb851f .word 0x51eb851f
@@ -4217,7 +4217,7 @@ void L6208_SetDeviceParamsToGivenValues(l6208_Init_t* pInitDevicePrm)
8001a7c: 225c movs r2, #92 ; 0x5c
8001a7e: 2100 movs r1, #0
8001a80: 4829 ldr r0, [pc, #164] ; (8001b28 )
- 8001a82: f003 fe97 bl 80057b4
+ 8001a82: f003 f987 bl 8004d94
L6208_SetAcceleration(0, pInitDevicePrm->accelerationSps2);
8001a86: 687b ldr r3, [r7, #4]
8001a88: 881b ldrh r3, [r3, #0]
@@ -4283,7 +4283,7 @@ void L6208_SetDeviceParamsToGivenValues(l6208_Init_t* pInitDevicePrm)
8001af8: 687b ldr r3, [r7, #4]
8001afa: 695b ldr r3, [r3, #20]
8001afc: 4618 mov r0, r3
- 8001afe: f000 ff22 bl 8002946
+ 8001afe: f000 fd24 bl 800254a
8001b02: 4603 mov r3, r0
8001b04: 2b00 cmp r3, #0
8001b06: d103 bne.n 8001b10
@@ -4320,7 +4320,7 @@ void L6208_SetDeviceParamsToPredefinedValues(void)
8001b30: 225c movs r2, #92 ; 0x5c
8001b32: 2100 movs r1, #0
8001b34: 4821 ldr r0, [pc, #132] ; (8001bbc )
- 8001b36: f003 fe3d bl 80057b4
+ 8001b36: f003 f92d bl 8004d94
L6208_SetAcceleration(0, L6208_CONF_PARAM_ACC_RATE);
8001b3a: f44f 717a mov.w r1, #1000 ; 0x3e8
8001b3e: 2000 movs r0, #0
@@ -4370,7 +4370,7 @@ void L6208_SetDeviceParamsToPredefinedValues(void)
if (L6208_CONF_PARAM_AUTO_HIZ_STOP) L6208_SetSysFlag(HiZstop);
if (!L6208_Board_VrefPwmFreqCheck(L6208_CONF_VREF_PWM_FREQUENCY))
8001b96: 480a ldr r0, [pc, #40] ; (8001bc0 )
- 8001b98: f000 fed5 bl 8002946
+ 8001b98: f000 fcd7 bl 800254a
8001b9c: 4603 mov r3, r0
8001b9e: 2b00 cmp r3, #0
8001ba0: d103 bne.n 8001baa
@@ -4523,7 +4523,7 @@ bool L6208_SetSpeed(uint16_t newSpeed, uint32_t volatile *pSpeed)
8001c6c: e02f b.n 8001cce
}
tmp32 = (uint32_t)L6208_Board_TickGetFreq();
- 8001c6e: f000 fe61 bl 8002934
+ 8001c6e: f000 fc63 bl 8002538
8001c72: 6178 str r0, [r7, #20]
if (tmp32 < newSpeed)
8001c74: 88fb ldrh r3, [r7, #6]
@@ -4670,7 +4670,7 @@ bool L6208_StartMovement(void)
/* Set the position dwelling wait time */
/* compute number of ticks per millisecond */
tmp = (uint32_t)L6208_Board_TickGetFreq() / 1000;
- 8001d4e: f000 fdf1 bl 8002934
+ 8001d4e: f000 fbf3 bl 8002538
8001d52: 4602 mov r2, r0
8001d54: 4b24 ldr r3, [pc, #144] ; (8001de8 )
8001d56: fba3 2302 umull r2, r3, r3, r2
@@ -4733,13 +4733,13 @@ bool L6208_StartMovement(void)
8001dae: 6b9b ldr r3, [r3, #56] ; 0x38
8001db0: 4619 mov r1, r3
8001db2: 2000 movs r0, #0
- 8001db4: f000 fea8 bl 8002b08
+ 8001db4: f000 fcaa bl 800270c
L6208_Board_VrefPwmStart(BRIDGE_B, devicePrm.vrefPwmFreq);
8001db8: 4b0a ldr r3, [pc, #40] ; (8001de4 )
8001dba: 6b9b ldr r3, [r3, #56] ; 0x38
8001dbc: 4619 mov r1, r3
8001dbe: 2001 movs r0, #1
- 8001dc0: f000 fea2 bl 8002b08
+ 8001dc0: f000 fca4 bl 800270c
if (!(L6208_IsSysFlag(EN_A_set)))
8001dc4: 2001 movs r0, #1
8001dc6: f7ff fdd3 bl 8001970
@@ -4754,7 +4754,7 @@ bool L6208_StartMovement(void)
}
/* Start the tick */
L6208_Board_TickStart();
- 8001dd6: f000 fd7f bl 80028d8
+ 8001dd6: f000 fb81 bl 80024dc
return TRUE;
8001dda: 2301 movs r3, #1
@@ -4897,7 +4897,7 @@ bool L6208_VectorCalc(uint8_t newTorque)
8001e9e: 2201 movs r2, #1
8001ea0: 4619 mov r1, r3
8001ea2: 2000 movs r0, #0
- 8001ea4: f000 fdd8 bl 8002a58
+ 8001ea4: f000 fbda bl 800265c
L6208_Board_VrefPwmSetDutyCycle(BRIDGE_B, devicePrm.curTorqueScaler, TRUE);
8001ea8: 4b1c ldr r3, [pc, #112] ; (8001f1c )
8001eaa: f893 303c ldrb.w r3, [r3, #60] ; 0x3c
@@ -4906,7 +4906,7 @@ bool L6208_VectorCalc(uint8_t newTorque)
8001eb2: 2201 movs r2, #1
8001eb4: 4619 mov r1, r3
8001eb6: 2001 movs r0, #1
- 8001eb8: f000 fdce bl 8002a58
+ 8001eb8: f000 fbd0 bl 800265c
8001ebc: e028 b.n 8001f10
}
else
@@ -4948,7 +4948,7 @@ bool L6208_VectorCalc(uint8_t newTorque)
8001eec: 2200 movs r2, #0
8001eee: 4619 mov r1, r3
8001ef0: 2000 movs r0, #0
- 8001ef2: f000 fdb1 bl 8002a58
+ 8001ef2: f000 fbb3 bl 800265c
L6208_Board_VrefPwmSetDutyCycle(BRIDGE_B, microTable1[devicePrm.uStepSample], FALSE);
8001ef6: 4b09 ldr r3, [pc, #36] ; (8001f1c )
8001ef8: f893 302c ldrb.w r3, [r3, #44] ; 0x2c
@@ -4959,7 +4959,7 @@ bool L6208_VectorCalc(uint8_t newTorque)
8001f06: 2200 movs r2, #0
8001f08: 4619 mov r1, r3
8001f0a: 2001 movs r0, #1
- 8001f0c: f000 fda4 bl 8002a58
+ 8001f0c: f000 fba6 bl 800265c
}
}
return TRUE;
@@ -4982,7 +4982,7 @@ bool L6208_VectorCalc(uint8_t newTorque)
int main(void)
{
8001f28: b580 push {r7, lr}
- 8001f2a: b084 sub sp, #16
+ 8001f2a: b082 sub sp, #8
8001f2c: af00 add r7, sp, #0
int32_t pos;
uint16_t mySpeed;
@@ -4990,7 +4990,7 @@ int main(void)
/* STM32xx HAL library initialization */
HAL_Init();
- 8001f2e: f001 fccb bl 80038c8
+ 8001f2e: f000 ff8d bl 8002e4c
/* Configure the system clock */
SystemClock_Config();
@@ -5001,7 +5001,7 @@ int main(void)
BSP_MotorControl_SetNbDevices(BSP_MOTOR_CONTROL_BOARD_ID_L6208, 1);
8001f36: 2101 movs r1, #1
8001f38: f44f 50c2 mov.w r0, #6208 ; 0x1840
- 8001f3c: f001 fc0c bl 8003758
+ 8001f3c: f000 fece bl 8002cdc
/* When BSP_MotorControl_Init is called with NULL pointer, */
/* the L6208 parameters are set with the predefined values from file */
/* l6208_target_config.h, otherwise the parameters are set using the */
@@ -5009,18 +5009,18 @@ int main(void)
BSP_MotorControl_Init(BSP_MOTOR_CONTROL_BOARD_ID_L6208, NULL);
8001f40: 2100 movs r1, #0
8001f42: f44f 50c2 mov.w r0, #6208 ; 0x1840
- 8001f46: f000 ffb9 bl 8002ebc
+ 8001f46: f000 fdbb bl 8002ac0
//BSP_MotorControl_Init(BSP_MOTOR_CONTROL_BOARD_ID_L6208, &initDeviceParameters);
/* Attach the function MyFlagInterruptHandler (defined below) to the flag interrupt */
BSP_MotorControl_AttachFlagInterrupt(MyFlagInterruptHandler);
- 8001f4a: 48e5 ldr r0, [pc, #916] ; (80022e0 )
- 8001f4c: f000 ff7a bl 8002e44
+ 8001f4a: 4810 ldr r0, [pc, #64] ; (8001f8c )
+ 8001f4c: f000 fd7c bl 8002a48
/* Attach the function MyErrorHandler (defined below) to the error Handler*/
BSP_MotorControl_AttachErrorHandler(MyErrorHandler);
- 8001f50: 48e4 ldr r0, [pc, #912] ; (80022e4 )
- 8001f52: f000 ff59 bl 8002e08
+ 8001f50: 480f ldr r0, [pc, #60] ; (8001f90 )
+ 8001f52: f000 fd5b bl 8002a0c
//----- Configure Button for user interaction
@@ -5029,10104 +5029,8403 @@ int main(void)
8001f56: 2200 movs r2, #0
8001f58: 2100 movs r1, #0
8001f5a: f04f 30ff mov.w r0, #4294967295
- 8001f5e: f001 fe48 bl 8003bf2
+ 8001f5e: f001 f90a bl 8003176
/* Configure KEY Button */
BSP_PB_Init(BUTTON_KEY, BUTTON_MODE_EXTI);
8001f62: 2101 movs r1, #1
8001f64: 2000 movs r0, #0
- 8001f66: f000 fb31 bl 80025cc
+ 8001f66: f000 f933 bl 80021d0
//----- Disable the power bridges after initialization of the L6208 device
/* Disable the power bridges after initialization */
BSP_MotorControl_CmdDisable(0);
8001f6a: 2000 movs r0, #0
- 8001f6c: f001 fac8 bl 8003500
+ 8001f6c: f000 fe24 bl 8002bb8
/* Wait for 2 seconds */
HAL_Delay(2000);
8001f70: f44f 60fa mov.w r0, #2000 ; 0x7d0
- 8001f74: f001 fd22 bl 80039bc
+ 8001f74: f000 ffe4 bl 8002f40
//----- Get the PWM frequency used for the VREFA and VREFB voltage generation
freqPwm = BSP_MotorControl_GetBridgeInputPwmFreq(0);
8001f78: 2000 movs r0, #0
- 8001f7a: f001 fb57 bl 800362c
- 8001f7e: 60f8 str r0, [r7, #12]
-
-//----- Set the PWM frequency used for the VREFA and VREFB voltage generation
-
- BSP_MotorControl_SetBridgeInputPwmFreq(0, freqPwm>>1);
- 8001f80: 68fb ldr r3, [r7, #12]
- 8001f82: 085b lsrs r3, r3, #1
- 8001f84: 4619 mov r1, r3
- 8001f86: 2000 movs r0, #0
- 8001f88: f001 fb76 bl 8003678
-
-//----- Move of 16000 microsteps in the FW direction
-
- /* Move device 16000 microsteps in the FORWARD direction */
- BSP_MotorControl_Move(0, FORWARD, 16000);
- 8001f8c: f44f 527a mov.w r2, #16000 ; 0x3e80
- 8001f90: 2101 movs r1, #1
- 8001f92: 2000 movs r0, #0
- 8001f94: f001 f924 bl 80031e0
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
- 8001f98: 2000 movs r0, #0
- 8001f9a: f001 fa91 bl 80034c0
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
- 8001f9e: f44f 60fa mov.w r0, #2000 ; 0x7d0
- 8001fa2: f001 fd0b bl 80039bc
-
-//----- Move of 16000 microsteps in the BW direction
-
- /* Move device 16000 microsteps in the BACKWARD direction*/
- BSP_MotorControl_Move(0, BACKWARD, 16000);
- 8001fa6: f44f 527a mov.w r2, #16000 ; 0x3e80
- 8001faa: 2100 movs r1, #0
- 8001fac: 2000 movs r0, #0
- 8001fae: f001 f917 bl 80031e0
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
- 8001fb2: 2000 movs r0, #0
- 8001fb4: f001 fa84 bl 80034c0
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
- 8001fb8: 2000 movs r0, #0
- 8001fba: f001 f86b bl 8003094
- 8001fbe: 60b8 str r0, [r7, #8]
-
- /* Set the current position to be the Home position */
- BSP_MotorControl_SetHome(0, pos);
- 8001fc0: 68b9 ldr r1, [r7, #8]
- 8001fc2: 2000 movs r0, #0
- 8001fc4: f001 f9a4 bl 8003310
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
- 8001fc8: f44f 60fa mov.w r0, #2000 ; 0x7d0
- 8001fcc: f001 fcf6 bl 80039bc
-
-//----- Go to position -6400
-
- /* Request to go to position -6400 */
- BSP_MotorControl_GoTo(0, -6400);
- 8001fd0: 49c5 ldr r1, [pc, #788] ; (80022e8 )
- 8001fd2: 2000 movs r0, #0
- 8001fd4: f001 f8c2 bl 800315c
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
- 8001fd8: 2000 movs r0, #0
- 8001fda: f001 fa71 bl 80034c0
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
- 8001fde: 2000 movs r0, #0
- 8001fe0: f001 f858 bl 8003094
- 8001fe4: 60b8 str r0, [r7, #8]
-
- if (pos != -6400)
- 8001fe6: 68bb ldr r3, [r7, #8]
- 8001fe8: f513 5fc8 cmn.w r3, #6400 ; 0x1900
- 8001fec: d003 beq.n 8001ff6
- {
- MyErrorHandler(L6208_ERROR_POSITION);
- 8001fee: f249 0007 movw r0, #36871 ; 0x9007
- 8001ff2: f000 f9d5 bl 80023a0
- }
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
- 8001ff6: 2000 movs r0, #0
- 8001ff8: f001 f84c bl 8003094
- 8001ffc: 60b8 str r0, [r7, #8]
-
- /* Set the current position to be the Mark position */
- BSP_MotorControl_SetMark(0, pos);
- 8001ffe: 68b9 ldr r1, [r7, #8]
- 8002000: 2000 movs r0, #0
- 8002002: f001 f9a7 bl 8003354
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
- 8002006: f44f 60fa mov.w r0, #2000 ; 0x7d0
- 800200a: f001 fcd7 bl 80039bc
-
-//----- Go Home
-
- /* Request to go to Home */
- BSP_MotorControl_GoHome(0);
- 800200e: 2000 movs r0, #0
- 8002010: f001 f864 bl 80030dc
- BSP_MotorControl_WaitWhileActive(0);
- 8002014: 2000 movs r0, #0
- 8002016: f001 fa53 bl 80034c0
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
- 800201a: 2000 movs r0, #0
- 800201c: f001 f83a bl 8003094
- 8002020: 60b8 str r0, [r7, #8]
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
- 8002022: f44f 60fa mov.w r0, #2000 ; 0x7d0
- 8002026: f001 fcc9 bl 80039bc
-
-//----- Go to position 6400
-
- /* Request to go to position 6400 */
- BSP_MotorControl_CmdGoToDir(0, FORWARD, 6400);
- 800202a: f44f 52c8 mov.w r2, #6400 ; 0x1900
- 800202e: 2101 movs r1, #1
- 8002030: 2000 movs r0, #0
- 8002032: f001 fad5 bl 80035e0
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
- 8002036: 2000 movs r0, #0
- 8002038: f001 fa42 bl 80034c0
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
- 800203c: 2000 movs r0, #0
- 800203e: f001 f829 bl 8003094
- 8002042: 60b8 str r0, [r7, #8]
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
- 8002044: f44f 60fa mov.w r0, #2000 ; 0x7d0
- 8002048: f001 fcb8 bl 80039bc
-
-//----- Go Mark which was set previously after go to -6400
-
- /* Request to go to Mark position */
- BSP_MotorControl_GoMark(0);
- 800204c: 2000 movs r0, #0
- 800204e: f001 f865 bl 800311c
-
- /* Wait for the motor ends moving */
- BSP_MotorControl_WaitWhileActive(0);
- 8002052: 2000 movs r0, #0
- 8002054: f001 fa34 bl 80034c0
-
- /* Get current position */
- pos = BSP_MotorControl_GetPosition(0);
- 8002058: 2000 movs r0, #0
- 800205a: f001 f81b bl 8003094
- 800205e: 60b8 str r0, [r7, #8]
-
- /* Wait for 2 seconds */
- HAL_Delay(2000);
- 8002060: f44f 60fa mov.w r0, #2000 ; 0x7d0
- 8002064: f001 fcaa bl 80039bc
-
-//----- Run the motor BACKWARD
-
- /* Request to run BACKWARD */
- BSP_MotorControl_Run(0, BACKWARD);
- 8002068: 2100 movs r1, #0
- 800206a: 2000 movs r0, #0
- 800206c: f001 f8dc bl 8003228
- HAL_Delay(5000);
- 8002070: f241 3088 movw r0, #5000 ; 0x1388
- 8002074: f001 fca2 bl 80039bc
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
- 8002078: 2000 movs r0, #0
- 800207a: f000 ff7b bl 8002f74
- 800207e: 4603 mov r3, r0
- 8002080: 80fb strh r3, [r7, #6]
-
-//----- Increase the speed while running
-
- /* Increase speed to 2400 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 2400);
- 8002082: f44f 6116 mov.w r1, #2400 ; 0x960
- 8002086: 2000 movs r0, #0
- 8002088: f001 f986 bl 8003398
- HAL_Delay(5000);
- 800208c: f241 3088 movw r0, #5000 ; 0x1388
- 8002090: f001 fc94 bl 80039bc
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
- 8002094: 2000 movs r0, #0
- 8002096: f000 ff6d bl 8002f74
- 800209a: 4603 mov r3, r0
- 800209c: 80fb strh r3, [r7, #6]
-
-//----- Decrease the speed while running
-
- /* Decrease speed to 1200 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 1200);
- 800209e: f44f 6196 mov.w r1, #1200 ; 0x4b0
- 80020a2: 2000 movs r0, #0
- 80020a4: f001 f978 bl 8003398
- HAL_Delay(5000);
- 80020a8: f241 3088 movw r0, #5000 ; 0x1388
- 80020ac: f001 fc86 bl 80039bc
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
- 80020b0: 2000 movs r0, #0
- 80020b2: f000 ff5f bl 8002f74
- 80020b6: 4603 mov r3, r0
- 80020b8: 80fb strh r3, [r7, #6]
-
-//----- Increase acceleration while running
-
- /* Increase acceleration to 2000 microstep/s^2 */
- BSP_MotorControl_SetAcceleration(0, 2000);
- 80020ba: f44f 61fa mov.w r1, #2000 ; 0x7d0
- 80020be: 2000 movs r0, #0
- 80020c0: f001 f8d6 bl 8003270
- HAL_Delay(5000);
- 80020c4: f241 3088 movw r0, #5000 ; 0x1388
- 80020c8: f001 fc78 bl 80039bc
-
- /* Increase speed to 2400 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 2400);
- 80020cc: f44f 6116 mov.w r1, #2400 ; 0x960
- 80020d0: 2000 movs r0, #0
- 80020d2: f001 f961 bl 8003398
- HAL_Delay(5000);
- 80020d6: f241 3088 movw r0, #5000 ; 0x1388
- 80020da: f001 fc6f bl 80039bc
-
- /* Get current speed */
- mySpeed = BSP_MotorControl_GetCurrentSpeed(0);
- 80020de: 2000 movs r0, #0
- 80020e0: f000 ff48 bl 8002f74
- 80020e4: 4603 mov r3, r0
- 80020e6: 80fb strh r3, [r7, #6]
-
- if (mySpeed != 2400)
- 80020e8: 88fb ldrh r3, [r7, #6]
- 80020ea: f5b3 6f16 cmp.w r3, #2400 ; 0x960
- 80020ee: d003 beq.n 80020f8
- {
- MyErrorHandler(L6208_ERROR_SPEED);
- 80020f0: f249 0008 movw r0, #36872 ; 0x9008
- 80020f4: f000 f954 bl 80023a0
- }
-//----- Increase deceleration while running
-
- /* Increase deceleration to 2000 microstep/s^2 */
- BSP_MotorControl_SetDeceleration(0, 2000);
- 80020f8: f44f 61fa mov.w r1, #2000 ; 0x7d0
- 80020fc: 2000 movs r0, #0
- 80020fe: f001 f8df bl 80032c0
- HAL_Delay(5000);
- 8002102: f241 3088 movw r0, #5000 ; 0x1388
- 8002106: f001 fc59 bl 80039bc
-
- /* Decrease speed to 1200 microstep/s */
- BSP_MotorControl_SetMaxSpeed(0, 1200);
- 800210a: f44f 6196 mov.w r1, #1200 ; 0x4b0
- 800210e: 2000 movs r0, #0
- 8002110: f001 f942 bl 8003398
- HAL_Delay(5000);
- 8002114: f241 3088 movw r0, #5000 ; 0x1388
- 8002118: f001 fc50 bl 80039bc