예제 #1
0
 def event_information():
     """ Event information """
     return CoreCommandSpec(instruction='EV',
                            response_fields=[
                                ByteField('type'),
                                ByteField('action'),
                                WordField('device_nr'),
                                ByteArrayField('data', 4)
                            ])
예제 #2
0
 def ucan_rx_transport_message():
     """ uCAN transport layer packages """
     return CoreCommandSpec(instruction='FM',
                            response_fields=[
                                AddressField('cc_address'),
                                ByteField('nr_can_bytes'),
                                ByteField('sid'),
                                ByteArrayField('payload', 8)
                            ])
예제 #3
0
 def error_information():
     """ Error information """
     return CoreCommandSpec(instruction='ER',
                            response_fields=[
                                ByteField('type'),
                                ByteField('parameter_a'),
                                WordField('parameter_b'),
                                WordField('parameter_c')
                            ])
예제 #4
0
 def _sensor_values(instruction, field):
     """ Receive sensor byte values """
     return CoreCommandSpec(
         instruction='SI',
         request_fields=[
             ByteField('module_nr'),
             LiteralBytesField(instruction)
         ],
         response_fields=[ByteField('module_nr'),
                          PaddingField(1), field])
예제 #5
0
파일: ucan_api.py 프로젝트: rubengr/gateway
 def set_bootloader_safety_flag():
     """ Sets the bootloader's safety flag """
     return UCANCommandSpec(sid=SID.BOOTLOADER_COMMAND,
                            instruction=Instruction(instruction=[0, 125]),
                            identifier=AddressField('ucan_address', 3),
                            request_fields=[ByteField('safety_flag')],
                            response_instructions=[
                                Instruction(instruction=[125, 125],
                                            checksum_byte=6)
                            ],
                            response_fields=[ByteField('safety_flag')])
예제 #6
0
파일: ucan_api.py 프로젝트: rubengr/gateway
 def ping(sid=SID.NORMAL_COMMAND):
     """ Basic action spec """
     return UCANCommandSpec(sid=sid,
                            instruction=Instruction(instruction=[0, 96]),
                            identifier=AddressField('ucan_address', 3),
                            request_fields=[ByteField('data')],
                            response_instructions=[
                                Instruction(instruction=[1, 96],
                                            checksum_byte=6)
                            ],
                            response_fields=[ByteField('data')])
예제 #7
0
파일: ucan_api.py 프로젝트: rubengr/gateway
 def set_bootloader_timeout(sid=SID.NORMAL_COMMAND):
     """ Sets the bootloader timeout """
     return UCANCommandSpec(sid=sid,
                            instruction=Instruction(instruction=[0, 123]),
                            identifier=AddressField('ucan_address', 3),
                            request_fields=[ByteField('timeout')],
                            response_instructions=[
                                Instruction(instruction=[123, 123],
                                            checksum_byte=6)
                            ],
                            response_fields=[ByteField('timeout')])
예제 #8
0
    def test_pallet_reconstructing(self):
        received_commands = []

        def send_command(_cid, _command, _fields):
            received_commands.append(_fields)

        core_communicator = CoreCommunicator(controller_serial=Mock(), verbose=True)
        core_communicator._send_command = send_command
        ucan_communicator = UCANCommunicator(master_communicator=core_communicator, verbose=True)
        cc_address = '000.000.000.000'
        ucan_address = '000.000.000'
        pallet_type = PalletType.MCU_ID_REQUEST  # Not important for this test

        for length in [1, 3]:
            # Build command
            command = UCANPalletCommandSpec(identifier=AddressField('ucan_address', 3),
                                            pallet_type=pallet_type,
                                            request_fields=[ByteField('foo'), ByteField('bar')],
                                            response_fields=[ByteArrayField('other', length)])

            # Send command to mocked Core communicator
            received_commands = []
            ucan_communicator.do_command(cc_address, command, ucan_address, {'foo': 1, 'bar': 2}, timeout=None)

            # Validate whether the correct data was send to the Core
            self.assertEqual(len(received_commands), 2)
            self.assertDictEqual(received_commands[0], {'cc_address': cc_address,
                                                        'nr_can_bytes': 8,
                                                        'payload': [129, 0, 0, 0, 0, 0, 0, pallet_type],
                                                        #                +--------------+ = source and destination uCAN address
                                                        'sid': SID.BOOTLOADER_PALLET})
            self.assertDictEqual(received_commands[1], {'cc_address': cc_address,
                                                        'nr_can_bytes': 7,
                                                        'payload': [0, 1, 2, 219, 155, 250, 178, 0],
                                                        #              |  |  +----------------+ = checksum
                                                        #              |  + = bar
                                                        #              + = foo
                                                        'sid': SID.BOOTLOADER_PALLET})

            # Build fake reply from Core
            consumer = ucan_communicator._consumers[cc_address][0]
            fixed_payload = [0, 0, 0, 0, 0, 0, pallet_type]
            variable_payload = range(7, 7 + length)  # [7] or [7, 8, 9]
            crc_payload = Int32Field.encode_bytes(UCANPalletCommandSpec.calculate_crc(fixed_payload + variable_payload))
            ucan_communicator._process_transport_message({'cc_address': cc_address,
                                                          'nr_can_bytes': 8,
                                                          'sid': 1,
                                                          'payload': [129] + fixed_payload})
            ucan_communicator._process_transport_message({'cc_address': cc_address,
                                                          'nr_can_bytes': length + 5,
                                                          'sid': 1,
                                                          'payload': [0] + variable_payload + crc_payload})
            self.assertDictEqual(consumer.get(1), {'other': variable_payload})
