Functions | |
int | fwTell1_EPC16ToFPGA (string pCCPC) |
int | fwTell1_iniGlueCard (string pCCPC) |
int | fwTell1_resetTell1 (string pCCPC) |
int | fwTell1_resetTell1Soft (string pCCPC) |
int | fwTell1_iniGBE (string pCCPC) |
int | fwTell1_clearMEP (string pCCPC) |
int | fwTell1_iniTell1 (string pCCPC) |
int fwTell1_clearMEP | ( | string | pCCPC | ) |
This function clears the MEP buffer
[in] | pCCPC | name of the CCPC. |
(...) if (fwTell1_clearMEP("pclbcecs03") == 0) (...) else DebugTN("Error found!"); (...)
int fwTell1_EPC16ToFPGA | ( | string | pCCPC | ) |
This function loads the FPGA from EPC16 (just for TELL1).
[in] | pCCPC | name of the CCPC. |
(...) if (fwTell1_EPC16ToFPGA("pclbcecs03") == 0) // load the FPGA from EPC16 (...) else DebugTN("Error found!"); (...)
int fwTell1_iniGBE | ( | string | pCCPC | ) |
This function initializes the Gigabit Ethernet card
[in] | pCCPC | name of the CCPC. |
(...) if (fwTell1_iniGBE("pclbcecs03") == 0) (...) else DebugTN("Error found!"); (...)
int fwTell1_iniGlueCard | ( | string | pCCPC | ) |
This function initializes the glue-card
[in] | pCCPC | name of the CCPC. |
(...) if (fwTell1_iniGlueCard("pclbcecs03") == 0) (...) else DebugTN("Error found!"); (...)
int fwTell1_iniTell1 | ( | string | pCCPC | ) |
This function initializes the complete Tell1 board. It calls all the necessary hardcoded sequences directly on the server. For propper configuration it is necessary to call this function before the recipes are applied.
[in] | pCCPC | name of the CCPC. |
(...) if (fwTell1_iniTell1("pclbcecs03") == 0) (...) else DebugTN("Error found!"); (...)
int fwTell1_resetTell1 | ( | string | pCCPC | ) |
This function resets the Tell1 board by pulling some GPIO lines
[in] | pCCPC | name of the CCPC. |
(...) if (fwTell1_resetTell1("pclbcecs03") == 0) (...) else DebugTN("Error found!"); (...)
int fwTell1_resetTell1Soft | ( | string | pCCPC | ) |
This function sets a bit in SL_RESET_REG to reset the TELL1 board
[in] | pCCPC | name of the CCPC. |
(...) if (fwTell1_resetTell1Soft("pclbcecs03") == 0) (...) else DebugTN("Error found!"); (...)