Skip to content

Commit

Permalink
update flash latency
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Jul 26, 2024
1 parent ae0b215 commit 0b18e56
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 453 deletions.
19 changes: 19 additions & 0 deletions stm32-modules/flex-stacker/firmware/motor_control/motor_policy.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#include "firmware/motor_policy.hpp"

#include "firmware/motor_hardware.h"

using namespace motor_policy;


auto MotorPolicy::enable_motor(MotorID motor_id) -> void {
enable_motor(motor_id);
}

auto MotorPolicy::disable_motor(MotorID motor_id) -> void {
disable_motor(motor_id);
}


auto MotorPolicy::step(MotorID motor_id) -> void {
step(motor_id);
}
Loading

0 comments on commit 0b18e56

Please sign in to comment.