Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of libMiMic by
cpp/NetConfig.h
- Committer:
- nyatla
- Date:
- 2013-04-04
- Revision:
- 3:0a94993be1f6
- Child:
- 11:c82a7b2899b0
File content as of revision 3:0a94993be1f6:
#pragma once
////////////////////////////////////////////////////////////////////////////////
// NetConfig.h
////////////////////////////////////////////////////////////////////////////////
#include "NyLPC_net.h"
namespace MiMic
{
    /**
     * Network configulation class.
     */
    class NetConfig
    {
    public:
        NyLPC_TcNetConfig_t _inst;
    public:
        /**
         * The constructor.
         * This function initializes instance by onchip configulation data.
         * @param i_is_factory_default
          * Factory default flag.
         * <ul>
         * <li>true - The function sets factory default setting.
         * <li>false -The function sets onchip memory configulation (default)
         * </ul>
         */
        NetConfig(bool i_is_factory_default=false);
        virtual ~NetConfig();
    };
   }
            
    