Jump to content

nILS

Frequent Writer
  • Posts

    4,314
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by nILS

  1. If the loopback test (MIDIbox not involved) doesn't work, then the issue is your MIDI device/software settings. Are you positive you selected the correct output device in MIOS Studio?
  2. a) Find out what controller it uses. b) Find out if it'S HD44780-compatible c) Find out what the display needs 7V for d) Find out why there's no mention of 4-bit mode in the datasheet e) Learn lesson: Sometimes asking first is a good idea :-)
  3. Eigentlich reicht ja +/-50 ;)
  4. Order is closed. I have orders from: tvdv, ADK, MicMicMan, DrKorg, fcd72, BorbaTheGeek, jojjelito, Antix, loderbast, syntherella, Sampas, TK., stobiepole, tb323, tosol, joma2, digga, rosch, MaG2k, lindeborg, Rvlt, Digineural, kelargo, elektruck, kvitekp, audio-mobster, orbitalgun, Fr@nk, lamouette, romsom, PooLP, gslug, yogi, technobreath, gwaidan, norbim1. I'll be sending out invoices this week. As soon as you get those - pay it :) Payment deadline will be 1 week after I send out the last invoice. I'll announce the deadline here and it'll also be in the tool. If you missed out... ...don't fret. There'll be spares. I'll handle the spares business when the order is done.
  5. Patience is a virtue. You do not have to do anything unless I say you do. I didn't say anything, sooooo: wait.
  6. Just a quick reminder: Tomorrow (sunday, november 12th) is the deadline for placing orders.
  7. Heya dtg84, send a PM to Wilba, he'll be able to sort you out :flowers:
  8. Too expensive. Period. Good luck with that. :flowers: Also, please don't advertise your eBay auctions.
  9. That error occurs when you don't run the command line as administrator.
  10. You can't. This is a private bulk order, not a wholesale operation :thumbsup:
  11. gm5x5x5 bulk order is starting NOW:
  12. Hiya *, this is to inform everyone that bulk order #4 is starting right now. This time, we're doing things a bit differently. I am working on simplifying the entire bulk order process a little bit - both for you and whoever runs the order. Less eMail, less copy-paste, more automated stuff. Which is why all of you get to sign up the totally awesome and almost fully functional new bulk-order-management-tool-thingie: Awesome Bulk Order Tool If you have any problems with the tool, drop me a line via PM. THIS ORDER CLOSED SUNDAY, NOVEMBER 11th 2012.
  13. nILS

    square wave

    Essentially none of the classic synth create what would look like a perfect pulse wave. It's typically a lot more of what you see in Imps first pic. Is there any reason for your craving for a graphically perfect pluse wave?
  14. GoatTracker? If you feel adventurous, there's a fairly stable development build of mine @ http://goo.gl/w4Ayr
  15. Interesting - I could have just linked to that thread... If I had remembered writing it... :rolleyes: :flowers: Have fun!
  16. To set individual pins on PortC you can use PORTCbits.RCX = Y; (with X being 0..7 and Y being 0 or 1).
  17. Doch, letztendlich machst Du genau das, was ich vorgeschlagen hab. Nur dass Du eben nur einen ein-oktavigen Lookup-Table nimmst und den Rest daraus extrapolierst. Was den Charme hat, dass Du nur einen sehr kleinen Table brauchst und Deine Frequenzen innerhalb des Synthies zueinander passen - andererseits nimmst Du damit alle Rundungsfehler der ersten Oktave in alle anderen Oktaven mit, sprich es gibt keine Korrekturen für die Fehler (siehe z.B. B0 = 3171, B1 = 6343, B1 != 2*B0). Und damit hängst Du in sehr vielen Fällen ein paar cent neben dem eigentlichen Ton, was das Zusammenspiel mit anderen Synthies etwas unangenehm machen könnte. phaccu[13] ist übrigens nicht B+1 sondern C2 :whistle:
  18. Hmm, irgendwie gibt's für die hier gemachten Vorschläge nie Feedback... Du musst/solltest übrigens keine Zeilenumbrüche nach jeder Zeile in Dein Posting einfügen. Das geht von ganz alleine und passt dann auf allen Monitoren...
  19. What I am doing is a gm5x5x5 pcb-only order.
  20. Why does the title read ( C ) when you're apparently looking for help with assembler? Since you're not giving any details, I am assuming you are trying to figure out what toolchain you need. Read this: http://www.midibox.org/dokuwiki/doku.php?id=windows_toolchain_core
  21. It's a shame you can't wait :unsure: For everyone else who can: I'll contact you guys next week and we're off for yet another awesome bulk order for gm5x5x5 PCBs - this time they'll be [enter_color_here]. :frantics:
  22. Ist eigentlich klar, oder? Von einem Halbton zum nächst höheren ist eine Multiplikation mit der zwöflten Wurzel von zwei (1,0594630943592952645618252949463...). Da tut man sich mit fixed-point Mathe etwas schwer. Nimm doch für das Detune nicht den Frequenzwert, sondern hol einfach den entsprechenden Wert (note + detune) aus der Tabelle (die Du dann um 24 Zeilen vorne und hinten erweitern solltest). void frequency_tune() { frequenz1 = pgm_read_word (&(midi_frequenz[noten_nr])); schrittweite1 = (__uint24) 411 * frequenz; // Phasendelta für Oszillator1 frequenz2 = pgm_read_word (&(midi_frequenz[noten_nr-12])); // eine Oktave drunter schrittweite2 = (__uint24) 411 * frequenz2; // Phasendelta für Oszillator2 (eine Oktave niedriger) detune = 7; frequenz3 = pgm_read_word (&(midi_frequenz[noten_nr + detune])); // eine quinte drüber schrittweite3 = (__uint24) 411 * frequenz3; [/code] Die gängige Nomenklatur für "hard" und "soft" ist übrigens "transpose" und "finetune". [size=1]Du musst/solltest übrigens keine Zeilenumbrüche nach jeder Zeile in Dein Posting einfügen. Das geht von ganz alleine und passt dann auf allen Monitoren...[/size]
  23. It's still available. Also:
  24. Yes, the project is still alive. Wilba is a busy man, give him some time.
×
×
  • Create New...