File: debug.h

package info (click to toggle)
firmware-microbit-micropython 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 25,372 kB
  • sloc: ansic: 83,496; cpp: 27,665; python: 2,475; asm: 274; makefile: 227; sh: 25
file content (11 lines) | stat: -rwxr-xr-x 253 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DEBUG_H
#define DEBUG_H

#include "sam.h"

void PrintPhonemes(char* title, phoneme_t *phonemes);
void PrintOutput(unsigned char *flags, render_freq_amp_t *frames, unsigned char *pitches, unsigned char count);

void PrintRule(int offset);

#endif