Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/ca3a5af54e354574f11414465013865826f88a49?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Renamed to MicroDexed

pull/4/head
Holger Wirtz 7 years ago
parent 781169d0c7
commit ca3a5af54e
  1. 24
      DueDexed.ino
  2. 20
      MicroDexed.ino

@ -1,24 +0,0 @@
// DueDexed
//
// $HOME/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/arm-none-eabi/include/sys/unistd.h:
// //int _EXFUN(link, (const char *__path1, const char *__path2 ));
//
#include <MIDI.h>
#include "dexed.h"
#define RATE 128
Dexed* dexed=new Dexed(RATE);
void setup()
{
Serial.begin(115200);
Serial.println("Dexed");
}
void loop()
{
}

@ -0,0 +1,20 @@
// MicroDexed
#include <MIDI.h>
#include "dexed.h"
#define RATE 128
Dexed* dexed=new Dexed(RATE);
void setup()
{
Serial.begin(115200);
Serial.println(F("MicroDexed"));
}
void loop()
{
}
Loading…
Cancel
Save