Skip to content

Commit a9ea075

Browse files
committed
Updating doxygen commenting for a few NoC related files so that they are displayed better within the VPR documentation
1 parent b65b9b8 commit a9ea075

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

vpr/src/noc/noc_data_types.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@
77
struct noc_router_id_tag;
88
struct noc_link_id_tag;
99

10+
/** Datatype to index routers within the NoC */
1011
typedef vtr::StrongId<noc_router_id_tag, int> NocRouterId;
12+
/** Datatype to index links within the NoC */
1113
typedef vtr::StrongId<noc_link_id_tag, int> NocLinkId;
1214

1315
// data type to index traffic flows within the noc
1416
struct noc_traffic_flow_id_tag;
1517

18+
/** Datatype to index traffic flows within the application */
1619
typedef vtr::StrongId<noc_traffic_flow_id_tag, int> NocTrafficFlowId;
1720

1821
#endif

vpr/src/noc/noc_link.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef NOC_LINK_H
22
#define NOC_LINK_H
33

4-
/*
4+
/**
55
* @file
66
* @brief This file defines the NocLink class.
77
*

vpr/src/noc/noc_router.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef NOC_ROUTER_H
22
#define NOC_ROUTER_H
33

4-
/*
4+
/**
55
* @file
66
* @brief This file defines the NocRouter class.
77
*

0 commit comments

Comments
 (0)