/// <summary>
        /// This method should be called whenever the BioECG array is updated with new values.
        /// </summary>
        public void BioECGUpdated()
        {
            // Since the elements of the array can be updated individually, we can't rely on
            // the property to tell when new blood pressure values have been received.

            if ((this._bioDeviceValueSet & BioDevice.ECG) == 0)
            {
                this._bioDeviceValueSet = this._bioDeviceValueSet | BioDevice.ECG;
            }
        }
        /// <summary>
        /// This method should be called whenever the BioECG array is updated with new values.
        /// </summary>
        public void BioECGUpdated()
        {
            // Since the elements of the array can be updated individually, we can't rely on
            // the property to tell when new blood pressure values have been received.

            if ((this._bioDeviceValueSet & BioDevice.ECG) == 0)
                this._bioDeviceValueSet = this._bioDeviceValueSet | BioDevice.ECG;
        }