Jump to content

nuke

Members
  • Posts

    127
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by nuke

  1. still no luck with the sdcard... this is very strange...although i can write and load within the MBSEQ4 i´m still not able to get a working connecting with SD-Mass-Storage and windows...i also tried the usb_mass_storage_device_v1_1.zip with same results...the device shows up in explorer but windows pops up with a "volume not formatted". when i try to access it, it says "invalid function" or in german "unzulässige funktion"...midi via USB is working and uploading code also...but sometimes looses connection in MIOS-Studio2... is it possible that i fried the stm32 somehow in a minor way? in some other schematics for the stm32 i saw they use sometimes different resistor values for the usb-datalines (22 Ohm instead of 27 Ohm) paired with some caps (47pf) to ground like shown here : example is it worth trying these changes...dunno if it would help...maybe someone has a clue or can point me in the right direction...
  2. Great!! ;) thank u very much! ...btw, is there a way to define additional buttons in the hwconfig? my "old" setup had some additional buttons like : Mode, Groove, Length and Direction...somehow i haven´t figured out yet to assign those functions/pages to dedicated buttons...like i did in the seq3.4 layout...
  3. yeah right...but it should work on the first note then, or?...ok i found out : when having long notes or binded notes and the velocity on the first note (which is held then) is high, it works as normal....but when using accent (which is full vel. imo ) its ignored...just use a note with a long gate and put accent on instead of using high velocity values and see the difference... ;) mm...sad...ok i was late ...hehe, so no possibility to add them after rnd and rnd2 either?
  4. great phil...that does the trick...woohoo thankx, nik
  5. ok..thnx... updated my sources...didn´t change anything...guess i´ll have to wait then... ;)
  6. ahh i see ...ok hey the new unix style PATH works...now there´s something going...getting closer now thnx for that nils... but got a new message: C:\PIC\trunk\apps\sequencers\midibox_seq_v4>make rm -f project.hex c:/program files/codesourcery/sourcery g++ lite/bin/../lib/gcc/arm-none-eabi/4.4.1/../../../../arm-none-eabi/bin/ld.exe: c:/PIC/trunk/apps/sequencers/midibox_seq_v4/project.elf section `._usrstack' will not fit in region `RAM' c:/program files/codesourcery/sourcery g++ lite/bin/../lib/gcc/arm-none-eabi/4.4.1/../../../../arm-none-eabi/bin/ld.exe: region `RAM' overflowed by 112 bytes collect2: ld returned 1 exit status make: *** [/c/PIC/trunk/apps/sequencers/midibox_seq_v4/project.elf] Error 1 mmm...somethings not quite right i think these are my paths for info: C:\Program Files\gputils\bin;C:\Program Files\SDCC\bin;C:\PERL\bin\;C:\Program Files\CodeSourcery\Sourcery G++ Lite\bin and my additional system variables: MIOS32_BIN_PATH=/C/pic/trunk/bin MIOS32_BOARD=MBHP_CORE_STM32 MIOS32_FAMILY=STM32F10x MIOS32_GCC_PREFIX=arm-none-eabi MIOS32_LCD=clcd MIOS32_PATH=/C/pic/trunk MIOS32_PROCESSOR=STM32F103RE did i miss something??
  7. mmm...for me the link doesn´t work at all... getting "An Error occurred" and "[#10342] We could not determine which forum this topic is in. " just stumbled over this topic cause i got the same "multiple target patterns. stop." message when trying to compile via make. any hints?
  8. hi there...after upgrading i´m now also with the MBSEQv4 ...yippie....some great improvement here must say, wow...great job!! beside some problems with my SDcard thing it´s all working really well... but... after a while fiddling around and exploring i think i found two bugs... 1. i discovered the exclude from "All" function when pressing "select" ...it works so far but not on the first step, is that right? 2. when using glides or long notes on a monophonic track and also accent, it seems that accented notes are ignored on the longer steps or on steps with glide on... and a suggestion...maybe it would be nice to have also a dotted quantization in the FX Echo part... like 16, 16t, 16d, 8, 8t , 8d...? what do you think?
  9. reeaally nice stuff in there wohoo... but...in my old seq3.4-layout i have some quick access buttons implemented, like: Direction, Length, Groove and Mode... is it possible to add these aswell in the v4 ?...can´t find them in the HW-configfile... and my SD card is somehow not working as it should...it reads/writes within the MBSEQ, but when switching to Mass Storage, Windows installs a new device "STM SD blah..." and i see that in explorer, but when i click it, it says "not formatted" ...i tried different cards with different formats FAT32 or FAT also tried in WINXP and WINDOWS 7...with no luck... since i did layout and solder the board myself, it might be only a faulty connection...but why does it work when using it within the midibox? btw. the schematics on ucapps for the sd-card labels the connector to the core as J1 ...shouldn´t it be J16??
  10. so...what i did now is putting this code in the seq_buttons.inc ...or its more a "copy some lines and paste them elsewhere" ...cause its really hard for me to understand asm, as i didn´t do anything before like coding and such things...so its pretty a learning by trial an error... ;) so here is what i did: SEQ_BUTTON_COPYTRACK call CS_M_HLP_GetSelectedTrk movff WREG, SEQ_EVNTT call CS_M_UTILS_CopyTrack rgoto SEQ_BUTTON_CPC_Cont SEQ_BUTTON_PASTETRACK call CS_M_HLP_GetSelectedTrk movff WREG, SEQ_EVNTT call CS_M_UTILS_PasteTrack rgoto SEQ_BUTTON_CPC_Cont SEQ_BUTTON_CLEARTRACK call CS_M_HLP_GetSelectedTrk movff WREG, SEQ_EVNTT call CS_M_UTILS_ClearTrack rgoto SEQ_BUTTON_CPC_Cont SEQ_BUTTON_COPYSTEPS call CS_M_UTILS_CopySteps rgoto SEQ_BUTTON_CPC_Cont SEQ_BUTTON_PASTESTEPS call CS_M_UTILS_PasteSteps rgoto SEQ_BUTTON_CPC_Cont SEQ_BUTTON_CLEARSTEPS call CS_M_UTILS_ClearSteps rgoto SEQ_BUTTON_CPC_Cont SEQ_BUTTON_CPC_Cont call CS_M_UTILS_UpdateGPLEDs bsf CS_STAT, CS_STAT_DISPLAY_UPDATE_REQ return SEQ_BUTTON_F4 SET_BSR SEQ_BASE BRA_IFSET SEQ_MODE1, SEQ_MODE1_SHIFT, BANKED, SEQ_BUTTON_COPYTRACK ;; do nothing when button has been released btfsc MIOS_PARAMETER2, 0 return goto SEQ_BUTTON_COPYSTEPS return SEQ_BUTTON_F5 SET_BSR SEQ_BASE ;; if shift button pressed: start/stop record mode BRA_IFSET SEQ_MODE1, SEQ_MODE1_SHIFT, BANKED, SEQ_BUTTON_PASTETRACK ;; do nothing when button has been released btfsc MIOS_PARAMETER2, 0 return goto SEQ_BUTTON_PASTESTEPS return SEQ_BUTTON_F6 SET_BSR SEQ_BASE ;; if shift button pressed: start/stop record mode BRA_IFSET SEQ_MODE1, SEQ_MODE1_SHIFT, BANKED, SEQ_BUTTON_CLEARTRACK ;; do nothing when button has been released btfsc MIOS_PARAMETER2, 0 return goto SEQ_BUTTON_CLEARSTEPS return for now its works while running also with the shift function...yippie...but the only limitation is, the stepcopy just works in one part like only A or only in B...but cannont copy steps from A to B as it seems to clear the buffer when changing to another part...puh...will be a next hard night fiddling around...but it starts to make fun somehow...hehe otherwise i have to wait ´till you´re back from holiday and have some sparetime left. ;) anyway...wishing you a nice vacation, thorsten
  11. i´m currently building a new seqboard for my mb808...on my testboard i added few more buttons on for copy/paste/clear track and copy/paste/clear steps...so it´s six more buttons... in the setup_808_default.asm i call the functions with: DIN_ENTRY CS_M_UTILS_CopyTrack, 2, 3 DIN_ENTRY CS_M_UTILS_PasteTrack, 2, 4 DIN_ENTRY CS_M_UTILS_ClearTrack, 2, 1 DIN_ENTRY CS_M_UTILS_CopySteps, 1, 5 DIN_ENTRY CS_M_UTILS_PasteSteps, 1, 6 DIN_ENTRY CS_M_UTILS_ClearSteps, 1, 7 ...so i does work somehow...although the copy/paste/clear steps is not working as i thought it would be... copy/paste/clear track is working fine, while the machine runs i can copy tracks...but copy/paste/clear steps is only working when i stop the machine...is there another way to call the function so that it will also work when it´s running? but better would be, instead of adding six buttons, to have only 3 buttons more with a shift function...so while holding shift it copies steps and without shift it´s copying tracks...is that possible somehow?
  12. are you grabbing the power after the vreg on the TR board or before? ...also there are two supplies from the original trafo...one with about 10V and the other with about 2*23V...is it a 75L05 in a TO-92 package or a 7805 in a TO220 package you are using on the CoreBoard?...and where did you connect it to on the mainboard...on J1 before B40C800 or on J2 after the Vreg...
  13. ah..i see...but no problems for now...tested with a few vsts...all working so long...but i´ll keep that in mind...thanks anyway
  14. ahh...puhh...and i thought it was me messing up the code somehow...hehe... no i don´t want an alternating option...don´t worry ;) but maybe you can point me to the file and line where to look, so i may be able to kill this "feature" by myself...until i finally upgrade to seq 4 hehe cheers, nik ahh i see you posted it already...thnx
  15. that´s what i was thinking in the first place...i testet it with my fr777 and also with my nord modular...fr777 is automatically in legato mode (works live played and also in cubase sequenced as it should)...nord modular also got a legatomode patch...both synth behave the same way... when triggered with ie. C1-C1-C1-C1-C1 ...etc. with glide on or length set to glide, they are both retriggering the notes...but!! when the sequence goes like C1-D1-C1-E1-C1-C1-C1 its gliding so long the next note is not the same like before...so C1-D1-C1-E1-C1 will glide but C1-C1-C1 will not...kinda weird...i´m confused...maybe someone else could have a test on that...
  16. i found something by accident...when i program notes with the same value ie. E3 on every step...then switching on glide via triggerlayer or alternating the lenght of the notes to glide (doens´t matter which way) the notes are still retriggering...when putting in notes with different values from each other, then the glide is working...is this for purpose or did i miss something, like some sort of settings or so...?? cheers , nik
  17. ahh...uhhh...ok....guess i have to upgrade soon then ;) btw. thanks for resetting my password :)
  18. hiho... just a short question...is it possible to implement a sync feature for the manual trigger?...so when u choose a step to trigger manually, it stays in sync with the sequence?...for now its just kicking the whole track out of sync when using it...not really usefull for me , maybe others too ;) maybe its just some lines of code to insert in the cs_m_trg.inc or seq_core.inc....i´m an absolut noob in asm...but trying to understand as far as i could... ;) cheers, nik
  19. nuke

    MIDIbox SEQ V3.4

    brilliant!!....absolutly....thank you very much....!!!
  20. geht doch auch mit mios studio...im midi device routing. oder hier ne kleine patchbay http://www.hermannseib.com/miditrix.htm gruss, nik
  21. hi...ich hab meine displays (40X2 weissblau) von dem hier...http://shop.ebay.de/lcdmodkit1/m.html?_trkparms=65%253A12%257C66%253A2%257C39%253A1%257C72%253A1229&_ipg=&_trksid=p3911.c0.m14&_pgn=2 40x2 w/blau knappe 13€ 20X2 w/blau knappe 7,50€ dafür das´se aus hongkong kommen, waren´se schnell hier... btw. die displays haben einen leichten blau-unterschied...mich störts nich...weiss nich wie´s bei anderen displays so aussieht. gruss, nik ups...ok kein blau gewollt...zu spät gelesen ;)
  22. vergiss bei den DOG displays nicht, dass du die hintergrundbeleuchtung separat bestellst...d.h. da kommt preislich noch was dazu...hab selber nen dog display in meiner 808 büchse...sieht schick aus...
  23. cool...yeah, then it was 2.6...hehe...glad u got it working now ;)
  24. hi there ...try to use an older version of the software...i did , and it worked without any error... http://www.sprut.de/electronic/soft/pbrenner.htm#download i think i used 2.8 or 2.6 ...dunno anymore...but just try it
×
×
  • Create New...