Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# OAM Time Machine for Eurorack

## Install and Build

Make sure to clone this repo recursively:

```
git clone --recurse-submodules https://github.com/oamodular/time-machine
```

You will also need some arm eabi packages, which you can get on a debian-ish system with:

```
sudo apt install gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
```

Now finally to build:

```
(cd DaisyExamples/libDaisy && make) \
&& (cd DaisyExamples/DaisySP && make) \
&& (cd TimeMachine && make)
```

## Expanders

Time Machine has methods for addings expaders. Via I2C pins or by sending/receiving Eurorack level signals to our 8-pin expander dealie. To be clear, these are **not currently used** by the firmware.
Expand Down
2 changes: 2 additions & 0 deletions TimeMachine/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ CPP_SOURCES = TimeMachine.cpp time_machine_hardware.cpp
LIBDAISY_DIR = ../DaisyExamples/libDaisy/
DAISYSP_DIR = ../DaisyExamples/DaisySP/

USE_DAISYSP_LGPL=1

# Core location, and generic Makefile.
SYSTEM_FILES_DIR = $(LIBDAISY_DIR)/core
include $(SYSTEM_FILES_DIR)/Makefile