Is it possible to have more discrete volume controls added to the 990 via firmware update?
For example:
Master volume -15db
Master volume -10db
Master volume -5db
Not just low medium and high
I know that I can start at a point and go up and down.

Also can I request that the next Pre/Pro have ASCII based range control vs the current Hex / Byte commands. For example my InFocus projector is easy to control via ASCII and the codes are humanly readable.
BRT 55 sets the brightness to 55
BRT 73 sets the brightness to 73
PWR 0 powers down the projector
PWR 1 powers up the projector
OVS 0 turns over scan off
Etc.
This is a lot more practical user friendly way to do the job

BTW here is a bit of C# code I have been working on to control the Outlaw 990
Code:
using System;
using System.Collections.Generic;
using System.Text;
using System.IO.Ports;

namespace MediaControl.Logic
{

    public partial class RS232Logic
    {
        /// <summary>
        /// Sends a Hex Command to a RS232 Device
        /// </summary>
        public static void SendCommand(string HexCommand, string ComPort, int BaudRate, Parity Parity, int DataBits, StopBits StopBits)
        {
            // Create Serial Port
            SerialPort sp = new SerialPort(ComPort, BaudRate, Parity, DataBits, StopBits);

            // Convert Hex Command into bytes
            byte[] HexBytes = HexStringConverter.ToByteArray(HexCommand);

            // Open serial port
            sp.Open();

            // send out the bytes
            sp.Write(HexBytes, 0, HexBytes.Length);

            // clean up
            sp.Close();
        }
    }
    /// <summary>
    /// Converts Hex Strings 
    /// </summary>
    static class HexStringConverter
    {
        /// <summary>
        /// Converts Hex Strings to byte arrays
        /// </summary>
        /// <param name="HexString">Hex number in string format</param>
        /// <returns>byte array</returns>
        public static byte[] ToByteArray(string HexString)
        {
            // Get HexString Length
            int NumberChars = HexString.Length; 
            
            // The Hex numbers come in pairs of 2 like "DF"
            // so the length of the byte array will naturally
            // be half the length of the hex string
            byte[] bytes = new byte[NumberChars / 2];

            // Loop through the hex numbers converting each character pair to byte
            for (int i = 0; i < NumberChars; i += 2)
            {
                bytes[i / 2] = Convert.ToByte(HexString.Substring(i, 2), 16);
            } 
            return bytes;
        }
    }
}