Skip to content

Commit

Permalink
Merge branch 'edge' into flex-stacker_enable-spi-dma
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau authored Aug 22, 2024
2 parents ddef2c8 + ee98300 commit e24453f
Show file tree
Hide file tree
Showing 10 changed files with 202 additions and 150 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/*
* firmware-specific functions, data, and hooks for host comms control
*/
#include "firmware/freertos_comms_task.hpp"

#include <array>
#include <functional>
#include <utility>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ static tasks::FirmwareTasks::MotorQueue
"Motor Queue");

// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
static auto _top_task = motor_task::MotorTask(_queue, nullptr);
static auto _top_task = motor_task::MotorTask(
_queue, nullptr, x_motor_interrupt, z_motor_interrupt, l_motor_interrupt);

static auto callback_glue(MotorID motor_id) {
switch (motor_id) {
Expand Down
Loading

0 comments on commit e24453f

Please sign in to comment.