py_canoe.core.networks.Networks
The Networks object represents the networks of CANoe.
Source code in src\py_canoe\core\networks.py
16 17 18 | |
count
property
Return the number of networks in the CANoe application.
control_tester_present(diag_ecu_qualifier_name, value)
Enable or Disable tester present.
Source code in src\py_canoe\core\networks.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
fetch_diagnostic_devices()
Get all diagnostic devices from the networks and store them in the diagnostic_devices dictionary.
Source code in src\py_canoe\core\networks.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
get_all_network_names()
Get all network names in the CANoe application.
Source code in src\py_canoe\core\networks.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |
item(index)
Get a specific network by index (1-based).
Source code in src\py_canoe\core\networks.py
25 26 27 | |
send_diag_request(diag_ecu_qualifier_name, request, request_in_bytes=True, return_sender_name=False, response_in_bytearray=False, timeout=10.0, poll_s=0.01, **kwargs)
Send diagnostic request to the specified ECU and return the response.
Source code in src\py_canoe\core\networks.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | |