Frequency Statement
Specifies the JTAG clock frequency.
FREQUENCY speed
Arguments
speed
Speed can be a string or value. See examples below
Remarks
If the max frequency (defined in Hardware options) is lower than the frequency specified then the frequency is set to max frequency.
Examples
Dim Freqst as string = "1000"
Const Freq as integer = 123456
FREQUENCY 4567 // Set the frequency to 4567
FREQUENCY 200KHz // Set the frequency to 200KHz
FREQUENCY Freq // Set the frequency to 1000
FREQUENCY Freqst // Set the frequency to 123456
Freqst ="1MHz"
FREQUENCY Freqst // Set the frequency to 1MHz
Freqst ="1KHz"
FREQUENCY Freqst // Set the frequency to 1KHz