12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef CSL_UART_TOP_H_
- #define CSL_UART_TOP_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <ti/csl/csl.h>
- #include <ti/csl/tistdtypes.h>
- #include <ti/csl/cslr_uart.h>
- #if defined (SOC_AM574x) || defined (SOC_AM572x) || defined (SOC_TDA2XX) || defined (SOC_TDA2PX) || defined (SOC_DRA75x) || defined (SOC_AM571x) || defined (SOC_TDA2EX) || defined (SOC_DRA72x) || defined(SOC_TDA3XX) || defined (SOC_DRA78x)
- #include <ti/csl/src/ip/uart/V1/uart.h>
- #elif defined (SOC_AM335x) || defined (SOC_AM437x)
- #include <ti/csl/src/ip/uart/V1/uart.h>
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|