menu "SIM7020 Config" 

    config SIM7020_AUTO_CREATE
        bool "Enable SIM7020 Module Object Auto Create"
        default n

    if SIM7020_AUTO_CREATE

        config SIM7020_DEVICE_NAME
            string "SIM7020 Interface Device Name"
            default "uart2"

        config SIM7020_DEVICE_RATE
            int "SIM7020 Interface Device Rate"
            default 115200

        config SIM7020_RECV_BUFF_LEN
            int "The maximum length of AT command data accepted"
            default 512

    endif

    config SIM7020_USING_GENERAL_OPS
        bool "Enable SIM7020 Module General Operates"
        select MOLINK_USING_GENERAL_OPS
        default y
    
    config SIM7020_USING_NETSERV_OPS
        bool "Enable SIM7020 Module Network Service Operates"
        select MOLINK_USING_NETSERV_OPS
        default y

    config SIM7020_USING_PING_OPS
        bool "Enable SIM7020 Module Ping Operates"
        select MOLINK_USING_PING_OPS
        default y

    config SIM7020_USING_IFCONFIG_OPS
        bool "Enable SIM7020 Module Ifconfig Operates"
        select MOLINK_USING_IFCONFIG_OPS
        select SIM7020_USING_GENERAL_OPS
        select SIM7020_USING_NETSERV_OPS
        default y
    config SIM7020_USING_NETCONN_OPS
        bool "Enable SIM7020 Module Network TCP/IP Operates"
        select MOLINK_USING_NETCONN_OPS
        default y

    config SIM7020_USING_SOCKETS_OPS
        bool "Enable SIM7020 Module BSD Socket Operates"
        select SIM7020_USING_NETCONN_OPS
        select MOLINK_USING_SOCKETS_OPS
        default n

endmenu
