BgApiDriver.BgApi.ble_cmd_hardware_io_port_config_irq C# (CSharp) Method

ble_cmd_hardware_io_port_config_irq() public method

public ble_cmd_hardware_io_port_config_irq ( int port, int enable_bits, int falling_edge ) : ble_msg_hardware_io_port_config_irq_rsp_t
port int
enable_bits int
falling_edge int
return ble_msg_hardware_io_port_config_irq_rsp_t
        public ble_msg_hardware_io_port_config_irq_rsp_t ble_cmd_hardware_io_port_config_irq(int port, int enable_bits, int falling_edge)
        {
            log("ble_cmd_hardware_io_port_config_irq_id");
            byte[] _data = new byte[SIZE_HEADER + 0 + 1 + 1 + 1];
            int idx = 0;
            // header
            _data[idx++] = (byte)ble_dev_types.ble_dev_type_ble|(byte)ble_msg_types.ble_msg_type_cmd|0x0;
            _data[idx++] = (byte)(0 + 1 + 1 + 1);
            _data[idx++] = (byte)ble_classes.ble_cls_hardware;
            _data[idx++] = (byte)ble_command_ids.ble_cmd_hardware_io_port_config_irq_id;
            // data
            _data[idx++] = (byte)port;
            _data[idx++] = (byte)enable_bits;
            _data[idx++] = (byte)falling_edge;
            // send
            BgApiResponse response = Send(new BgApiCommand() { Data = _data }, false);
            return (ble_msg_hardware_io_port_config_irq_rsp_t)response;
        }
BgApi