Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Mapping Discussion
#36
(01-07-2024, 01:13 PM)Labrioche Wrote: Hello,

just updated to FW 2.0C and still don't manage to trigger Track Clock tick correctly.

I was thinking the bugfix: 
- fixed player functions if a track is externally 'clocked' by mappings
Correct the behavior

Track 1 clock source is set to: 
- MAPPNG
Mapping screen is: 
- CV IN 1 -> TRCK TRK1 TICK 

Each Trigger advance the track by at least 20 steps, I've tried with very small trigger or longer gate but same behavior. 
Not sure what's expected here, I would like the Track advance by 1 step every trigger detected
No it works well. Your map literally adds the read CV value as trigger ticks and which is surely not what you want.
Use either the pass function or one of the other possibilities to check if the CV value is zero vs it got a value and let it add 1 or more ticks.

Example:
Code:
00 CV       IN 1
01 CALC     PASS     00=6  >  TRCK      TRK1      TICK

This generates 6 ticks if the CV input changes from zero to any value. This works if the CV signal is clean and the CV input is calibrated properly. Else you would need to add a threshold like this:

Code:
00 CV       IN 1
01 CALC     IF >     00VA
02 CALC     PASS     01=6  >  TRCK      TRK1      TICK
And you would set VA before to a higher value which defines the threshold. If CV In goes higher than VA then row 02 will generate 6 ticks.
PLEASE use the search function if something have been asked or discussed before.
Every (unnessesary) forum support means less time to develop! But of course, i am here to help!  Smile
Reply


