OpenFPGA/libs/libarchopenfpga/src/config_protocol_xml_constan...

13 lines
495 B
C
Raw Normal View History

2023-04-21 10:45:35 -05:00
#ifndef CONFIG_PROTOCOL_XML_CONSTANTS_H
#define CONFIG_PROTOCOL_XML_CONSTANTS_H
/* Constants for XML parsers, including readers and writers */
2023-04-22 02:12:38 -05:00
constexpr const char* XML_CONFIG_PROTOCOL_NUM_REGIONS_ATTR = "num_regions";
constexpr const char* XML_CONFIG_PROTOCOL_CCFF_PROG_CLOCK_NODE_NAME =
"programming_clock";
2023-04-21 10:45:35 -05:00
constexpr const char* XML_CONFIG_PROTOCOL_CCFF_PROG_CLOCK_PORT_ATTR = "port";
2023-04-22 02:12:38 -05:00
constexpr const char* XML_CONFIG_PROTOCOL_CCFF_PROG_CLOCK_INDICES_ATTR =
"ccff_head_indices";
2023-04-21 10:45:35 -05:00
#endif