Roland JV-1010 owner manual Examples of Actual Midi Messages

Page 86

MIDI Implementation

Examples of Actual MIDI Messages

<Example 1> 92 3E 5F

9n is the Note On status and `n' is the MIDI channel number. Since 2H = 2, 3EH = 62, and 5FH = 95, this is a Note On message of MIDI CH = 3, note number 62 (note name D4) and velocity 95.

<Example 2> CE 49

CnH is the Program Change status and `n' is the MIDI channel number. Since EH = 14, and 49H = 73, this is a Program Change message of MIDI CH = 15, Program number 74 (in the GS sound map, Flute).

<Example 3> EA 00 28

EnH is the Pitch Bend Change status and `n' is the MIDI channel number. The 2nd byte (00H=0) is the LSB of the Pitch Bend value, and the 3rd byte (28H=40) is the MSB. However since the Pitch Bend is a signed number with 0 at 40 00H (= 64 x 128 + 0 = 8192), the Pitch Bend value in this case is 28 00H - 40 00H = 40 x 128 + 0 - (64 x 128 + 0) = 5120 - 8192 = -3072

If we assume that the Pitch Bend Sensitivity is set to two semitones, the pitch will change only -200 cents for a Pitch Bend value of -8192 (00 00H). Thus, this message is specifying a Pitch Bend of -200 x (-3072) / (-8192) = -75 cents on MIDI CH = 11.

<Example 4> B3 64 00 65 00 06 0C 26 00 64 7F 65 7F

BnH is the Control Change status, and `n' is the MIDI channel number. In Control Change messages, the 2nd byte is the controller number, and the 3rd byte is the parameter value. MIDI allows what is known as “running status,” when if messages of the same status follow each other, it is permitted to omit the second and following status bytes. In the message above, running status is being used, meaning that the message has the following content.

B3 64 00

MIDI CH = 4, RPN parameter number LSB: 00H

(B3)

65

00

MIDI CH = 4, RPN parameter number MSB: 00H

(B3)

06

0C

MIDI CH = 4, parameter value MSB: 0CH

(B3)

26

00

MIDI CH = 4, parameter value LSB: 00H

(B3)

64

7F

MIDI CH = 4, RPN parameter number LSB: 7FH

(B3)

65

7F

MIDI CH = 4, RPN parameter number MSB: 7FH

Thus, this message transmits a parameter value of 0C 00H to RPN parameter number 00 00H on MIDI CH = 4, and then sets the RPN parameter number to 7F 7FH.

The function assigned to RPN parameter number 00 00H is Pitch Bend Sensitivity, and the MSB of the parameter value indicates semitone steps. Since the MSB of this parameter value is 0CH = 12, the maximum width of pitch bend is being set to [+/-] 12 semitones (1 octave) (GS sound sources ignore the LSB of Pitch Bend Sensitivity, but it is best to transmit the LSB (parameter value 0) as well, so that the message can be correctly received by any device.

Once the parameter number has been set for RPN or NRPN, all subsequent Data Entry messages on that channel will be effective. Thus, it is recommended that after you have made the change you want, you set the parameter number to 7F 7FH (an “unset” or “null” setting). The final (B3) 64 7F (B3) 65 7F is for this purpose.

It is not a good idea to store many events within the data of a song (e.g., a Standard MIDI File song) using running status as shown in <Example 4>. When the song is paused, fast- forwarded or rewound, the sequencer may not be able to transmit the proper status, causing the sound source to misinterpret the data. It is best to attach the proper status byte to all events.

It is also important to transmit RPN or NRPN parameter number settings and parameter values in the correct order. In some sequencers, data events recorded in the same clock (or a nearby clock) can sometimes be transmitted in an order other than the order in which they were recorded. It is best to record such events at an appropriate interval (1 tick at TPQN=96, or 5 ticks at TPQN=480).

*TPQN: Ticks Per Quarter Note (i.e., the time resolution of the sequencer)

Examples of Exclusive Messages and

Calculating the Checksum

Roland exclusive messages (RQ1, DT1) are transmitted with a checksum at the end of the data (before F7) to check that the data was received correctly. The value of the checksum is determined by the address and data (or size) of the exclusive message.

How to Calculate the Checksum

(hexadecimal values are indicated by a “H”)

The checksum consists of a value whose lower 7 bits are 0 when the address, size and checksum itself are added.

The following formula shows how to calculate the checksum when the exclusive message to be transmitted has an address of aa bb cc ddH, and data or size of ee ffH.

aa+ bb + cc + dd + ee + ff = total total / 128 = quotient ... remainder 128 - remainder = checksum

<Example 1> Setting the Performance Common REVERB TYPE to DELAY (DT1)

The “Parameter Address Map” indicates that the starting address of the Temporary Performance is 01 00 00 00H, that the Performance Common offset address is 00 00H, and that the REVERB TYPE address is 00 28H. Thus, the address is:

01 00 00 00H

00 00H

+) 00 28H 01 00 00 28H

Since DELAY is parameter value 06H,

F0

41

10

6A

12

01 00 00 28

06

??

F7

(1)

(2)

