Skip to content

Commit

Permalink
New Audio Frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasHertel80 committed Oct 4, 2021
1 parent 3120b5e commit 3b87108
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extern "C" void stdio_init (void);
namespace tflite {

void debug_log_printf(const char* s) {
printf(s);
printf("%s", s);
}

// To add an equivalent function for your own platform, create your own
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
namespace tflite {

void debug_log_printf(const char* s) {
printf(s);
printf("%s",s);
}

// To add an equivalent function for your own platform, create your own
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
namespace tflite {

void debug_log_printf(const char* s) {
printf(s);
printf("%s", s);
}

// To add an equivalent function for your own platform, create your own
Expand Down
1 change: 0 additions & 1 deletion micro_speech/src/microfrontend/lib/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ int WindowProcessSamples(struct WindowState* state, const int16_t* samples,
int i;
int16_t max_abs_output_value = 0;
#ifndef __ARM_FEATURE_MVE
int i;

for (i = 0; i < size; ++i) {
int16_t new_value =
Expand Down

0 comments on commit 3b87108

Please sign in to comment.