I can definitely understand the concern here, and there are indeed some good points raised.
Having worked in software development for over 20 years, as well as having owned more drum machines than I can count, I can appreciate the importance of prod…
Julian, I was looking at the comment on your change (ab8c79f in your repos), and I don't think we need to break compatibility with old pattern set saves... In my newer stuff with pattern rotation, I've also put pattern length into an array with rot…
The "pattern" concept means all 8 pattern slots. So when you load and save a pattern you are loading and saving into all 8 slots via one file. There isn't a way to load or save a single pattern.
No it wouldn't be a hardware issue, it's all digitally produced sounds.
Can you try a different voice patch for hats? It might be that your patch is set a certain way (like your drive is high so the velocity is not noticeable).
I noticed this in the code the other day. Voices 4 5 and 6 are not wired up to any pan modulation, and the first 3 only pan left. If it's easy enough to fix, I'll push it with my next custom feature (which should be within next few days).
I also like to stay away from the computer sometimes. I have a korg D888 hard drive mixer recorder which I use when I like to be all "hardware based". I still end up pulling the files into the computer at some point though for mixing and production…
I haven't messed with morphkits much in my travels through the firmware. I'll take a look at it once I'm done with the stuff I'm working on now though.I don't think it would be hard.
First thing to do would be to make sure you have a good SD card and good uncorrupted firmware and try to load it. Make sure to remove and reconnect the power after updating the firmware. If that fails, then the only other thing you can try on the so…
Midi filter is divided into transmit filter (TXF) and receive filter (RXF). Any letter shown in either of these represents that that type of message WILL be transmitted (or received). These are the letter codes
R = realtime (midi clock/start/stop si…
The issue with the repeat function is that when you switch to a pattern, it looks at the number of repeats set for the new pattern, counts how many bars have elapsed since you hit play and divides that number by the number of repeats. It takes the r…
0.28 is the latest, but I think the display still says 0.27 when it boots (I noticed this when merging code the last time). The official firmware latest version is always at this link:
https://github.com/SonicPotions/LXR/raw/master/firmware image/FI…
Well I just verified this and it works fine for me, so maybe you can check how your setup differs from mine. This is my exact setup. MIDI Din out from my MPC to midi din in on the LXR. I set the RXF to R (or anything containing R or ALL), I set the …
I've started looking into this. It would add about 8064 bytes to the RAM usage on the cortex. It seems to me like we have enough RAM to spare, but maybe @Julian can comment if he thinks differently.
Good idea. I like it. Since we already have the pattern repetition setting, we could take advantage of that and make it more flexible:
- each bar (default - 0)
- specific bar number (resets when the pattern first starts)
This would allow you to have…
@Dayflight The custom firmware has this ability. It will be making it's way into the official firmware at some point.
See here:
http://forum.sonic-potions.com/discussion/comment/3705#Comment_3705
The .S files need to be compiled with the assembler (arm-none-eabi-as). The Reset_Handler symbol is in one of the .S files so once you have that going it should link.
Well, you have to break stuff before you can understand it and fix it :-)
The mk files are automatically generated by eclipse, so probably best to not modify them. Once you get the eclipse build settings sorted out, it's all easy street. Eclipse is …