Messages In This Thread
Mapping Discussion - by XORadmin - 12-07-2023, 08:35 AM
RE: Mappings - by knights who say neve - 12-10-2023, 06:53 AM
RE: Mappings - by Labrioche - 12-14-2023, 07:28 AM
RE: Mappings - by XORadmin - 12-14-2023, 08:57 AM
RE: Mappings - by Labrioche - 12-14-2023, 07:24 PM
RE: Mappings - by XORadmin - 12-14-2023, 07:55 PM
RE: Mappings - by XORadmin - 12-10-2023, 08:05 AM
RE: Mappings - by XORadmin - 12-14-2023, 05:13 PM
RE: Mappings - by zeitkunst - 12-21-2023, 03:36 PM
RE: Mappings - by XORadmin - 12-21-2023, 04:03 PM
RE: Mappings - by zeitkunst - 12-21-2023, 04:29 PM
RE: Mappings - by XORadmin - 12-22-2023, 07:00 AM
RE: Mappings - by zeitkunst - 12-22-2023, 10:30 AM
RE: Mappings - by XORadmin - 12-23-2023, 07:48 AM
RE: Mappings - by zeitkunst - 12-31-2023, 12:30 AM
RE: Mappings - by XORadmin - 12-31-2023, 12:09 PM
RE: Mappings - by zeitkunst - 01-15-2024, 02:13 PM
RE: Mappings - by XORadmin - 01-15-2024, 02:55 PM
RE: Mappings - by zeitkunst - 01-15-2024, 03:09 PM
RE: Mappings - by XORadmin - 01-15-2024, 04:21 PM
RE: Mappings - by zeitkunst - 01-15-2024, 07:18 PM
RE: Mappings - by XORadmin - 01-15-2024, 07:39 PM
RE: Mappings - by knights who say neve - 12-11-2023, 05:25 AM
RE: Mappings - by XORadmin - 12-11-2023, 06:06 AM
RE: Mappings - by XORadmin - 12-11-2023, 12:48 PM
RE: Mappings - by knights who say neve - 12-13-2023, 07:10 AM
RE: Mappings - by XORadmin - 12-13-2023, 08:22 AM
RE: Mappings - by nsolarz - 12-13-2023, 03:14 PM
RE: Mappings - by XORadmin - 12-13-2023, 10:23 PM
RE: Mappings - by yrn1 - 12-16-2023, 05:52 PM
RE: Mappings - by XORadmin - 12-16-2023, 06:05 PM
RE: Mappings - by yrn1 - 12-16-2023, 08:39 PM
RE: Mappings - by XORadmin - 12-16-2023, 09:04 PM
RE: Mappings - by yrn1 - 12-16-2023, 09:24 PM
RE: Mappings - by XORadmin - 12-16-2023, 09:57 PM
RE: Mappings - by TheSandbag - 12-22-2023, 11:50 AM
RE: Mappings - by XORadmin - 12-22-2023, 12:25 PM
RE: Mappings - by kriskeyman - 12-22-2023, 06:55 PM
RE: Mappings - by XORadmin - 12-22-2023, 08:05 PM
RE: Mappings - by yrn1 - 01-05-2024, 08:53 AM
RE: Mapping Discussion - by Labrioche - 01-07-2024, 01:13 PM
RE: Mapping Discussion - by XORadmin - 01-07-2024, 02:43 PM
RE: Mapping Discussion - by Raymond19990802 - 01-08-2024, 09:31 AM
RE: Mapping Discussion - by XORadmin - 01-08-2024, 09:35 AM
RE: Mapping Discussion - by shledge - 02-09-2024, 12:37 AM
RE: Mapping Discussion - by XORadmin - 02-09-2024, 07:39 AM
RE: Mapping Discussion - by shledge - 02-09-2024, 08:13 AM
RE: Mapping Discussion - by XORadmin - 02-09-2024, 09:10 AM
RE: Mapping Discussion - by shledge - 02-09-2024, 12:51 PM
RE: Mapping Discussion - by shledge - 02-09-2024, 09:59 PM
RE: Mapping Discussion - by XORadmin - 02-10-2024, 04:40 PM
RE: Mapping Discussion - by shledge - 02-12-2024, 10:37 AM
RE: Mapping Discussion - by vjrt - 04-09-2024, 03:18 PM
RE: Mapping Discussion - by XORadmin - 04-09-2024, 07:06 PM
RE: Mapping Discussion - by vjrt - 04-09-2024, 08:36 PM
RE: Mapping Discussion - by XORadmin - 04-12-2024, 07:45 AM
RE: Mapping Discussion - by FiFitheGreater - 06-09-2024, 08:46 PM
RE: Mapping Discussion - by XORadmin - 06-09-2024, 10:00 PM
RE: Mapping Discussion - by kriskeyman - 06-18-2024, 06:46 AM
RE: Mapping Discussion - by XORadmin - 06-18-2024, 08:15 AM
RE: Mapping Discussion - by kriskeyman - 08-01-2024, 06:05 AM
RE: Mapping Discussion - by XORadmin - 08-01-2024, 06:15 AM
RE: Mapping Discussion - by kriskeyman - 08-01-2024, 06:24 AM
RE: Mapping Discussion - by visti - 08-21-2024, 09:45 PM
RE: Mapping Discussion - by XORadmin - 08-21-2024, 10:10 PM
RE: Mapping Discussion - by kriskeyman - 09-11-2024, 07:44 AM
RE: Mapping Discussion - by XORadmin - 09-11-2024, 08:44 AM
RE: Mapping Discussion - by theb_roll - 09-14-2024, 07:00 AM
RE: Mapping Discussion - by XORadmin - 09-14-2024, 07:37 AM
RE: Mapping Discussion - by theb_roll - 09-14-2024, 07:57 AM
RE: Mapping Discussion - by XORadmin - 09-14-2024, 12:34 PM
RE: Mapping Discussion - by kriskeyman - 10-01-2024, 05:47 PM
RE: Mapping Discussion - by XORadmin - 10-01-2024, 07:26 PM
RE: Mapping Discussion - by visti - 10-04-2024, 06:22 PM
RE: Mapping Discussion - by XORadmin - 10-04-2024, 07:32 PM
RE: Mapping Discussion - by visti - 10-07-2024, 11:06 AM
RE: Mapping Discussion - by rubberband - 10-09-2024, 03:33 AM
RE: Mapping Discussion - by XORadmin - 10-09-2024, 07:49 PM
RE: Mapping Discussion - by rubberband - 10-10-2024, 02:33 PM
RE: Mapping Discussion - by XORadmin - 10-10-2024, 02:50 PM
RE: Mapping Discussion - by rubberband - 10-15-2024, 01:22 PM
RE: Mapping Discussion - by XORadmin - 10-15-2024, 03:03 PM
RE: Mapping Discussion - by rubberband - 10-15-2024, 06:47 PM
RE: Mapping Discussion - by XORadmin - 10-15-2024, 07:42 PM
RE: Mapping Discussion - by rubberband - 10-17-2024, 04:06 PM
RE: Mapping Discussion - by sync_mutex - 12-03-2024, 12:08 PM
RE: Mapping Discussion - by XORadmin - 12-03-2024, 12:11 PM
RE: Mapping Discussion - by visti - 01-26-2025, 05:44 PM
RE: Mapping Discussion - by trevormeier - 03-09-2025, 08:25 PM
RE: Mapping Discussion - by XORadmin - 03-11-2025, 11:49 AM
RE: Mapping Discussion - by trevormeier - 03-13-2025, 02:27 PM
RE: Mapping Discussion - by jako - 04-18-2025, 08:29 PM
RE: Mapping Discussion - by XORadmin - 04-30-2025, 08:24 PM
RE: Mapping Discussion - by visti - 07-09-2025, 12:42 PM
RE: Mapping Discussion - by XORadmin - 07-09-2025, 01:56 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)