| # Feature Option {#group_feature_option} |
| # ============================================================================ |
| # [TOC] |
| |
| # > Internal Feature Option is designed for MediaTek internal development. \n |
| # > MediaTek suggest customer **NOT** to change these feature options. \n |
| |
| # ---------------------------------------------------------------------------- |
| # # PLATFORM_CHIP {#l1_platform_chip} |
| # ## description |
| # > PLATFORM_CHIP is used to specify the current working platform chip. \n |
| # > Most BSP drivers will rely on this feature option. \n |
| # |
| # value | definition |
| # :-------- | :-------------- |
| # MT6280 | Platform Chip is MT6280 |
| # MT6290 | Platform Chip is MT6290 |
| # MT6291 | Platform Chip is MT6291 |
| # MT6735 | Platform Chip is MT6735 |
| # MT7620 | Platform Chip is MT7620 |
| # MT7621 | Platform Chip is MT7621 |
| # |
| # ## present value |
| PLATFORM_CHIP = "MT6735" |
| |
| # ---------------------------------------------------------------------------- |
| # # PRODUCT_MODE {#l1_product_mode} |
| # ## description |
| # > PRODUCT_MODE is used to specify the current support product mode. \n |
| # > MediaTek Software Stack can support kinds of product modes. |
| # > Each product mode has their own unique functionality. \n |
| # > These unique functionalities will be enabled, depending on this feature |
| # > option. \n |
| # |
| # value | definition |
| # :-------- | :-------------- |
| # HOTSPOT | HOTSPOT mode implement a portable broadband router |
| # RNDIS | RNDIS mode implement a modem dongle, with a built-in Web Manager |
| # HOSTED | HOSTED mode implement a modem dongle, needed software installed in host PC |
| # TABLET | TABLET mode implement a modem module, easily integrated for tablet |
| # CPE | CPE mode implement a broadband customer premises equipment |
| # MODULE | MODULE mode implement a modem module |
| # |
| # ## present value |
| PRODUCT_MODE = "MODULE" |
| |
| # ---------------------------------------------------------------------------- |
| # # ARCH_SUPER_DONGLE {#l1_arch_super_dongle} |
| # ## description |
| # > Super Dongle is a new architecture for supporting miscellaneous product |
| # > modes in a single codebase. \n |
| # |
| # value | definition |
| # :-------- | :-------------- |
| # TRUE | Super Dongle Architecture is enabled |
| # FALSE | Super Dongle Architecture is disabled |
| # |
| # ## present value |
| ARCH_SUPER_DONGLE = "TRUE" |
| |
| # ---------------------------------------------------------------------------- |
| # # AP_RAM_SIZE {#l1_ap_ram_size} |
| # ## description |
| # > AR_RAM_SIZE is used to set AP RAM size. \n |
| # |
| # value | definition |
| # :-------- | :-------------- |
| # Hex | RAM Size of AP side |
| # |
| # ## present value |
| AP_RAM_SIZE = "0x08000000" |
| |