Hello everyone,
I have OSC chip on my board and I describe it in PinMUX:
Generated configuration is here:
pinmuxBoardCfg_t gGpevmPinmuxData[] =
{
#if defined(BUILDCFG_MOD_UART)
{CHIPDB_MOD_ID_UART, gUartPinCfg},
#endif /* if defined(BUILDCFG_MOD_UART) */
#if defined(BUILDCFG_MOD_PRU_ICSS)
{CHIPDB_MOD_ID_PRU_ICSS, gPru_icssPinCfg},
#endif /* if defined(BUILDCFG_MOD_PRU_ICSS) */
#if defined(BUILDCFG_MOD_I2C)
{CHIPDB_MOD_ID_I2C, gI2cPinCfg},
#endif /* if defined(BUILDCFG_MOD_I2C) */
#if defined(BUILDCFG_MOD_CPSW)
{CHIPDB_MOD_ID_CPSW, gCpswPinCfg},
#endif /* if defined(BUILDCFG_MOD_CPSW) */
#if defined(BUILDCFG_MOD_MMCSD)
{CHIPDB_MOD_ID_MMCSD, gMmcsdPinCfg},
#endif /* if defined(BUILDCFG_MOD_MMCSD) */
#if defined(BUILDCFG_MOD_QSPI)
{CHIPDB_MOD_ID_QSPI, gQspiPinCfg},
#endif /* if defined(BUILDCFG_MOD_QSPI) */
#if defined(BUILDCFG_MOD_GPIO)
{CHIPDB_MOD_ID_GPIO, gGpioPinCfg},
#endif /* if defined(BUILDCFG_MOD_GPIO) */
#if defined(BUILDCFG_MOD_RTC)
{CHIPDB_MOD_ID_RTC, gRtcPinCfg},
#endif /* if defined(BUILDCFG_MOD_RTC) */
#if defined(BUILDCFG_MOD_OSC)
{CHIPDB_MOD_ID_OSC, gOscPinCfg}, /*!!!!!!!!!!!! OSC Chip is described here !!!!!!!!!!!*/
#endif /* if defined(BUILDCFG_MOD_OSC) */
{CHIPDB_MOD_ID_INVALID}
};
But when I try to compile I get the error that CHIPDB_MOD_ID_OSC is undefined.
I'm looking in:
C:\ti\pdk_am437x_1_0_14\packages\ti\starterware\include\am43xx\chipdb_defs.h
And indeed this Chip ID is not present!
Any ideas why is that?
What is the correct fix?
Thank you in advance!

