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.

[参考译文] AM2634:QSPI 引脚方向

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

https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1232680/am2634-qspi-pin-direction

器件型号:AM2634

您好

我想在两个器件之间共享外部闪存。 为此、我需要在应用中将 QSPI 引脚更改为高阻态。

我已经尝试通过 Board_driversClose ()关闭该驱动程序,但 CLK 和 CS 仍配置为输出。

是否有简单的方法可以做到这一点?

谢谢、此致

多米尼克

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

    没有人知道如何解决这一问题吗?

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

    尊敬的 

    只需调用此函数-  Pinmux_config (cfg、PINMUX_DOMAIN_ID_MAIN );

    请参阅  生成/ti_pinmux_config.c  

    提供 cfg 值  

    CFG[]=
      {
        PIN_QSPI_CLK、
        (PIN_MODE(0)|PIN_FORCE_OUTPUT_DISABLE| PIN_SLEW_RATE_LOW)
      }、
      {
        PIN_QSPI_CSN0、
        ( PIN_MODE(0)| PIN_FORCE_OUTPUT_DISABLE| PIN_SLEW_RATE_LOW )
      }、
      {PINMUX_END、PINMUX_END}
    };