예제 #9
0
 def ucan_module_information():
     """ Receives information from a uCAN module """
     return CoreCommandSpec(instruction='CD',
                            response_fields=[
                                AddressField('ucan_address', 3),
                                WordArrayField('input_links', 6),
                                ByteArrayField('sensor_links', 2),
                                ByteField('sensor_type'),
                                VersionField('version'),
                                ByteField('bootloader'),
                                CharField('new_indicator'),
                                ByteField('min_led_brightness'),
                                ByteField('max_led_brightness')
                            ])
예제 #10
0
 def basic_action():
     """ Basic action spec """
     return CoreCommandSpec(instruction='BA',
                            request_fields=[
                                ByteField('type'),
                                ByteField('action'),
                                WordField('device_nr'),
                                WordField('extra_parameter')
                            ],
                            response_fields=[
                                ByteField('type'),
                                ByteField('action'),
                                WordField('device_nr'),
                                WordField('extra_parameter')
                            ])
예제 #11
0
 def memory_write(length):
     """ Writes memory """
     return CoreCommandSpec(instruction='MW',
                            request_fields=[
                                CharField('type'),
                                WordField('page'),
                                ByteField('start'),
                                ByteArrayField('data', length)
                            ],
                            response_fields=[
                                CharField('type'),
                                WordField('page'),
                                ByteField('start'),
                                ByteField('length'),
                                CharField('result')
                            ])
예제 #12
0
 def memory_read():
     """ Reads memory """
     return CoreCommandSpec(instruction='MR',
                            request_fields=[
                                CharField('type'),
                                WordField('page'),
                                ByteField('start'),
                                ByteField('length')
                            ],
                            response_fields=[
                                CharField('type'),
                                WordField('page'),
                                ByteField('start'),
                                ByteArrayField('data',
                                               lambda length: length - 4)
                            ])
예제 #13
0
 def device_information_list_inputs():
     """ Device information list for inputs """
     return CoreCommandSpec(instruction='DL',
                            request_fields=[LiteralBytesField(1)],
                            response_fields=[
                                ByteField('type'),
                                ByteArrayField('information',
                                               lambda length: length - 1)
                            ])
예제 #14
0
파일: ucan_api.py 프로젝트: rubengr/gateway
 def reset(sid=SID.NORMAL_COMMAND):
     """ Resets the uCAN """
     return UCANCommandSpec(sid=sid,
                            instruction=Instruction(instruction=[0, 94]),
                            identifier=AddressField('ucan_address', 3),
                            response_instructions=[
                                Instruction(instruction=[94, 94],
                                            checksum_byte=6)
                            ],
                            response_fields=[ByteField('application_mode')])
예제 #15
0
파일: ucan_api.py 프로젝트: rubengr/gateway
 def read_flash(data_length):
     """
     Reads uCAN flash
     Note: uCAN needs to be in bootloader
     """
     return UCANPalletCommandSpec(
         identifier=AddressField('ucan_address', 3),
         pallet_type=PalletType.FLASH_READ_REQUEST,
         request_fields=[
             Int32Field('start_address'),
             ByteField('data_length')
         ],
         response_fields=[ByteArrayField('data', data_length)])