(3)

(4)

(5)

address

data

checksum

(6)

(1) Exclusive status

(2) ID number (Roland)

(3) Device ID (17)

 

(4) Model ID (JV-1010)

(5) Command ID (DT1)

(6) EOX

 

 

Next we calculate the checksum.

01H + 00H + 00H + 28H + 06H = 1 + 0 + 0 + 40 + 6 = 47 (sum) 47 (total) / 128 = 0 (quotient) ... 47 (remainder)

checksum = 128 - 47 (quotient) = 81 = 51H

This means that the message transmitted will be F0 41 10 6A 12 01 00 00 28 06 51 F7.

<Example 2> Retrieving data for USER:03 Performance Part 3 (RQ1)

The “Parameter Address Map” indicates that the starting address of USER:03 is 10 02 00 00H, and that the offset address of Performance Part 3 is 12 00H. Thus, the address is:

10 02 00 00H

+) 12 00H 10 02 12 00H

Since the size of the Performance Part is 00 00 00 19H,

F0

41

10

6A

11

10 02 12 00

00 00 00 19

??

F7

(1)

(2)

(3)

(4)

(5)

address

size

checksum

(6)

(1) Exclusive status

(2) ID number (Roland)

(3) Device ID (17)

 

(4) Model ID (JV-1010)

(5) Command ID (RQ1)

(6) EOX

 

 

Next we calculate the checksum.

10H + 02H + 12H + 00H + 00H + 00H + 00H + 19H = 16 + 2 + 18 + 0 + 0 + 0 + 0 + 25 = 61 (sum)

61 (total) / 128 = 0 (product) ... 61 (remainder) checksum = 128 - 61 (remainder) = 67 = 43H

Thus, a message of F0 41 10 6A 11 10 02 12 00 00 00 00 19 43 F7 would be transmitted.

86

Image 86
Contents Page For the U.K Page Using the Unit Safely Power Supply Important NotesAdditional Precautions Important NotesQuick Start Contents Patch List SpecificationsAppendices Rhythm Set ListMain Features Incorporates the JV-1080 Sound ModuleFront and Rear Panel Computer Connector Midi Connectors IN, OUT, ThruComputer Switch Mac, PC-1, PC-2, Midi Front and Rear PanelQuick Start Attaching the Rubber Feet Installing on the Rack-Mount AdaptorGetting Ready to Play Getting Ready to Play Installing a Wave Expansion BoardHow to Install a Wave Expansion Board Position the board holders so they are oriented 03a.eExpansion Board in place Use the tool supplied with the Wave Expansion Board toRotate the board holders to LOCK, securing the Wave Use the specified screws you removed in to reattachMaking the Connections Midi OUTUsing headphones the Phones jack Connecting audio equipment the Output jacks L MONO, RConnecting a Midi keyboard or sequencer the Midi connectors Using a computer the Computer connectorSwitching Off the Power Switching the Power On and OffSwitching On the Power Turn the CATEGORY/BANK knob to choose Piano Factory Reset Press the Value knobTurn the CATEGORY/BANK knob to choose Demo Press the Value knob or the Volume knobListening to Demo Songs Demo Play Turn the Value knob to choose the song you want to hearScott Wilkie Gundy Keller Composer ProfilesListening to Demo Songs Demo Play Hans-Joerg SchefflerChoosing and Playing Patches PRESET-D GM General MidiWAVE-EXP Wave Expansion Board installed in the slot SessionChoosing and Playing Patches Holding down the Volume knob, the sound for the currentlyAuditioning Patches Phrase Preview Selected patch is playedFinger some keys on the Midi keyboard to play a few notes Playing Notes from a Midi KeyboardTurn the Part knob and choose Choosing Patches Choosing Patches by BankTurn the CATEGORY/BANK knob to choose Piano Bright Piano by holding down the Volume knobChoosing Patches by Category Turn the Value knob to choosePlaying Percussion Sounds Your selection from the text displayed in white Set the transmit channel for the Midi keyboardTurn the CATEGORY/BANK knob and choose a bank. Make Turn the Value knob and choose a rhythm setSettings to an External Midi Device Data Transfer p Entering GM ModePress the Value knob to switch to the GM mode GM To Performing Multiple Parts PerformanceChanging Patches Set the transmit channel on the external Midi device toChanging Sounds from an External Midi Device Patch Bank Select Program Group NumberPress the Value knob and choose the Performance mode Changing a PerformanceUser PRESET-A PRESET-B Performance Bank Select Program Group NumberChanging a Rhythm Set Rhythm Set Bank Select Program Group Number Transmit a Program Change message from the external MidiDevice to the JV-1010 refer to the following table Trying Out Desktop Music Connecting to a ComputerConnecting to the Computer Connector Two Ways to ConnectFor Apple Macintosh Computers Trying Out Desktop MusicFor PCs Computer cable sold separately RSC-15ATComputer connector Connect the other end of the computer cable to the JV-1010’sConnecting with Midi Connectors Performing Multiple Parts Performance Mode PerformanceFor Part Press the Value knob to choose the Performance modeTurn the Value knob to choose patch Editing Using Only the JV-1010 Making Part Settings PartMemory-Related Operations Utility Restoring the Factory Settings Factory ResetEditing Using Only the JV-1010 GM Initialize Initializing GM Mode GM InitializeTurn the CATEGORY/BANK knob to choose KEY&ORGAN Initializing the Settings Initialize InitializeDtr flashes on the display Making System Settings System Selecting the Receive Channel Perform Ctrl CHTuning Master Tune Master TuneAppendices Troubleshooting Error Messages No. Name Voice Key Assign User User Group PR-A Preset a GroupPatch List PR-B Preset B Group PR-C Preset C Group Patch ListPatch List PR-D GM Group PR-E Preset E Group Patch List XP-A Session Name VoiceKeyboard & Organ Group Patch Category ListPiano Piano Group Patch Category List GUITAR/BASS Guitar/Bass Group Electric GuitarPatch Category List ORCH/BRASS Orchestra/Brass Group Soft Synth Lead Patch Category List SYNTH/PAD Synth/Pad GroupHard Synth Lead Techno Synth Pulsating Synth Synth FX Noise etcSYN Other Synth BPD Bright PAD SPD Soft PAD VOX VOX Poly Synth Bright Pad Synth Soft Pad Synth Vox, ChoirPatch Category List Ethnic Group Rhythm & Sound Effects GroupUser User PR-A Preset a Group PR-B Preset B Group Rhythm Set ListPR-C Preset C Group PR-D GM Group PR-E Preset E Group Rhythm Set ListXP-A Session 001 002 003 004 005 006 007 008 SessionSet Demo DrumPerformance List User User Group PR-A Preset a Group PR-B Preset B GroupName Key Mode Channel Voice Messages Midi ImplementationData Reception Polyphonic AftertouchMidi Implementation Channel Mode Messages System Realtime Messages System Exclusive MessagesData Request 1 RQ1 Data TransmissionData Transmission Data Set 1 DT1Data Set1 RPN MSB/LSB Controller number 100Identity Reply Message System Midi Implementation Parameter Address MapJV-1010 Model ID=6AH System CommonScale Tune Performance Performance CommonPatch Common Performance PartPatch Patch Tone INT, PCM, EXP Rhythm Note Rhythm SetupRhythm Common Address Block Map NO-SUS, Sustain OFF, CONTINUOUS, KEY-ONGS Model ID = 42H Supplementary Material Type19 TRIPLE-TAP-DELAY Type17 STEREO-DELAYType18 MODULATION-DELAY Type20 QUADRUPLE-TAP-DELAYType36 FLANGER→ Delay serial Type34 ENHANCER→ Delay serialType35 CHORUS→ Delay serial Type38 CHORUS/DELAY parallelExamples of Actual Midi Messages Examples of Exclusive Messages Calculating the ChecksumEqual Temperament Scale Tune Function Model ID 42H GS, address 40 1x 40HAscii Code Table Just Intonation tonic of CMidi Implementation Chart Specifications Computer Cable Wiring Diagrams Index PartIndex User UtilityAvis Information Page 01891601 ’02-2-AE2-61N

