Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
sreckamp committed Sep 17, 2024
1 parent f2f2212 commit ef26390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark/interface/Application/Audio/WaveSink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ namespace Audio
// DMA: while(status == SUCCESS && next_bytes > 0)
// DMA: while(next_bytes > 0)

while(status == SUCCESS && next_bytes > 0)
while(result == SUCCESS && next_bytes > 0)
{
while(active_buffer == -1) tx_semaphore_get(&buffer_semaphore, 50);
INT buffer_idx = active_buffer;
Expand Down
2 changes: 1 addition & 1 deletion benchmark/interface/Application/Audio/WaveSink.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "WaveSource.hpp"
#include "../Tasks/TaskRunner.hpp"

// DMA:#include "linked_list.h"
#include "linked_list.h"

extern "C"
{
Expand Down

0 comments on commit ef26390

Please sign in to comment.