예제 #16
0
 def get_ucan_address():
     """ Receives the uCAN address of a specific uCAN """
     return CoreCommandSpec(instruction='FS',
                            request_fields=[
                                AddressField('cc_address'),
                                LiteralBytesField(1),
                                ByteField('ucan_nr')
                            ],
                            response_fields=[
                                AddressField('cc_address'),
                                PaddingField(2),
                                AddressField('ucan_address', 3)
                            ])
예제 #17
0
 def get_amount_of_ucans():
     """ Receives amount of uCAN modules """
     return CoreCommandSpec(instruction='FS',
                            request_fields=[
                                AddressField('cc_address'),
                                LiteralBytesField(0),
                                LiteralBytesField(0)
                            ],
                            response_fields=[
                                AddressField('cc_address'),
                                PaddingField(2),
                                ByteField('amount'),
                                PaddingField(2)
                            ])
예제 #18
0
 def general_configuration_number_of_modules():
     """ Receives general configuration regarding number of modules """
     return CoreCommandSpec(instruction='GC',
                            request_fields=[LiteralBytesField(0)],
                            response_fields=[
                                ByteField('type'),
                                ByteField('output'),
                                ByteField('input'),
                                ByteField('sensor'),
                                ByteField('ucan'),
                                ByteField('ucan_input'),
                                ByteField('ucan_sensor')
                            ])
예제 #19
0
 def general_configuration_max_specs():
     """ Receives general configuration regarding maximum specifications (e.g. max number of input modules, max number of basic actions, ...) """
     return CoreCommandSpec(instruction='GC',
                            request_fields=[LiteralBytesField(1)],
                            response_fields=[
                                ByteField('type'),
                                ByteField('output'),
                                ByteField('input'),
                                ByteField('sensor'),
                                ByteField('ucan'),
                                WordField('groups'),
                                WordField('basic_actions'),
                                ByteField('shutters'),
                                ByteField('shutter_groups')
                            ])
예제 #20
0
 def output_detail():
     """ Received output detail information """
     return CoreCommandSpec(instruction='OD',
                            request_fields=[WordField('device_nr')],
                            response_fields=[
                                WordField('device_nr'),
                                ByteField('status'),
                                ByteField('dimmer'),
                                ByteField('dimmer_min'),
                                ByteField('dimmer_max'),
                                ByteField('timer_type'),
                                ByteField('timer_type_standard'),
                                WordField('timer'),
                                WordField('timer_standard'),
                                WordField('group_action'),
                                ByteField('dali_output')
                            ])
예제 #21
0
 def module_information():
     """ Receives module information """
     return CoreCommandSpec(instruction='MC',
                            request_fields=[
                                ByteField('module_nr'),
                                ByteField('module_family')
                            ],
                            response_fields=[
                                ByteField('module_nr'),
                                ByteField('module_family'),
                                ByteField('module_type'),
                                AddressField('address'),
                                WordField('bus_errors'),
                                ByteField('module_status')
                            ])
예제 #22
0
파일: ucan_api.py 프로젝트: rubengr/gateway
 def set_max_led_brightness():
     """ Sets the maximum brightness for a uCAN led """
     return UCANCommandSpec(sid=SID.NORMAL_COMMAND,
                            instruction=Instruction(instruction=[0, 247]),
                            identifier=AddressField('ucan_address', 3),
                            request_fields=[ByteField('brightness')])
예제 #23
0
파일: ucan_api.py 프로젝트: rubengr/gateway
 def read_ucan_config():
     """ Reads the full uCAN config """
     return UCANCommandSpec(sid=SID.NORMAL_COMMAND,
                            instruction=Instruction(instruction=[0, 199]),
                            identifier=AddressField('ucan_address', 3),
                            response_instructions=[
                                Instruction(instruction=[i, 199],
                                            checksum_byte=7)
                                for i in xrange(1, 14)
                            ],
                            response_fields=[
                                ByteField('input_link_0'),
                                ByteField('input_link_1'),
                                ByteField('input_link_2'),
                                ByteField('input_link_3'),
                                ByteField('input_link_4'),
                                ByteField('input_link_5'),
                                ByteField('sensor_link_0'),
                                ByteField('sensor_link_1'),
                                ByteField('sensor_type'),
                                VersionField('firmware_version'),
                                ByteField('bootloader'),
                                ByteField('new_indicator'),
                                ByteField('min_led_brightness'),
                                ByteField('max_led_brightness'),
                                WordField('adc_input_2'),
                                WordField('adc_input_3'),
                                WordField('adc_input_4'),
                                WordField('adc_input_5'),
                                WordField('adc_dc_input')
                            ])