同步操作将从 OneOS/OneOS 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#==========================================================================menu "Hardware information"config MICROPY_HW_MCU_NAMEstring "Set micropython mcu name"default "stm32l475"config MICROPYTHON_RAM_SIZEint "The maximum memory size of micropython (KB)"default 16config MICROPYTHON_RAM_STARThex "The start memory adress of micropython"default 0x10000000config MICROPYTHON_USING_REPLbool "Use micropython repl"default yconfig MICROPY_USING_FILESYSTEMbool "MicroPython in filesystem environment"select OS_USING_VFSselect OS_USING_AUTO_MOUNTselect OS_USING_VFS_FATFSdefault nendmenumenu "Micropython std-libs and micro-libs"config MICROPY_USING_THREADbool "thread: multi-thread/task module"default nif MICROPY_USING_THREADconfig MP_THREAD_MAX_NUMint "maximum number of thread"default 10endifconfig MICROPY_USING_MATHbool "math: mathematical functions"default nif MICROPY_USING_MATHconfig MICROPY_USING_MATH_SPECIAL_FUNCTIONSbool "provide special math functions: math.{erf,erfc,gamma,lgamma}"default nconfig MICROPY_USING_MATH_FACTORIALbool "provide math.factorial function"default nconfig MICROPY_USING_MATH_ISCLOSEbool "provide math.isclose function"default nendifconfig MICROPY_USING_UBINASCIIbool "ubinascii: binary/ASCII conversions"default nif MICROPY_USING_UBINASCIIconfig MICROPY_USING_UBINASCII_CRC32bool "Compute CRC-32"default nendifconfig MICROPY_USING_COLLECTIONSbool "ucollections: collection and container types"default nif MICROPY_USING_COLLECTIONSconfig MICROPY_USING_COLLECTIONS_DEQUEbool "provide ucollections.deque type"default nconfig MICROPY_USING_COLLECTIONS_ORDEREDDICTbool "provide ucollections.OrderedDict type"default nconfig MICROPY_USING_COLLECTIONS_NAMEDTUPLE__ASDICTbool "provide the _asdict function for namedtuple"select MICROPY_USING_COLLECTIONS_ORDEREDDICTdefault nendif#----------------config MICROPY_USING_ARRAYbool "uarray: arrays of numeric data"default nconfig MICROPY_USING_UHASHLIBbool "uhashlib: hashing algorithms"default nif MICROPY_USING_UHASHLIBconfig MICROPY_USING_UHASHLIB_SHA256bool "provide SHA256 algorithms"default y# config MICROPY_USING_UHASHLIB_MD5# bool "provide MD5 algorithms"# default n# config MICROPY_USING_UHASHLIB_SHA1# bool "provide SHA1 algorithms"# default nendif#----------------config MICROPY_USING_USSLbool "ussl: SSL/TLS module"select MICROPY_USING_UHASHLIB# select MICROPY_USING_UHASHLIB_MD5# select MICROPY_USING_UHASHLIB_SHA1default nif MICROPY_USING_USSLchoiceprompt "ssl type"default MICROPY_USING_SSL_MBEDTLS#config MICROPY_USING_SSL_AXTLS# bool "axTLS ssl"config MICROPY_USING_SSL_MBEDTLSbool "mbedTLS ssl"endchoiceendifconfig MICROPY_USING_USOCKETbool "usocket: socket module"default nconfig MICROPY_USING_USELECTbool "uselect: wait for events on a set of streams"default nconfig MICROPY_USING_UHEAPQbool "uheapq: heap queue algorithm"default nconfig MICROPY_USING_UJSONbool "ujson: JSON encoding and decoding"default nconfig MICROPY_USING_UREbool "ure: simple regular expressions"default nif MICROPY_USING_UREconfig MICROPY_USING_URE_DEBUGbool "provide ure.DEBUG function"default nconfig MICROPY_USING_URE_MATCH_GROUPSbool "provide groups function for ure.match/search"default nconfig MICROPY_USING_URE_MATCH_SPAN_START_ENDbool "provide span/start/end function for ure.match/search"default nconfig MICROPY_USING_URE_SUBbool "provide ure.sub function"default nendifconfig MICROPY_USING_UZLIBbool "uzlib: zlib decompression"default nconfig MICROPY_USING_UTIMEbool "utime: time/utime module"select MICROPY_PY_RTCselect PKG_MICROPYTHON_MACHINE_BUSdefault nendmenu#==========================================================================menu "Micropython specific-libs"config MICROPY_USING_UCTYPESbool "uctypes: access binary data in a structured way"default nconfig MICROPY_USING_UCRYPTOLIBbool "ucryptolib: cryptographic ciphers"select SECURITY_USING_MBEDTLSselect MICROPY_USING_USSLdefault n#config MICROPY_USING_POSITION# bool "position: oneos micropython position"# select OS_USING_OnePos# default n#config MICROPY_USING_WIFISCAN# bool "wifiscan: scan wifi aps"# default nconfig MICROPY_USING_URANDOMbool "urandom: random number generator"default n#config MICROPY_USING_FOTA# bool "fota: oneos micropython FOTA"# select FOTA_USING_CMIOT# default n#config MICROPY_USING_MO_NETWORK# bool "net: network of sim related molink"# default n#config MICROPY_USING_SYSMISC# bool "sysmisc: micropython sys misc"# default n# config MICROPY_USING_VIRTUAL_AT# bool "virat: micropython virtual at"# default n#config MICROPY_USING_CODECS# bool "codecs: micropython charset convert"# select PKG_USING_OPENCC# default nmenuconfig PKG_MICROPYTHON_MACHINE_BUSbool "machine: Enable micropython machine module"default nif PKG_MICROPYTHON_MACHINE_BUSconfig MICROPY_PY_ADCbool "adc: Enable micropython machine module"select OS_USING_ADCdefault nif MICROPY_PY_ADCconfig MICROPYTHON_MACHINE_ADC_PRENAMEstring "similar adc devices prename"default "adc"endifconfig MICROPY_PY_CANbool "can: Enable micropython machine module"select OS_USING_CANdefault nif MICROPY_PY_CANconfig MICROPYTHON_MACHINE_CAN_PRENAMEstring "Set similar can devices prename"default "can"endifconfig MICROPY_PY_DACbool "dac: Enable micropython machine module"select OS_USING_DACdefault nif MICROPY_PY_DACconfig MICROPYTHON_MACHINE_DAC_PRENAMEstring "Set similar dac devices prename"default "dac"endifconfig MICROPY_PY_I2Cbool "i2c: Enable micropython machine module"#select MICROPY_PY_PINselect OS_USING_I2Cdefault nif MICROPY_PY_I2Cconfig MICROPYTHON_MACHINE_I2C_PRENAMEstring "Set similar i2c devices prename"default "i2c"endifconfig MICROPY_PY_SPIbool "spi: Enable micropython machine module"select MICROPY_PY_PINselect OS_USING_SPIdefault nif MICROPY_PY_SPIconfig MICROPYTHON_MACHINE_SPI_PRENAMEstring "Set similar spi devices prename"default "spi"endifconfig MICROPY_PY_UARTbool "uart: Enable micropython machine module"select OS_USING_SERIALdefault nif MICROPY_PY_UARTconfig MICROPYTHON_MACHINE_UART_PRENAMEstring "Set similar uart devices prename"default "uart"endifconfig MICROPY_PY_PWMbool "pwm: Enable micropython machine module"select OS_USING_PWMdefault nif MICROPY_PY_PWMconfig MICROPYTHON_MACHINE_PWM_PRENAMEstring "Set similar pwm devices prename"default "pwm"endifconfig MICROPY_PY_WDTbool "wdt: Enable micropython machine module"select OS_USING_WDGdefault nif MICROPY_PY_WDTconfig MICROPYTHON_MACHINE_WDT_NAMEstring "Set wdt device name"default "wdg"endifconfig MICROPY_PY_PINbool "pin: Enable micropython machine module"select OS_USING_PINdefault nconfig MICROPY_PY_RTCbool "rtc: Enable micropython machine module"select OS_USING_RTCdefault nconfig MICROPY_PY_TIMERbool "timer: Enable micropython machine module"default n#config MICROPY_PY_PM# bool "pm: Enable micropython machine module"# select OS_USING_LPMGR# default nendifmenuconfig PKG_MICROPYTHON_DEVICEbool "device: Enable micropython device module"default nif PKG_MICROPYTHON_DEVICEconfig MICROPY_DEVICE_AUDIObool "audio: Enable device module"select OS_USING_AUDIOdefault nif MICROPY_DEVICE_AUDIOconfig MICROPYTHON_DEVICE_AUDIO_NAMEstring "Set audio device name"default "audio0"endifconfig MICROPY_DEVICE_BEEPbool "beep: Enable device module"default nconfig MICROPY_DEVICE_KEYbool "key: Enable device module"default nconfig MICROPY_DEVICE_LCDbool "lcd: Enable device module(only supports ST7789VW)"select OS_USING_GRAPHICselect OS_USING_ST7789VWselect OS_GRAPHIC_DRAW_ENABLEdefault nconfig MICROPY_DEVICE_LEDbool "led: Enable device module"default nconfig MICROPY_DEVICE_HUMITUREbool "humiture: Enable sensor module"default nif MICROPY_DEVICE_HUMITUREconfig MICROPYTHON_DEVICE_HUMIDITY_NAMEstring "Set humidity sensor name"default "humi_aht10"config MICROPYTHON_DEVICE_TEMPERATURE_NAMEstring "Set temperature sensor name"default "temp_aht10"endifconfig MICROPY_DEVICE_SIX_AXISbool "six_axis: Enable sensor module"default nif MICROPY_DEVICE_SIX_AXISconfig MICROPYTHON_DEVICE_GGYROSCOPE_NAMEstring "Set gyroscope sensor name"default "gyro_icm20602"config MICROPYTHON_DEVICE_ACCELEROMETER_NAMEstring "Set accelerometer sensor name"default "acce_icm20602"endifconfig MICROPY_DEVICE_ALS_PSbool "als_ps: Enable sensor module"default nif MICROPY_DEVICE_ALS_PSconfig MICROPYTHON_DEVICE_LIGHTSENSOR_NAMEstring "Set light sensor name"default "li_ap3216c"config MICROPYTHON_DEVICE_PROXIMITY_NAMEstring "Set proximity sensor name"default "pr_ap3216c"endifendifendmenu#==========================================================================menu "Micropython debug mode"config MICROPY_USING_DEBUG_MODEbool "Enable debug mode"default nendmenu#==========================================================================
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。