Skip to content

Commit 632f033

Browse files
committed
Update project URL in comments
1 parent 2cc6aa0 commit 632f033

17 files changed

+17
-17
lines changed

arduino-midi-synth.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Arduino Midi Synth v0.1
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
This sketch turns an Arduino Uno into a 16-voice wavetable synthesizer functioning as a
66
MIDI sound module. Typical usages include generating sound for a MIDI keyboard controller

envelope.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Envelope Generator
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Envelope generator used for amplitude, frequency, and wavetable offset modulation.
66
*/

instruments.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Instrument type definitions
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
*/
55

66
#ifndef __INSTRUMENT_H__

instruments_generated.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Instruments programs and wavetable
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
*/
55

66
static constexpr EnvelopeStage EnvelopeStages[] PROGMEM = {

ltc16xx.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Driver for Ltc16xx serial DAC
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
DANGER: This driver does not wait for the SPI end-of-transmission flag before selecting the slave
66
device or transmitting. The caller is responsible for ensuring that:

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Main loop when compiling with Atmel Studio
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
*/
55

66
/*

main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Main 'setup()' & 'loop()' definitions, shared with main.cpp and *.ino
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
*/
55

66
#ifndef MAIN_H_

midi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Serial driver & MIDI decoder
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Receives, decodes, and dispatches MIDI data arriving via the Arduino Uno's serial USART.
66

midisynth.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
MidiSynth
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Extends Synth with methods and required state for processing MIDI messages.
66
*/

pin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Templated digital I/O pin driver
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
*/
55

66
#ifndef PINS_H_

pwm0.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Driver for 16-bit PWM on Timer 0
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Connection to Arduino Uno:
66

pwm01.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Driver for 16-bit PWM on Timers 0 and 1 with phase cancellation at 62.5khz
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Connection to Arduino Uno:
66

pwm1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Driver for 16-bit PWM on Timer 1
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Note: Prefer Timer 0 for PWM output, as it requires fewer ops to update it's output.
66

ringbuffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Ring Buffer
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Simple circular buffer used by 'midi.h' to quickly save incoming MIDI bytes during the
66
USART RX ISR for later decoding and dispatch.

spi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Special purpose SPI driver
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
*/
55

66
#ifndef SPI_H_

ssd1306.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
SSD1306 display driver
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
A specialized driver for SSD1306-based OLED display, used to concurrently update the real-time bar
66
from the main 'loop()' in tiny slices, interleaved with dispatching MIDI messages.

synth.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Arduino Midi Synth (Core Engine)
3-
https://github.com/dlehenbauer/arduino-midi-synth
3+
https://github.com/DLehenbauer/arduino-midi-sound-module
44
55
Optimized for ATMega328P @ 16mhz w/AVR8/GNU C Compiler : 5.4.0 (-Os):
66
- 16 voices sampled & mixed in real-time at ~20kHz

0 commit comments

Comments
 (0)