Arduino MIDI File Parser
|
A simple midi parser based on the following project https://github.com/abique/midi-parser. More...
#include "MidiFileParserState.h"
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <chrono>
#include <cstdint>
#include <iostream>
Go to the source code of this file.
Classes | |
class | midi::Print |
class | midi::MidiFileParser |
Midi File parser. Provide the data via write: You should try to keep the buffer as full as possible while parsing. You get the next parsing result by calling the parse() method. More... | |
Macros | |
#define | MIDI_BUFFER_SIZE 1024 * 2 |
#define | MIDI_MIN_REFILL_SIZE 512 |
Functions | |
uint64_t | millis () |
A simple midi parser based on the following project https://github.com/abique/midi-parser.