From 62599c5f91982b9c9151144fbae16e6fa39be96a Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 9 Jan 2019 13:46:18 +0800 Subject: [PATCH] firmware: use consistent terminology --- artiq/firmware/libboard_artiq/drtio_routing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/libboard_artiq/drtio_routing.rs b/artiq/firmware/libboard_artiq/drtio_routing.rs index 27234d22c..10ce489b1 100644 --- a/artiq/firmware/libboard_artiq/drtio_routing.rs +++ b/artiq/firmware/libboard_artiq/drtio_routing.rs @@ -13,7 +13,7 @@ pub const INVALID_HOP: u8 = 0xff; pub struct RoutingTable(pub [[u8; MAX_HOPS]; DEST_COUNT]); impl RoutingTable { - // default routing table is for star topology with no hops + // default routing table is for star topology with no repeaters pub fn default_master(default_n_links: usize) -> RoutingTable { let mut ret = RoutingTable([[INVALID_HOP; MAX_HOPS]; DEST_COUNT]); let n_entries = default_n_links + 1; // include local RTIO