/* * The MIPI D-PHY specification (Section 6.9, v1.2, Table 14, Page 40) * contains this formula as: * * T_HS-TRAIL = max(n * 8 * period, 60 + n * 4 * period) * * where n = 1 for forward-direction HS mode and n = 4 for reverse- * direction HS mode. There's only one setting and this function does * not parameterize on anything other that period, so this code will * assumes that reverse-direction HS mode is supported and uses n = 4.
*/
timing->hstrail = max(4 * 8 * period, 60 + 4 * 4 * period);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.