JV-1010 specifications

The Roland JV-1010 is a compact and versatile synthesizer and sound module that has made a significant impact on the music production landscape since its introduction in the mid-1990s. Renowned for its extensive sound library and superior sound quality, the JV-1010 stands as a go-to device for musicians looking for a powerful yet portable instrument.

One of the standout features of the JV-1010 is its expansive sound engine, which houses 1,024 patches and 36 voices of polyphony. This allows for complex musical layers without the risk of cutting off notes. The built-in digital effects processor comes with 40 types of effects, including reverb, chorus, and flanger, enabling users to further enhance their sounds and create unique tonal textures.

The sound generation technology behind the JV-1010 is based on the JV-1080 platform, leveraging Roland's acclaimed 'SR-JV80' expansion board technology. This modular approach allows users to expand their sonic capabilities by adding additional sound banks, providing access to a wide range of genres and instruments. Notably, the synthesizer includes sounds from various musical traditions, from orchestral to electronic, making it suitable for diverse musical styles.

Another key characteristic of the JV-1010 is its user-friendly interface. It features a clear LCD screen and organized button layout, making it easy for musicians to navigate through its extensive library. Additionally, the unit supports MIDI connectivity, allowing it to seamlessly integrate with other MIDI-compatible gear, such as keyboards, drum machines, and computers. This makes the JV-1010 an excellent choice for studios and live performance settings alike.

The compact size of the JV-1010, which allows it to easily fit into a standard rack mount or travel setup, adds to its appeal, especially for mobile musicians. The lightweight design does not compromise its durability, ensuring it can withstand the rigors of frequent transport.

Overall, the Roland JV-1010 synthesizer is a powerhouse of sound engineering, providing musicians with a rich palette of tones and textures. Its robust feature set, expansion capabilities, and portability make it a timeless instrument that continues to be appreciated by both seasoned professionals and emerging artists in the music industry. Whether used for studio production, live performance, or sound design, the JV-1010 remains a reliable choice for those seeking high-quality musical tools.