There is no adjustment inside the SkyView user interface that can adjust this.
If you are willing to do some text file editing, you can edit your sensor.sfg file. Instructions are here:
http://wiki.dynonavionics.com/Making_your_own_sensor_definitions
In that file, you will see a section:
Code:
sensor={
id=AMMETER SHUNT (100412-000)
function=AMPS
pins=C37_P24/25
name=BATT
name=ALT
name=LOAD
min_val=-100
max_val=100
resolution=0
round=1
is_piecewise=0
low_coeff={
c_x4=0
c_x3=0
c_x2=0
c_x1=1000
c_x0=0
}
low_resistance=PULL_UP_200
low2high_cross=0
high_coeff={
c_x4=0
c_x3=0
c_x2=0
c_x1=0
c_x0=0
}
high_resistance=NONE
high2low_cross=0
shift=5
}
The "c_x1=1000" is what sets it to be 1A per mV. It takes the reading in volts multiplies it by this to give you amps. So 0.001V (1mV) * 1,000 = 1A
So if you have a shunt that is 0.5mV per amp, you would set this to 2000 (0.0005 * 2000 = 1) and if you had a shunt that was 2mV per A you would set this to 500.