This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] MSPM0G3507-Q1:硬件模块的应用编程接口(API)文档

Guru**** 1788580 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1403939/mspm0g3507-q1-application-programming-interface-api-documentation-for-hardware-blocks

器件型号:MSPM0G3507-Q1

工具与软件:

您好!

虽然我使用从项目示例获取的代码、但我要将 I2C 接口编程到 LTC2495 ADC、这太不可思议了。

是否有编程技术参考文档? MSPM0 G 系列器件的技术参考手册非常便于您了解硬件、但 不包含 API。

我希望您能向我指出一个良好的方向。

谢谢!

Dave

P.S.请注意、我随附了 Infineon I2C 数据表。 我已经使用 PSoC 大约10年,我被宠坏了:-)。  

e2e.ti.com/.../Infineon_2D00_Component_5F00_I2C_5F00_V2.10_2D00_Software-Module-Datasheets_2D00_v03_5F00_05_2D00_EN.pdf

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好、David

    我们没有 API 用户指南、

    但您可以参考 API 的源代码。

    例如 I2C 的 API: DL_I2C_fillControllerTXFIFO

    在 dl_i2c.h 中:

    /**
     *  @brief      Fills the controller TX FIFO with data
     *
     *  @param[in]  i2c     Pointer to the register overlay for the peripheral
     *  @param[in]  buffer  Pointer to buffer of bytes
     *  @param[in]  count   Number of bytes to fill controller TX FIFO from buffer
     *
     *  @return     Number of bytes that were successfully written
     */
    uint16_t DL_I2C_fillControllerTXFIFO(
        I2C_Regs *i2c, uint8_t *buffer, uint16_t count);

    在 dl_i2c.c 中:

    uint16_t DL_I2C_fillControllerTXFIFO(
        I2C_Regs *i2c, uint8_t *buffer, uint16_t count)
    {
        uint16_t i;
        for (i = (uint16_t) 0; i < count; i++) {
            if (DL_I2C_isControllerTXFIFOFull(i2c) == false) {
                DL_I2C_transmitControllerData(i2c, buffer[i]);
            } else {  // Controller TX FIFO is full
                break;
            }
        }
        return i;
    }

    此致、

    露西