Skip to content

Commit

Permalink
reorganize sources
Browse files Browse the repository at this point in the history
  • Loading branch information
paradajz committed Dec 8, 2024
1 parent 3d23845 commit 0a5ff09
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#pragma once

#include "midi/midi.h"
#include "lib/midi/midi.h"

#ifndef MIDI_BLE_MAX_PACKET_SIZE
#define MIDI_BLE_MAX_PACKET_SIZE 64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#pragma once

#include "midi/midi.h"
#include "lib/midi/midi.h"

namespace lib::midi
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#pragma once

#include "midi/midi.h"
#include "lib/midi/midi.h"
#include <array>
#include <inttypes.h>

Expand Down
2 changes: 1 addition & 1 deletion src/midi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include "midi/midi.h"
#include "lib/midi/midi.h"
#include <cstddef>

using namespace lib::midi;
Expand Down
2 changes: 1 addition & 1 deletion src/transport/ble.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include "midi/transport/ble.h"
#include "lib/midi/transport/ble.h"

using namespace lib::midi;

Expand Down
2 changes: 1 addition & 1 deletion src/transport/serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include "midi/transport/serial.h"
#include "lib/midi/transport/serial.h"

using namespace lib::midi;

Expand Down
2 changes: 1 addition & 1 deletion src/transport/usb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include "midi/transport/usb.h"
#include "lib/midi/transport/usb.h"

using namespace lib::midi;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/ble/test.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "tests/common.h"
#include "midi/transport/ble.h"
#include "lib/midi/transport/ble.h"

using namespace lib::midi;

Expand Down

0 comments on commit 0a5ff09

Please sign in to comment.