Pitch Slide Down, Then Back Up

Ok so i have a kick drum like so:

c-4 01 0210
0210
0210
0210

how do i make it go back up from the lowered pitch up to its original? the rise has to start where the dotte lines are.

command 01xx seems to make it rise from its original pitch, whereas i need to it rise from its lowered one.

Thanks

as long as you dont enter another note, 01xx should pitch upwards from where you are at, and not the original pitch.

weird.

.x

yeah thats what i thought. unless my ears are playing tricks on me i’m sure its raising from the original pitch using that code, and not the lowered one.

your ears are tricking you, probably…

  
C-4 01 0201 <= pitch is c-4 at the first tick, then starts lowering  
--- -- 0200  
--- -- 0200  
--- -- 0200  
--- -- 0100 <= lowest pitch reached, start rising again  
--- -- 0100  
--- -- 0100  
--- -- 0100 <= c-4 reached at the end of the row  
  

this code should reset the pitch up to the initial value

  
C-4 01 0201 <= pitch is c-4 at the first tick, then starts lowering  
--- -- 0200  
--- -- 0200  
--- -- 0200 <= lowest pitch reached at the end of the row  
C-4 01 0100 <= pitch is c-4 at the first tick, then starts rising  
--- -- 0100  
--- -- 0100  
--- -- 0100 <= c-highest pitch reached at the end of the row  
  

this shouldn’t.

This behaviour is different from MIDI pitch bend mechanism

thanks for your reply, i’ll have another go tonight

Are you generating the kick from a sinewave or something?
Or is it a long sample?
Remember that a kick is like a very fast pitch down in its nature sound.
Could that trick your ears?

hm <_< ,
a few years ago, ive posted about the same experience. but only with higher values (e.g. 0XE0 or 0XF0)
if i pitch with 01f0 up and with 02f0 back down. it should have the same tuning after and before the pitch-command, but it doesnt. a few people told me i should check the selected pitch-behaviour in renoise (pitchstyle: amiga or renoise). it was, is and will be on renoise.
since i dont tested it in 1.8 again, i can only tell about 1.5.
im at work right now. i will test it again…

this seems to be working now which is weird. maybe just a glitch.

The only case where it will not work, is when you slide up or down beyond the limits (use very very high pitch amounts). Then the pitch is clipped, so you can not slide it back to the old amount.

But you could also use the instrument pitch envelopes. see http://wiki.renoise.com/wiki/?n=Renoise.InstrumentEnvelopes for kicks and stuff, this is easier…

ah excellent, yeah i didnt think of using the pitch envelopes. Thanks.

:) ah, thats it. thanks for making this clear again.