MCPcopy Create free account
hub / github.com/FastLED/FastLED / set_lane_range

Method set_lane_range

ci/autoresearch_agent.py:287–297  ·  view source on GitHub ↗

Set the lane count range for test matrix generation. Args: min_lanes: Minimum number of lanes to test max_lanes: Maximum number of lanes to test Returns: Response dict with minLanes, maxLanes, testCases

(self, min_lanes: int, max_lanes: int)

Source from the content-addressed store, hash-verified

285 return self.send_rpc("setStripSizeValues", [short, long])
286
287 def set_lane_range(self, min_lanes: int, max_lanes: int) -> dict[str, Any]:
288 """Set the lane count range for test matrix generation.
289
290 Args:
291 min_lanes: Minimum number of lanes to test
292 max_lanes: Maximum number of lanes to test
293
294 Returns:
295 Response dict with minLanes, maxLanes, testCases
296 """
297 return self.send_rpc("setLaneRange", [min_lanes, max_lanes])
298
299 def set_strip_sizes_enabled(
300 self, small: bool = True, large: bool = False

Callers

nothing calls this directly

Calls 1

send_rpcMethod · 0.95

Tested by

no test coverage detected