--====================================================================== use work.board_and_fw_id_pkg.all; use work.constants_dth_p1v1.all; use work.constants_golden.all; use work.constants_tcds2.all; package constants_functions_and_versions is -- System, board, and function ID. constant C_SYSTEM_ID : tcds2_id := C_SYSTEM_ID_TCDS2; constant C_BOARD_ID : tcds2_id := C_BOARD_ID_DTH_P1V1; constant C_FUNCTION_ID : tcds2_id := C_FUNCTION_ID_GOLDEN; -- Firmware version. constant C_FW_VERSION_MAJOR : tcds2_version := 0; constant C_FW_VERSION_MINOR : tcds2_version := 1; constant C_FW_VERSION_PATCH : tcds2_version := 0; end constants_functions_and_versions; --======================================================================