menu "Third Packages Drivers"

    menuconfig BSP_USING_ERPC
        bool "Enable using erpc"
        default n


        if BSP_USING_ERPC


             config ERPC_USING_RTT
             bool "Enable erpc using rtt"
             default n



             menuconfig ERPC_MODE
                bool "Select erpc mode"
                default y
                if ERPC_MODE
                    config ERPC_MODE_SERVER
                        bool "ERPC Server Mode"
                        default y
                    config ERPC_MODE_CLIENT
                         bool "ERPC Client Mode"
                         default n
                endif



             menuconfig ERPC_TRANSPORTS
                bool "Select erpc transports"
                default y
                if ERPC_TRANSPORTS
                    config ERPC_TRANSPORTS_SPI
                        bool "SPI transports"
                        default n
                    config ERPC_TRANSPORTS_UART
                        bool "UART transports"
                        default n
                    config ERPC_TRANSPORTS_TCP
                        bool "TCP transports"
                        default n
                    config ERPC_TRANSPORTS_USB_CDC
                        bool "USB CDC transports"
                        default n
                endif

        endif


endmenu