├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── .travis.yml ├── LICENSE ├── README.md ├── client └── ovms_v3shell.pl ├── docs ├── Makefile ├── README.md ├── make.bat ├── other │ └── Renault-Twizy │ │ └── Twizy-Powermap-Calculator-Tbrk.ods └── source │ ├── _static │ ├── clipboard.min.js │ ├── copy-button.svg │ ├── copybutton.css │ ├── copybutton.js │ └── theme_overrides.css │ ├── cli │ └── index.rst │ ├── components │ ├── conf.py │ ├── crtd │ ├── can_logging.rst │ └── index.rst │ ├── docs │ ├── index.rst │ ├── introduction.rst │ ├── plugin │ ├── protocol_httpapi │ ├── authentication.rst │ ├── format.rst │ ├── index.rst │ ├── requests.rst │ └── welcome.rst │ ├── protocol_v2 │ ├── auto_provisioning.rst │ ├── backwards_compatibility.rst │ ├── commands.rst │ ├── encryption_scheme_0x30.rst │ ├── encryption_scheme_0x31.rst │ ├── index.rst │ ├── messages.rst │ ├── startup.rst │ ├── terms.rst │ └── welcome.rst │ ├── requirements.txt │ ├── server │ ├── index.rst │ ├── installation.rst │ ├── plugins.rst │ └── welcome.rst │ └── userguide │ ├── boot.rst │ ├── commands.rst │ ├── components.rst │ ├── configuration.rst │ ├── console.rst │ ├── da26-pinout.png │ ├── ecu.rst │ ├── egpio.rst │ ├── events.rst │ ├── factory.rst │ ├── factoryreset.png │ ├── homeassistant.rst │ ├── index.rst │ ├── installation.rst │ ├── kline-1.jpg │ ├── kline-2.jpg │ ├── kline.rst │ ├── locations.rst │ ├── logging.png │ ├── logging.rst │ ├── metrics.rst │ ├── module1.jpg │ ├── module2.jpg │ ├── notifications.rst │ ├── ota.rst │ ├── ovms-intro.jpg │ ├── prototyping-pcb-top.png │ ├── prototyping-pcb.jpg │ ├── scripting.rst │ ├── setup1.jpg │ ├── setup2.jpg │ ├── setup3.jpg │ ├── setup4.jpg │ ├── setup5.jpg │ ├── setup6.jpg │ ├── setup7.png │ ├── slide-image-1.jpg │ ├── slide-image-2.jpg │ ├── slide-image-3.jpg │ ├── slide-image-4.jpg │ ├── ssltls.rst │ ├── time.rst │ ├── tpms.rst │ ├── vfs.rst │ ├── warning.png │ ├── warnings.rst │ ├── webui.rst │ ├── wifi.rst │ └── wifi │ ├── access-point.rst │ ├── client.rst │ ├── wifi-1.png │ ├── wifi-2.png │ ├── wifi-autostart-ap-1.png │ ├── wifi-autostart-ap-2.png │ ├── wifi-autostart-client-1.png │ └── wifi-autostart-client-2.png ├── flyer ├── OVMS-A5.pdf ├── OVMS-A5.xcf ├── OVMS-minimal.png ├── OVMS-supported-vehicles .ods ├── Quickstart-Info.odt └── Quickstart-Info.pdf ├── logo ├── OVMS_icon.png ├── OVMS_icon.svg ├── OVMS_logo.eps ├── OVMS_logo2.png ├── OVMS_logo2.svg ├── OVMS_logo3.png ├── OVMS_logo3.svg ├── OVMS_logo_1024.png ├── OVMS_logo_114.png ├── OVMS_logo_512.png ├── OVMS_logo_57.png ├── OVMS_logo_72.png ├── OVMS_logob_1024.png ├── OVMS_logob_114.png ├── OVMS_logob_512.png ├── OVMS_logob_57.png ├── OVMS_logob_72.png ├── OVMS_logobaw_1024.png └── OVMS_logobaw_1024.pxm ├── plugin ├── README.rst ├── abrp │ └── README.rst ├── auxbatmon │ ├── README.rst │ ├── auxbatmon-screenshot.png │ ├── auxbatmon.htm │ └── auxbatmon.js ├── chgind │ ├── README.rst │ └── chgind.js ├── edimax │ ├── README.rst │ ├── edimax-status.htm │ ├── edimax.htm │ └── edimax.js ├── foglight │ ├── README.rst │ ├── foglight.htm │ └── foglight.js ├── pwrmon │ ├── README.rst │ ├── pwrmon-screenshot.png │ ├── pwrmon.htm │ └── pwrmon.js ├── regenmon │ ├── README.rst │ └── regenmon.htm ├── repidscan │ ├── README.rst │ ├── repidscan-screenshot.png │ └── repidscan.htm ├── tasmotasp ├── v-twizy │ ├── README.rst │ ├── dashboard-tuneslider │ │ ├── README.rst │ │ └── dashboard-tuneslider.htm │ ├── edriverbms │ │ ├── README.rst │ │ ├── edrvmon-screenshot.png │ │ └── edrvmon.htm │ ├── page-command │ │ ├── README.rst │ │ ├── page-command-screenshot.jpg │ │ └── page-command.html │ └── wificonsole │ │ ├── README.rst │ │ └── WifiConsole.js └── v-vweup │ ├── README.rst │ └── ecutoolkit │ ├── README.rst │ ├── ecutoolkit-coding.png │ ├── ecutoolkit-scan.png │ ├── xvu-ecu-tool.htm │ └── xvu-ecu.js ├── plugins ├── abrp │ └── README.rst ├── auxbatmon │ ├── README.rst │ ├── auxbatmon-screenshot.png │ ├── auxbatmon.htm │ ├── auxbatmon.js │ └── auxbatmon.json ├── chgind │ ├── README.rst │ ├── chgind.js │ └── chgind.json ├── chgthrottle │ ├── README.rst │ ├── chgthrottle.js │ └── chgthrottle.json ├── edimax │ ├── README.rst │ ├── edimax-status.htm │ ├── edimax.htm │ ├── edimax.js │ └── edimax.json ├── foglight │ ├── README.rst │ ├── foglight.htm │ ├── foglight.js │ └── foglight.json ├── helloworld │ ├── helloworld.js │ └── helloworld.json ├── pwrmon │ ├── README.rst │ ├── pwrmon-screenshot.png │ ├── pwrmon.htm │ ├── pwrmon.js │ └── pwrmon.json ├── regenmon │ ├── README.rst │ ├── regenmon.htm │ └── regenmon.json ├── repidscan │ ├── README.rst │ ├── repidscan-screenshot.png │ ├── repidscan.htm │ └── repidscan.json ├── retools │ ├── README.rst │ ├── retools-screenshot.png │ ├── retools.htm │ └── retools.json └── tasmotasp │ ├── README.rst │ ├── tasmotasp-status.htm │ ├── tasmotasp.htm │ ├── tasmotasp.js │ └── tasmotasp.json └── vehicle ├── OVMS.V3 ├── .cproject ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── changes.txt ├── components │ ├── can │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── can.cpp │ │ │ ├── can.h │ │ │ ├── canformat.cpp │ │ │ ├── canformat.h │ │ │ ├── canformat_canswitch.cpp │ │ │ ├── canformat_canswitch.h │ │ │ ├── canformat_crtd.cpp │ │ │ ├── canformat_crtd.h │ │ │ ├── canformat_gvret.cpp │ │ │ ├── canformat_gvret.h │ │ │ ├── canformat_lawicel.cpp │ │ │ ├── canformat_lawicel.h │ │ │ ├── canformat_panda.cpp │ │ │ ├── canformat_panda.h │ │ │ ├── canformat_pcap.cpp │ │ │ ├── canformat_pcap.h │ │ │ ├── canformat_raw.cpp │ │ │ ├── canformat_raw.h │ │ │ ├── canlog.cpp │ │ │ ├── canlog.h │ │ │ ├── canlog_monitor.cpp │ │ │ ├── canlog_monitor.h │ │ │ ├── canlog_tcpclient.cpp │ │ │ ├── canlog_tcpclient.h │ │ │ ├── canlog_tcpserver.cpp │ │ │ ├── canlog_tcpserver.h │ │ │ ├── canlog_udpclient.cpp │ │ │ ├── canlog_udpclient.h │ │ │ ├── canlog_udpserver.cpp │ │ │ ├── canlog_udpserver.h │ │ │ ├── canlog_vfs.cpp │ │ │ ├── canlog_vfs.h │ │ │ ├── canplay.cpp │ │ │ ├── canplay.h │ │ │ ├── canplay_vfs.cpp │ │ │ ├── canplay_vfs.h │ │ │ ├── canutils.cpp │ │ │ └── canutils.h │ ├── canopen │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── API.rst │ │ │ ├── Commands.rst │ │ │ ├── Commands.txt │ │ │ ├── Howto-detect-CANopen-nodes.rst │ │ │ ├── Howto-detect-CANopen-nodes.txt │ │ │ ├── Intro.rst │ │ │ ├── Test-Frames.txt │ │ │ ├── Test-Session-1.txt │ │ │ ├── Usage.cpp │ │ │ └── index.rst │ │ └── src │ │ │ ├── canopen.cpp │ │ │ ├── canopen.h │ │ │ ├── canopen_client.cpp │ │ │ ├── canopen_shell.cpp │ │ │ └── canopen_worker.cpp │ ├── console │ │ ├── CMakeLists.txt │ │ ├── argtable3 │ │ │ ├── LICENSE │ │ │ ├── argtable3.c │ │ │ └── argtable3.h │ │ ├── commands.c │ │ ├── component.mk │ │ ├── esp_console.h │ │ ├── linenoise │ │ │ ├── LICENSE │ │ │ ├── linenoise.c │ │ │ └── linenoise.h │ │ └── split_argv.c │ ├── console_ssh │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── console_ssh.cpp │ │ │ └── console_ssh.h │ ├── console_telnet │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── console_telnet.cpp │ │ │ └── console_telnet.h │ ├── crypto │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── crypt_base64.cpp │ │ ├── crypt_base64.h │ │ ├── crypt_crc.cpp │ │ ├── crypt_crc.h │ │ ├── crypt_hmac.cpp │ │ ├── crypt_hmac.h │ │ ├── crypt_md5.cpp │ │ ├── crypt_md5.h │ │ ├── crypt_rc4.cpp │ │ └── crypt_rc4.h │ ├── dbc │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── src │ │ │ ├── dbc.cpp │ │ │ ├── dbc.h │ │ │ ├── dbc_app.cpp │ │ │ ├── dbc_app.h │ │ │ ├── dbc_number.cpp │ │ │ ├── dbc_number.h │ │ │ ├── dbc_parser.y │ │ │ └── dbc_tokeniser.l │ │ └── yacclex │ │ │ └── readme.txt │ ├── duktape │ │ ├── AUTHORS.rst │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── Makefile.cmdline │ │ ├── Makefile.codepage │ │ ├── Makefile.coffee │ │ ├── Makefile.dukdebug │ │ ├── Makefile.eval │ │ ├── Makefile.eventloop │ │ ├── Makefile.hello │ │ ├── Makefile.jsoncbor │ │ ├── Makefile.jxpretty │ │ ├── Makefile.sandbox │ │ ├── Makefile.sharedlibrary │ │ ├── README.rst │ │ ├── component.mk │ │ ├── config │ │ │ ├── README.rst │ │ │ ├── architectures.yaml │ │ │ ├── architectures │ │ │ │ ├── architecture_arm32.h.in │ │ │ │ ├── architecture_arm64.h.in │ │ │ │ ├── architecture_emscripten.h.in │ │ │ │ ├── architecture_generic.h.in │ │ │ │ ├── architecture_m68k.h.in │ │ │ │ ├── architecture_mips32.h.in │ │ │ │ ├── architecture_mips64.h.in │ │ │ │ ├── architecture_powerpc32.h.in │ │ │ │ ├── architecture_powerpc64.h.in │ │ │ │ ├── architecture_riscv32.h.in │ │ │ │ ├── architecture_riscv64.h.in │ │ │ │ ├── architecture_sparc32.h.in │ │ │ │ ├── architecture_sparc64.h.in │ │ │ │ ├── architecture_superh.h.in │ │ │ │ ├── architecture_x32.h.in │ │ │ │ ├── architecture_x64.h.in │ │ │ │ └── architecture_x86.h.in │ │ │ ├── compilers.yaml │ │ │ ├── compilers │ │ │ │ ├── compiler_bcc.h.in │ │ │ │ ├── compiler_clang.h.in │ │ │ │ ├── compiler_emscripten.h.in │ │ │ │ ├── compiler_gcc.h.in │ │ │ │ ├── compiler_generic.h.in │ │ │ │ ├── compiler_msvc.h.in │ │ │ │ ├── compiler_tinyc.h.in │ │ │ │ └── compiler_vbcc.h.in │ │ │ ├── config-options │ │ │ │ ├── DUK_USE_32BIT_PTRS.yaml │ │ │ │ ├── DUK_USE_64BIT_OPS.yaml │ │ │ │ ├── DUK_USE_ALIGN_4.yaml │ │ │ │ ├── DUK_USE_ALIGN_8.yaml │ │ │ │ ├── DUK_USE_ALIGN_BY.yaml │ │ │ │ ├── DUK_USE_ALLOW_UNDEFINED_BEHAVIOR.yaml │ │ │ │ ├── DUK_USE_ARCH_STRING.yaml │ │ │ │ ├── DUK_USE_ARRAY_BUILTIN.yaml │ │ │ │ ├── DUK_USE_ARRAY_FASTPATH.yaml │ │ │ │ ├── DUK_USE_ARRAY_PROP_FASTPATH.yaml │ │ │ │ ├── DUK_USE_ASSERTIONS.yaml │ │ │ │ ├── DUK_USE_ATAN2_WORKAROUNDS.yaml │ │ │ │ ├── DUK_USE_AUGMENT_ERROR_CREATE.yaml │ │ │ │ ├── DUK_USE_AUGMENT_ERROR_THROW.yaml │ │ │ │ ├── DUK_USE_AVOID_PLATFORM_FUNCPTRS.yaml │ │ │ │ ├── DUK_USE_BASE64_FASTPATH.yaml │ │ │ │ ├── DUK_USE_BASE64_SUPPORT.yaml │ │ │ │ ├── DUK_USE_BOOLEAN_BUILTIN.yaml │ │ │ │ ├── DUK_USE_BRANCH_HINTS.yaml │ │ │ │ ├── DUK_USE_BROWSER_LIKE.yaml │ │ │ │ ├── DUK_USE_BUFFEROBJECT_SUPPORT.yaml │ │ │ │ ├── DUK_USE_BUFLEN16.yaml │ │ │ │ ├── DUK_USE_BUILTIN_INITJS.yaml │ │ │ │ ├── DUK_USE_BYTECODE_DUMP_SUPPORT.yaml │ │ │ │ ├── DUK_USE_BYTEORDER.yaml │ │ │ │ ├── DUK_USE_BYTEORDER_FORCED.yaml │ │ │ │ ├── DUK_USE_CACHE_ACTIVATION.yaml │ │ │ │ ├── DUK_USE_CACHE_CATCHER.yaml │ │ │ │ ├── DUK_USE_CALLSTACK_LIMIT.yaml │ │ │ │ ├── DUK_USE_CBOR_BUILTIN.yaml │ │ │ │ ├── DUK_USE_CBOR_SUPPORT.yaml │ │ │ │ ├── DUK_USE_CLANG_PRAGMAS.yaml │ │ │ │ ├── DUK_USE_COMMONJS_MODULES.yaml │ │ │ │ ├── DUK_USE_COMPILER_RECLIMIT.yaml │ │ │ │ ├── DUK_USE_COMPILER_STRING.yaml │ │ │ │ ├── DUK_USE_COMPUTED_INFINITY.yaml │ │ │ │ ├── DUK_USE_COMPUTED_NAN.yaml │ │ │ │ ├── DUK_USE_COROUTINE_SUPPORT.yaml │ │ │ │ ├── DUK_USE_CPP_EXCEPTIONS.yaml │ │ │ │ ├── DUK_USE_DATAPTR16.yaml │ │ │ │ ├── DUK_USE_DATAPTR_DEC16.yaml │ │ │ │ ├── DUK_USE_DATAPTR_ENC16.yaml │ │ │ │ ├── DUK_USE_DATE_BUILTIN.yaml │ │ │ │ ├── DUK_USE_DATE_FMT_STRFTIME.yaml │ │ │ │ ├── DUK_USE_DATE_FORMAT_STRING.yaml │ │ │ │ ├── DUK_USE_DATE_GET_LOCAL_TZOFFSET.yaml │ │ │ │ ├── DUK_USE_DATE_GET_NOW.yaml │ │ │ │ ├── DUK_USE_DATE_NOW_GETTIMEOFDAY.yaml │ │ │ │ ├── DUK_USE_DATE_NOW_TIME.yaml │ │ │ │ ├── DUK_USE_DATE_NOW_WINDOWS.yaml │ │ │ │ ├── DUK_USE_DATE_NOW_WINDOWS_SUBMS.yaml │ │ │ │ ├── DUK_USE_DATE_PARSE_STRING.yaml │ │ │ │ ├── DUK_USE_DATE_PRS_GETDATE.yaml │ │ │ │ ├── DUK_USE_DATE_PRS_STRPTIME.yaml │ │ │ │ ├── DUK_USE_DATE_TZO_GMTIME.yaml │ │ │ │ ├── DUK_USE_DATE_TZO_GMTIME_R.yaml │ │ │ │ ├── DUK_USE_DATE_TZO_GMTIME_S.yaml │ │ │ │ ├── DUK_USE_DATE_TZO_WINDOWS.yaml │ │ │ │ ├── DUK_USE_DATE_TZO_WINDOWS_NO_DST.yaml │ │ │ │ ├── DUK_USE_DDDPRINT.yaml │ │ │ │ ├── DUK_USE_DDPRINT.yaml │ │ │ │ ├── DUK_USE_DEBUG.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_DUMPHEAP.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_FWD_LOGGING.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_FWD_PRINTALERT.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_INSPECT.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_PAUSE_UNCAUGHT.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_SUPPORT.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_THROW_NOTIFY.yaml │ │ │ │ ├── DUK_USE_DEBUGGER_TRANSPORT_TORTURE.yaml │ │ │ │ ├── DUK_USE_DEBUG_BUFSIZE.yaml │ │ │ │ ├── DUK_USE_DEBUG_LEVEL.yaml │ │ │ │ ├── DUK_USE_DEBUG_WRITE.yaml │ │ │ │ ├── DUK_USE_DEEP_C_STACK.yaml │ │ │ │ ├── DUK_USE_DOUBLE_BE.yaml │ │ │ │ ├── DUK_USE_DOUBLE_LE.yaml │ │ │ │ ├── DUK_USE_DOUBLE_LINKED_HEAP.yaml │ │ │ │ ├── DUK_USE_DOUBLE_ME.yaml │ │ │ │ ├── DUK_USE_DPRINT.yaml │ │ │ │ ├── DUK_USE_DPRINT_COLORS.yaml │ │ │ │ ├── DUK_USE_DPRINT_RDTSC.yaml │ │ │ │ ├── DUK_USE_DUKTAPE_BUILTIN.yaml │ │ │ │ ├── DUK_USE_ENCODING_BUILTINS.yaml │ │ │ │ ├── DUK_USE_ERRCREATE.yaml │ │ │ │ ├── DUK_USE_ERRTHROW.yaml │ │ │ │ ├── DUK_USE_ES6.yaml │ │ │ │ ├── DUK_USE_ES6_OBJECT_PROTO_PROPERTY.yaml │ │ │ │ ├── DUK_USE_ES6_OBJECT_SETPROTOTYPEOF.yaml │ │ │ │ ├── DUK_USE_ES6_PROXY.yaml │ │ │ │ ├── DUK_USE_ES6_REGEXP_BRACES.yaml │ │ │ │ ├── DUK_USE_ES6_REGEXP_SYNTAX.yaml │ │ │ │ ├── DUK_USE_ES6_UNICODE_ESCAPE.yaml │ │ │ │ ├── DUK_USE_ES7.yaml │ │ │ │ ├── DUK_USE_ES7_EXP_OPERATOR.yaml │ │ │ │ ├── DUK_USE_ES8.yaml │ │ │ │ ├── DUK_USE_ES9.yaml │ │ │ │ ├── DUK_USE_ESBC_LIMITS.yaml │ │ │ │ ├── DUK_USE_ESBC_MAX_BYTES.yaml │ │ │ │ ├── DUK_USE_ESBC_MAX_LINENUMBER.yaml │ │ │ │ ├── DUK_USE_EXAMPLE.yaml │ │ │ │ ├── DUK_USE_EXEC_FUN_LOCAL.yaml │ │ │ │ ├── DUK_USE_EXEC_INDIRECT_BOUND_CHECK.yaml │ │ │ │ ├── DUK_USE_EXEC_PREFER_SIZE.yaml │ │ │ │ ├── DUK_USE_EXEC_REGCONST_OPTIMIZE.yaml │ │ │ │ ├── DUK_USE_EXEC_TIMEOUT_CHECK.yaml │ │ │ │ ├── DUK_USE_EXPLICIT_NULL_INIT.yaml │ │ │ │ ├── DUK_USE_EXTSTR_FREE.yaml │ │ │ │ ├── DUK_USE_EXTSTR_INTERN_CHECK.yaml │ │ │ │ ├── DUK_USE_FASTINT.yaml │ │ │ │ ├── DUK_USE_FAST_REFCOUNT_DEFAULT.yaml │ │ │ │ ├── DUK_USE_FATAL_HANDLER.yaml │ │ │ │ ├── DUK_USE_FATAL_MAXLEN.yaml │ │ │ │ ├── DUK_USE_FILE_IO.yaml │ │ │ │ ├── DUK_USE_FINALIZER_SUPPORT.yaml │ │ │ │ ├── DUK_USE_FINALIZER_TORTURE.yaml │ │ │ │ ├── DUK_USE_FLEX_C99.yaml │ │ │ │ ├── DUK_USE_FLEX_ONESIZE.yaml │ │ │ │ ├── DUK_USE_FLEX_ZEROSIZE.yaml │ │ │ │ ├── DUK_USE_FULL_TVAL.yaml │ │ │ │ ├── DUK_USE_FUNCPTR16.yaml │ │ │ │ ├── DUK_USE_FUNCPTR_DEC16.yaml │ │ │ │ ├── DUK_USE_FUNCPTR_ENC16.yaml │ │ │ │ ├── DUK_USE_FUNCTION_BUILTIN.yaml │ │ │ │ ├── DUK_USE_FUNC_FILENAME_PROPERTY.yaml │ │ │ │ ├── DUK_USE_FUNC_NAME_PROPERTY.yaml │ │ │ │ ├── DUK_USE_GCC_PRAGMAS.yaml │ │ │ │ ├── DUK_USE_GC_TORTURE.yaml │ │ │ │ ├── DUK_USE_GET_MONOTONIC_TIME.yaml │ │ │ │ ├── DUK_USE_GET_MONOTONIC_TIME_CLOCK_GETTIME.yaml │ │ │ │ ├── DUK_USE_GET_MONOTONIC_TIME_WINDOWS_QPC.yaml │ │ │ │ ├── DUK_USE_GET_RANDOM_DOUBLE.yaml │ │ │ │ ├── DUK_USE_GLOBAL_BINDING.yaml │ │ │ │ ├── DUK_USE_GLOBAL_BUILTIN.yaml │ │ │ │ ├── DUK_USE_HASHBYTES_UNALIGNED_U32_ACCESS.yaml │ │ │ │ ├── DUK_USE_HEAPPTR16.yaml │ │ │ │ ├── DUK_USE_HEAPPTR_DEC16.yaml │ │ │ │ ├── DUK_USE_HEAPPTR_ENC16.yaml │ │ │ │ ├── DUK_USE_HEX_FASTPATH.yaml │ │ │ │ ├── DUK_USE_HEX_SUPPORT.yaml │ │ │ │ ├── DUK_USE_HOBJECT_ARRAY_ABANDON_LIMIT.yaml │ │ │ │ ├── DUK_USE_HOBJECT_ARRAY_ABANDON_MINSIZE.yaml │ │ │ │ ├── DUK_USE_HOBJECT_ARRAY_FAST_RESIZE_LIMIT.yaml │ │ │ │ ├── DUK_USE_HOBJECT_ARRAY_MINGROW_ADD.yaml │ │ │ │ ├── DUK_USE_HOBJECT_ARRAY_MINGROW_DIVISOR.yaml │ │ │ │ ├── DUK_USE_HOBJECT_ENTRY_MINGROW_ADD.yaml │ │ │ │ ├── DUK_USE_HOBJECT_ENTRY_MINGROW_DIVISOR.yaml │ │ │ │ ├── DUK_USE_HOBJECT_HASH_PART.yaml │ │ │ │ ├── DUK_USE_HOBJECT_HASH_PROP_LIMIT.yaml │ │ │ │ ├── DUK_USE_HOBJECT_LAYOUT_1.yaml │ │ │ │ ├── DUK_USE_HOBJECT_LAYOUT_2.yaml │ │ │ │ ├── DUK_USE_HOBJECT_LAYOUT_3.yaml │ │ │ │ ├── DUK_USE_HSTRING_ARRIDX.yaml │ │ │ │ ├── DUK_USE_HSTRING_CLEN.yaml │ │ │ │ ├── DUK_USE_HSTRING_EXTDATA.yaml │ │ │ │ ├── DUK_USE_HSTRING_LAZY_CLEN.yaml │ │ │ │ ├── DUK_USE_HTML_COMMENTS.yaml │ │ │ │ ├── DUK_USE_IDCHAR_FASTPATH.yaml │ │ │ │ ├── DUK_USE_INJECT_HEAP_ALLOC_ERROR.yaml │ │ │ │ ├── DUK_USE_INTEGER_BE.yaml │ │ │ │ ├── DUK_USE_INTEGER_LE.yaml │ │ │ │ ├── DUK_USE_INTEGER_ME.yaml │ │ │ │ ├── DUK_USE_INTERRUPT_COUNTER.yaml │ │ │ │ ├── DUK_USE_INTERRUPT_DEBUG_FIXUP.yaml │ │ │ │ ├── DUK_USE_JC.yaml │ │ │ │ ├── DUK_USE_JSON_BUILTIN.yaml │ │ │ │ ├── DUK_USE_JSON_DECNUMBER_FASTPATH.yaml │ │ │ │ ├── DUK_USE_JSON_DECSTRING_FASTPATH.yaml │ │ │ │ ├── DUK_USE_JSON_DEC_RECLIMIT.yaml │ │ │ │ ├── DUK_USE_JSON_EATWHITE_FASTPATH.yaml │ │ │ │ ├── DUK_USE_JSON_ENC_RECLIMIT.yaml │ │ │ │ ├── DUK_USE_JSON_QUOTESTRING_FASTPATH.yaml │ │ │ │ ├── DUK_USE_JSON_STRINGIFY_FASTPATH.yaml │ │ │ │ ├── DUK_USE_JSON_SUPPORT.yaml │ │ │ │ ├── DUK_USE_JX.yaml │ │ │ │ ├── DUK_USE_LEXER_SLIDING_WINDOW.yaml │ │ │ │ ├── DUK_USE_LIGHTFUNC_BUILTINS.yaml │ │ │ │ ├── DUK_USE_LITCACHE_SIZE.yaml │ │ │ │ ├── DUK_USE_MARKANDSWEEP_FINALIZER_TORTURE.yaml │ │ │ │ ├── DUK_USE_MARK_AND_SWEEP.yaml │ │ │ │ ├── DUK_USE_MARK_AND_SWEEP_RECLIMIT.yaml │ │ │ │ ├── DUK_USE_MATH_BUILTIN.yaml │ │ │ │ ├── DUK_USE_MATH_FMAX.yaml │ │ │ │ ├── DUK_USE_MATH_FMIN.yaml │ │ │ │ ├── DUK_USE_MATH_ROUND.yaml │ │ │ │ ├── DUK_USE_MS_STRINGTABLE_RESIZE.yaml │ │ │ │ ├── DUK_USE_NATIVE_CALL_RECLIMIT.yaml │ │ │ │ ├── DUK_USE_NATIVE_STACK_CHECK.yaml │ │ │ │ ├── DUK_USE_NONSTD_ARRAY_CONCAT_TRAILER.yaml │ │ │ │ ├── DUK_USE_NONSTD_ARRAY_MAP_TRAILER.yaml │ │ │ │ ├── DUK_USE_NONSTD_ARRAY_SPLICE_DELCOUNT.yaml │ │ │ │ ├── DUK_USE_NONSTD_FUNC_CALLER_PROPERTY.yaml │ │ │ │ ├── DUK_USE_NONSTD_FUNC_SOURCE_PROPERTY.yaml │ │ │ │ ├── DUK_USE_NONSTD_FUNC_STMT.yaml │ │ │ │ ├── DUK_USE_NONSTD_GETTER_KEY_ARGUMENT.yaml │ │ │ │ ├── DUK_USE_NONSTD_JSON_ESC_U2028_U2029.yaml │ │ │ │ ├── DUK_USE_NONSTD_REGEXP_DOLLAR_ESCAPE.yaml │ │ │ │ ├── DUK_USE_NONSTD_SETTER_KEY_ARGUMENT.yaml │ │ │ │ ├── DUK_USE_NONSTD_STRING_FROMCHARCODE_32BIT.yaml │ │ │ │ ├── DUK_USE_NO_DOUBLE_ALIASING_SELFTEST.yaml │ │ │ │ ├── DUK_USE_NUMBER_BUILTIN.yaml │ │ │ │ ├── DUK_USE_OBJECT_BUILTIN.yaml │ │ │ │ ├── DUK_USE_OBJSIZES16.yaml │ │ │ │ ├── DUK_USE_OCTAL_SUPPORT.yaml │ │ │ │ ├── DUK_USE_OS_STRING.yaml │ │ │ │ ├── DUK_USE_PACKED_TVAL.yaml │ │ │ │ ├── DUK_USE_PACKED_TVAL_POSSIBLE.yaml │ │ │ │ ├── DUK_USE_PACK_CLANG_ATTR.yaml │ │ │ │ ├── DUK_USE_PACK_DUMMY_MEMBER.yaml │ │ │ │ ├── DUK_USE_PACK_GCC_ATTR.yaml │ │ │ │ ├── DUK_USE_PACK_MSVC_PRAGMA.yaml │ │ │ │ ├── DUK_USE_PANIC_ABORT.yaml │ │ │ │ ├── DUK_USE_PANIC_EXIT.yaml │ │ │ │ ├── DUK_USE_PANIC_HANDLER.yaml │ │ │ │ ├── DUK_USE_PANIC_SEGFAULT.yaml │ │ │ │ ├── DUK_USE_PARANOID_DATE_COMPUTATION.yaml │ │ │ │ ├── DUK_USE_PARANOID_ERRORS.yaml │ │ │ │ ├── DUK_USE_PARANOID_MATH.yaml │ │ │ │ ├── DUK_USE_PC2LINE.yaml │ │ │ │ ├── DUK_USE_PERFORMANCE_BUILTIN.yaml │ │ │ │ ├── DUK_USE_POW_NETBSD_WORKAROUND.yaml │ │ │ │ ├── DUK_USE_POW_WORKAROUNDS.yaml │ │ │ │ ├── DUK_USE_PREFER_SIZE.yaml │ │ │ │ ├── DUK_USE_PROMISE_BUILTIN.yaml │ │ │ │ ├── DUK_USE_PROVIDE_DEFAULT_ALLOC_FUNCTIONS.yaml │ │ │ │ ├── DUK_USE_RDTSC.yaml │ │ │ │ ├── DUK_USE_REFCOUNT16.yaml │ │ │ │ ├── DUK_USE_REFCOUNT32.yaml │ │ │ │ ├── DUK_USE_REFERENCE_COUNTING.yaml │ │ │ │ ├── DUK_USE_REFLECT_BUILTIN.yaml │ │ │ │ ├── DUK_USE_REFZERO_FINALIZER_TORTURE.yaml │ │ │ │ ├── DUK_USE_REGEXP_CANON_BITMAP.yaml │ │ │ │ ├── DUK_USE_REGEXP_CANON_WORKAROUND.yaml │ │ │ │ ├── DUK_USE_REGEXP_COMPILER_RECLIMIT.yaml │ │ │ │ ├── DUK_USE_REGEXP_EXECUTOR_RECLIMIT.yaml │ │ │ │ ├── DUK_USE_REGEXP_SUPPORT.yaml │ │ │ │ ├── DUK_USE_REPL_FPCLASSIFY.yaml │ │ │ │ ├── DUK_USE_REPL_ISFINITE.yaml │ │ │ │ ├── DUK_USE_REPL_ISINF.yaml │ │ │ │ ├── DUK_USE_REPL_ISNAN.yaml │ │ │ │ ├── DUK_USE_REPL_SIGNBIT.yaml │ │ │ │ ├── DUK_USE_ROM_GLOBAL_CLONE.yaml │ │ │ │ ├── DUK_USE_ROM_GLOBAL_INHERIT.yaml │ │ │ │ ├── DUK_USE_ROM_OBJECTS.yaml │ │ │ │ ├── DUK_USE_ROM_PTRCOMP_FIRST.yaml │ │ │ │ ├── DUK_USE_ROM_STRINGS.yaml │ │ │ │ ├── DUK_USE_SECTION_B.yaml │ │ │ │ ├── DUK_USE_SELF_TESTS.yaml │ │ │ │ ├── DUK_USE_SETJMP.yaml │ │ │ │ ├── DUK_USE_SHEBANG_COMMENTS.yaml │ │ │ │ ├── DUK_USE_SHUFFLE_TORTURE.yaml │ │ │ │ ├── DUK_USE_SIGSETJMP.yaml │ │ │ │ ├── DUK_USE_SOURCE_NONBMP.yaml │ │ │ │ ├── DUK_USE_STRHASH16.yaml │ │ │ │ ├── DUK_USE_STRHASH_DENSE.yaml │ │ │ │ ├── DUK_USE_STRHASH_SKIP_SHIFT.yaml │ │ │ │ ├── DUK_USE_STRICT_DECL.yaml │ │ │ │ ├── DUK_USE_STRICT_UTF8_SOURCE.yaml │ │ │ │ ├── DUK_USE_STRING_BUILTIN.yaml │ │ │ │ ├── DUK_USE_STRLEN16.yaml │ │ │ │ ├── DUK_USE_STRTAB_CHAIN.yaml │ │ │ │ ├── DUK_USE_STRTAB_CHAIN_SIZE.yaml │ │ │ │ ├── DUK_USE_STRTAB_GROW_LIMIT.yaml │ │ │ │ ├── DUK_USE_STRTAB_MAXSIZE.yaml │ │ │ │ ├── DUK_USE_STRTAB_MINSIZE.yaml │ │ │ │ ├── DUK_USE_STRTAB_PROBE.yaml │ │ │ │ ├── DUK_USE_STRTAB_PTRCOMP.yaml │ │ │ │ ├── DUK_USE_STRTAB_RESIZE_CHECK_MASK.yaml │ │ │ │ ├── DUK_USE_STRTAB_SHRINK_LIMIT.yaml │ │ │ │ ├── DUK_USE_STRTAB_TORTURE.yaml │ │ │ │ ├── DUK_USE_SYMBOL_BUILTIN.yaml │ │ │ │ ├── DUK_USE_TAILCALL.yaml │ │ │ │ ├── DUK_USE_TARGET_INFO.yaml │ │ │ │ ├── DUK_USE_TRACEBACKS.yaml │ │ │ │ ├── DUK_USE_TRACEBACK_DEPTH.yaml │ │ │ │ ├── DUK_USE_UNALIGNED_ACCESSES_POSSIBLE.yaml │ │ │ │ ├── DUK_USE_UNDERSCORE_SETJMP.yaml │ │ │ │ ├── DUK_USE_UNION_INITIALIZERS.yaml │ │ │ │ ├── DUK_USE_USER_DECLARE.yaml │ │ │ │ ├── DUK_USE_USER_INITJS.yaml │ │ │ │ ├── DUK_USE_VALSTACK_GROW_SHIFT.yaml │ │ │ │ ├── DUK_USE_VALSTACK_LIMIT.yaml │ │ │ │ ├── DUK_USE_VALSTACK_SHRINK_CHECK_SHIFT.yaml │ │ │ │ ├── DUK_USE_VALSTACK_SHRINK_SLACK_SHIFT.yaml │ │ │ │ ├── DUK_USE_VALSTACK_UNSAFE.yaml │ │ │ │ ├── DUK_USE_VARIADIC_MACROS.yaml │ │ │ │ ├── DUK_USE_VERBOSE_ERRORS.yaml │ │ │ │ ├── DUK_USE_VERBOSE_EXECUTOR_ERRORS.yaml │ │ │ │ ├── DUK_USE_VOLUNTARY_GC.yaml │ │ │ │ └── DUK_USE_ZERO_BUFFER_DATA.yaml │ │ │ ├── examples │ │ │ │ ├── compliance.yaml │ │ │ │ ├── debugger_support.yaml │ │ │ │ ├── disable_bufferobjects.yaml │ │ │ │ ├── disable_es6.yaml │ │ │ │ ├── enable_debug_print0.yaml │ │ │ │ ├── enable_debug_print1.yaml │ │ │ │ ├── enable_debug_print2.yaml │ │ │ │ ├── enable_fastint.yaml │ │ │ │ ├── low_memory.yaml │ │ │ │ ├── low_memory_strip.yaml │ │ │ │ ├── performance_sensitive.yaml │ │ │ │ ├── rom_builtins.yaml │ │ │ │ ├── security_sensitive.yaml │ │ │ │ ├── shallow_c_stack.yaml │ │ │ │ └── timing_sensitive.yaml │ │ │ ├── feature-options │ │ │ │ ├── DUK_OPT_ASSERTIONS.yaml │ │ │ │ ├── DUK_OPT_BUFFEROBJECT_SUPPORT.yaml │ │ │ │ ├── DUK_OPT_BUFLEN16.yaml │ │ │ │ ├── DUK_OPT_DATAPTR16.yaml │ │ │ │ ├── DUK_OPT_DATAPTR_DEC16.yaml │ │ │ │ ├── DUK_OPT_DATAPTR_ENC16.yaml │ │ │ │ ├── DUK_OPT_DDDPRINT.yaml │ │ │ │ ├── DUK_OPT_DDPRINT.yaml │ │ │ │ ├── DUK_OPT_DEBUG.yaml │ │ │ │ ├── DUK_OPT_DEBUGGER_DUMPHEAP.yaml │ │ │ │ ├── DUK_OPT_DEBUGGER_FWD_LOGGING.yaml │ │ │ │ ├── DUK_OPT_DEBUGGER_FWD_PRINTALERT.yaml │ │ │ │ ├── DUK_OPT_DEBUGGER_SUPPORT.yaml │ │ │ │ ├── DUK_OPT_DEBUGGER_TRANSPORT_TORTURE.yaml │ │ │ │ ├── DUK_OPT_DEBUG_BUFSIZE.yaml │ │ │ │ ├── DUK_OPT_DECLARE.yaml │ │ │ │ ├── DUK_OPT_DEEP_C_STACK.yaml │ │ │ │ ├── DUK_OPT_DLL_BUILD.yaml │ │ │ │ ├── DUK_OPT_DPRINT.yaml │ │ │ │ ├── DUK_OPT_DPRINT_COLORS.yaml │ │ │ │ ├── DUK_OPT_DPRINT_RDTSC.yaml │ │ │ │ ├── DUK_OPT_EXAMPLE.yaml │ │ │ │ ├── DUK_OPT_EXEC_TIMEOUT_CHECK.yaml │ │ │ │ ├── DUK_OPT_EXTERNAL_STRINGS.yaml │ │ │ │ ├── DUK_OPT_EXTSTR_FREE.yaml │ │ │ │ ├── DUK_OPT_EXTSTR_INTERN_CHECK.yaml │ │ │ │ ├── DUK_OPT_FASTINT.yaml │ │ │ │ ├── DUK_OPT_FORCE_ALIGN.yaml │ │ │ │ ├── DUK_OPT_FORCE_BYTEORDER.yaml │ │ │ │ ├── DUK_OPT_FUNCPTR16.yaml │ │ │ │ ├── DUK_OPT_FUNCPTR_DEC16.yaml │ │ │ │ ├── DUK_OPT_FUNCPTR_ENC16.yaml │ │ │ │ ├── DUK_OPT_FUNC_NONSTD_CALLER_PROPERTY.yaml │ │ │ │ ├── DUK_OPT_FUNC_NONSTD_SOURCE_PROPERTY.yaml │ │ │ │ ├── DUK_OPT_GC_TORTURE.yaml │ │ │ │ ├── DUK_OPT_HAVE_CUSTOM_H.yaml │ │ │ │ ├── DUK_OPT_HEAPPTR16.yaml │ │ │ │ ├── DUK_OPT_HEAPPTR_DEC16.yaml │ │ │ │ ├── DUK_OPT_HEAPPTR_ENC16.yaml │ │ │ │ ├── DUK_OPT_INTERRUPT_COUNTER.yaml │ │ │ │ ├── DUK_OPT_JSON_STRINGIFY_FASTPATH.yaml │ │ │ │ ├── DUK_OPT_LIGHTFUNC_BUILTINS.yaml │ │ │ │ ├── DUK_OPT_NONSTD_FUNC_CALLER_PROPERTY.yaml │ │ │ │ ├── DUK_OPT_NONSTD_FUNC_SOURCE_PROPERTY.yaml │ │ │ │ ├── DUK_OPT_NO_ARRAY_SPLICE_NONSTD_DELCOUNT.yaml │ │ │ │ ├── DUK_OPT_NO_AUGMENT_ERRORS.yaml │ │ │ │ ├── DUK_OPT_NO_BROWSER_LIKE.yaml │ │ │ │ ├── DUK_OPT_NO_BUFFEROBJECT_SUPPORT.yaml │ │ │ │ ├── DUK_OPT_NO_BYTECODE_DUMP_SUPPORT.yaml │ │ │ │ ├── DUK_OPT_NO_COMMONJS_MODULES.yaml │ │ │ │ ├── DUK_OPT_NO_ES6_OBJECT_PROTO_PROPERTY.yaml │ │ │ │ ├── DUK_OPT_NO_ES6_OBJECT_SETPROTOTYPEOF.yaml │ │ │ │ ├── DUK_OPT_NO_ES6_PROXY.yaml │ │ │ │ ├── DUK_OPT_NO_FILE_IO.yaml │ │ │ │ ├── DUK_OPT_NO_FUNC_STMT.yaml │ │ │ │ ├── DUK_OPT_NO_JC.yaml │ │ │ │ ├── DUK_OPT_NO_JSONC.yaml │ │ │ │ ├── DUK_OPT_NO_JSONX.yaml │ │ │ │ ├── DUK_OPT_NO_JX.yaml │ │ │ │ ├── DUK_OPT_NO_MARK_AND_SWEEP.yaml │ │ │ │ ├── DUK_OPT_NO_MS_STRINGTABLE_RESIZE.yaml │ │ │ │ ├── DUK_OPT_NO_NONSTD_ACCESSOR_KEY_ARGUMENT.yaml │ │ │ │ ├── DUK_OPT_NO_NONSTD_ARRAY_CONCAT_TRAILER.yaml │ │ │ │ ├── DUK_OPT_NO_NONSTD_ARRAY_MAP_TRAILER.yaml │ │ │ │ ├── DUK_OPT_NO_NONSTD_ARRAY_SPLICE_DELCOUNT.yaml │ │ │ │ ├── DUK_OPT_NO_NONSTD_FUNC_STMT.yaml │ │ │ │ ├── DUK_OPT_NO_NONSTD_JSON_ESC_U2028_U2029.yaml │ │ │ │ ├── DUK_OPT_NO_NONSTD_STRING_FROMCHARCODE_32BIT.yaml │ │ │ │ ├── DUK_OPT_NO_OBJECT_ES6_PROTO_PROPERTY.yaml │ │ │ │ ├── DUK_OPT_NO_OBJECT_ES6_SETPROTOTYPEOF.yaml │ │ │ │ ├── DUK_OPT_NO_OCTAL_SUPPORT.yaml │ │ │ │ ├── DUK_OPT_NO_PACKED_TVAL.yaml │ │ │ │ ├── DUK_OPT_NO_PC2LINE.yaml │ │ │ │ ├── DUK_OPT_NO_REFERENCE_COUNTING.yaml │ │ │ │ ├── DUK_OPT_NO_REGEXP_SUPPORT.yaml │ │ │ │ ├── DUK_OPT_NO_SECTION_B.yaml │ │ │ │ ├── DUK_OPT_NO_SOURCE_NONBMP.yaml │ │ │ │ ├── DUK_OPT_NO_STRICT_DECL.yaml │ │ │ │ ├── DUK_OPT_NO_TRACEBACKS.yaml │ │ │ │ ├── DUK_OPT_NO_VERBOSE_ERRORS.yaml │ │ │ │ ├── DUK_OPT_NO_VOLUNTARY_GC.yaml │ │ │ │ ├── DUK_OPT_NO_ZERO_BUFFER_DATA.yaml │ │ │ │ ├── DUK_OPT_OBJSIZES16.yaml │ │ │ │ ├── DUK_OPT_PANIC_HANDLER.yaml │ │ │ │ ├── DUK_OPT_REFCOUNT16.yaml │ │ │ │ ├── DUK_OPT_SEGFAULT_ON_PANIC.yaml │ │ │ │ ├── DUK_OPT_SELF_TESTS.yaml │ │ │ │ ├── DUK_OPT_SETJMP.yaml │ │ │ │ ├── DUK_OPT_SHUFFLE_TORTURE.yaml │ │ │ │ ├── DUK_OPT_SIGSETJMP.yaml │ │ │ │ ├── DUK_OPT_STRHASH16.yaml │ │ │ │ ├── DUK_OPT_STRICT_UTF8_SOURCE.yaml │ │ │ │ ├── DUK_OPT_STRLEN16.yaml │ │ │ │ ├── DUK_OPT_STRTAB_CHAIN.yaml │ │ │ │ ├── DUK_OPT_STRTAB_CHAIN_SIZE.yaml │ │ │ │ ├── DUK_OPT_TARGET_INFO.yaml │ │ │ │ ├── DUK_OPT_TRACEBACK_DEPTH.yaml │ │ │ │ ├── DUK_OPT_UNDERSCORE_SETJMP.yaml │ │ │ │ └── DUK_OPT_USER_INITJS.yaml │ │ │ ├── header-snippets │ │ │ │ ├── 64bitops.h.in │ │ │ │ ├── alignment_fillin.h.in │ │ │ │ ├── architecture_fillins.h.in │ │ │ │ ├── byteorder_derived.h.in │ │ │ │ ├── byteorder_fillin.h.in │ │ │ │ ├── compiler_fillins.h.in │ │ │ │ ├── cpp_exception_sanity.h.in │ │ │ │ ├── date_provider.h.in │ │ │ │ ├── gcc_clang_visibility.h.in │ │ │ │ ├── inline_workaround.h.in │ │ │ │ ├── msvc_visibility.h.in │ │ │ │ ├── object_layout.h.in │ │ │ │ ├── packed_tval_fillin.h.in │ │ │ │ ├── platform_conditionalincludes.h.in │ │ │ │ ├── platform_cppextras.h.in │ │ │ │ ├── platform_fillins.h.in │ │ │ │ ├── platform_sharedincludes.h.in │ │ │ │ ├── reject_fast_math.h.in │ │ │ │ ├── types1.h.in │ │ │ │ ├── types2.h.in │ │ │ │ ├── types_c99.h.in │ │ │ │ └── types_legacy.h.in │ │ │ ├── helper-snippets │ │ │ │ ├── DUK_F_AIX.h.in │ │ │ │ ├── DUK_F_AMIGAOS.h.in │ │ │ │ ├── DUK_F_ANDROID.h.in │ │ │ │ ├── DUK_F_APPLE.h.in │ │ │ │ ├── DUK_F_ARM.h.in │ │ │ │ ├── DUK_F_BCC.h.in │ │ │ │ ├── DUK_F_BSD.h.in │ │ │ │ ├── DUK_F_C99.h.in │ │ │ │ ├── DUK_F_CLANG.h.in │ │ │ │ ├── DUK_F_CPP.h.in │ │ │ │ ├── DUK_F_CPP11.h.in │ │ │ │ ├── DUK_F_CYGWIN.h.in │ │ │ │ ├── DUK_F_DURANGO.h.in │ │ │ │ ├── DUK_F_EMSCRIPTEN.h.in │ │ │ │ ├── DUK_F_FLASHPLAYER.h.in │ │ │ │ ├── DUK_F_FREEBSD.h.in │ │ │ │ ├── DUK_F_GCC.h.in │ │ │ │ ├── DUK_F_HPUX.h.in │ │ │ │ ├── DUK_F_LINUX.h.in │ │ │ │ ├── DUK_F_M68K.h.in │ │ │ │ ├── DUK_F_MINGW.h.in │ │ │ │ ├── DUK_F_MINT.h.in │ │ │ │ ├── DUK_F_MIPS.h.in │ │ │ │ ├── DUK_F_MSVC.h.in │ │ │ │ ├── DUK_F_NETBSD.h.in │ │ │ │ ├── DUK_F_NO_STDINT_H.h.in │ │ │ │ ├── DUK_F_OPENBSD.h.in │ │ │ │ ├── DUK_F_ORBIS.h.in │ │ │ │ ├── DUK_F_POSIX.h.in │ │ │ │ ├── DUK_F_PPC.h.in │ │ │ │ ├── DUK_F_QNX.h.in │ │ │ │ ├── DUK_F_RISCV.h.in │ │ │ │ ├── DUK_F_SPARC.h.in │ │ │ │ ├── DUK_F_SUN.h.in │ │ │ │ ├── DUK_F_SUPERH.h.in │ │ │ │ ├── DUK_F_TINSPIRE.h.in │ │ │ │ ├── DUK_F_TINYC.h.in │ │ │ │ ├── DUK_F_TOS.h.in │ │ │ │ ├── DUK_F_UCLIBC.h.in │ │ │ │ ├── DUK_F_ULL_CONSTS.h.in │ │ │ │ ├── DUK_F_UNIX.h.in │ │ │ │ ├── DUK_F_VBCC.h.in │ │ │ │ ├── DUK_F_WINDOWS.h.in │ │ │ │ └── DUK_F_X86.h.in │ │ │ ├── platforms.yaml │ │ │ ├── platforms │ │ │ │ ├── platform_aix.h.in │ │ │ │ ├── platform_amigaos.h.in │ │ │ │ ├── platform_android.h.in │ │ │ │ ├── platform_apple.h.in │ │ │ │ ├── platform_cygwin.h.in │ │ │ │ ├── platform_durango.h.in │ │ │ │ ├── platform_emscripten.h.in │ │ │ │ ├── platform_flashplayer.h.in │ │ │ │ ├── platform_generic.h.in │ │ │ │ ├── platform_genericbsd.h.in │ │ │ │ ├── platform_genericunix.h.in │ │ │ │ ├── platform_hpux.h.in │ │ │ │ ├── platform_linux.h.in │ │ │ │ ├── platform_openbsd.h.in │ │ │ │ ├── platform_orbis.h.in │ │ │ │ ├── platform_posix.h.in │ │ │ │ ├── platform_qnx.h.in │ │ │ │ ├── platform_solaris.h.in │ │ │ │ ├── platform_tinspire.h.in │ │ │ │ ├── platform_tos.h.in │ │ │ │ └── platform_windows.h.in │ │ │ └── tags.yaml │ │ ├── debugger │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── duk_classnames.yaml │ │ │ ├── duk_debug.js │ │ │ ├── duk_debug_meta.json │ │ │ ├── duk_debug_proxy.js │ │ │ ├── duk_debugcommands.yaml │ │ │ ├── duk_debugerrors.yaml │ │ │ ├── duk_opcodes.yaml │ │ │ ├── package.json │ │ │ └── static │ │ │ │ ├── index.html │ │ │ │ ├── style.css │ │ │ │ └── webui.js │ │ ├── duk_dist_meta.json │ │ ├── examples │ │ │ ├── README.rst │ │ │ ├── alloc-hybrid │ │ │ │ ├── README.rst │ │ │ │ ├── duk_alloc_hybrid.c │ │ │ │ └── duk_alloc_hybrid.h │ │ │ ├── alloc-logging │ │ │ │ ├── README.rst │ │ │ │ ├── duk_alloc_logging.c │ │ │ │ ├── duk_alloc_logging.h │ │ │ │ └── log2gnuplot.py │ │ │ ├── alloc-torture │ │ │ │ ├── README.rst │ │ │ │ ├── duk_alloc_torture.c │ │ │ │ └── duk_alloc_torture.h │ │ │ ├── cmdline │ │ │ │ ├── README.rst │ │ │ │ ├── duk_cmdline.c │ │ │ │ ├── duk_cmdline.h │ │ │ │ └── duk_cmdline_lowmem.c │ │ │ ├── codepage-conv │ │ │ │ ├── README.rst │ │ │ │ ├── duk_codepage_conv.c │ │ │ │ ├── duk_codepage_conv.h │ │ │ │ └── test.c │ │ │ ├── coffee │ │ │ │ ├── README.rst │ │ │ │ ├── globals.coffee │ │ │ │ ├── hello.coffee │ │ │ │ └── mandel.coffee │ │ │ ├── cpp-exceptions │ │ │ │ ├── README.rst │ │ │ │ └── cpp_exceptions.cpp │ │ │ ├── debug-trans-dvalue │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_trans_dvalue.c │ │ │ │ ├── duk_trans_dvalue.h │ │ │ │ └── test.c │ │ │ ├── debug-trans-socket │ │ │ │ ├── README.rst │ │ │ │ ├── duk_trans_socket.h │ │ │ │ ├── duk_trans_socket_unix.c │ │ │ │ └── duk_trans_socket_windows.c │ │ │ ├── dummy-date-provider │ │ │ │ ├── README.rst │ │ │ │ └── dummy_date_provider.c │ │ │ ├── eval │ │ │ │ ├── README.rst │ │ │ │ └── eval.c │ │ │ ├── eventloop │ │ │ │ ├── README.rst │ │ │ │ ├── basic-test.js │ │ │ │ ├── c_eventloop.c │ │ │ │ ├── c_eventloop.h │ │ │ │ ├── c_eventloop.js │ │ │ │ ├── client-socket-test.js │ │ │ │ ├── ecma_eventloop.js │ │ │ │ ├── fileio.c │ │ │ │ ├── main.c │ │ │ │ ├── poll.c │ │ │ │ ├── server-socket-test.js │ │ │ │ ├── socket.c │ │ │ │ └── timer-test.js │ │ │ ├── guide │ │ │ │ ├── README.rst │ │ │ │ ├── fib.js │ │ │ │ ├── prime.js │ │ │ │ ├── primecheck.c │ │ │ │ ├── process.js │ │ │ │ ├── processlines.c │ │ │ │ └── uppercase.c │ │ │ ├── hello │ │ │ │ ├── README.rst │ │ │ │ └── hello.c │ │ │ ├── jxpretty │ │ │ │ ├── README.rst │ │ │ │ └── jxpretty.c │ │ │ └── sandbox │ │ │ │ ├── README.rst │ │ │ │ └── sandbox.c │ │ ├── extras │ │ │ ├── README.rst │ │ │ ├── alloc-pool │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_alloc_pool.c │ │ │ │ ├── duk_alloc_pool.h │ │ │ │ ├── ptrcomp.yaml │ │ │ │ ├── ptrcomp_fixup.h │ │ │ │ └── test.c │ │ │ ├── cbor │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── cbordecode.py │ │ │ │ ├── duk_cbor.c │ │ │ │ ├── duk_cbor.h │ │ │ │ ├── jsoncbor.c │ │ │ │ └── run_testvectors.js │ │ │ ├── console │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_console.c │ │ │ │ ├── duk_console.h │ │ │ │ └── test.c │ │ │ ├── duk-v1-compat │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_v1_compat.c │ │ │ │ ├── duk_v1_compat.h │ │ │ │ ├── test.c │ │ │ │ ├── test_compile1.js │ │ │ │ ├── test_compile2.js │ │ │ │ ├── test_eval1.js │ │ │ │ └── test_eval2.js │ │ │ ├── logging │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_logging.c │ │ │ │ ├── duk_logging.h │ │ │ │ └── test.c │ │ │ ├── minimal-printf │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_minimal_printf.c │ │ │ │ ├── duk_minimal_printf.h │ │ │ │ └── test.c │ │ │ ├── module-duktape │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_module_duktape.c │ │ │ │ ├── duk_module_duktape.h │ │ │ │ └── test.c │ │ │ ├── module-node │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_module_node.c │ │ │ │ ├── duk_module_node.h │ │ │ │ └── test.c │ │ │ └── print-alert │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── duk_print_alert.c │ │ │ │ ├── duk_print_alert.h │ │ │ │ └── test.c │ │ ├── licenses │ │ │ ├── commonjs.txt │ │ │ ├── lua.txt │ │ │ ├── murmurhash2.txt │ │ │ ├── splitmix64.txt │ │ │ └── xoroshiro128plus.txt │ │ ├── mandel.js │ │ ├── polyfills │ │ │ ├── console-minimal.js │ │ │ ├── duktape-buffer.js │ │ │ ├── duktape-error-setter-nonwritable.js │ │ │ ├── duktape-error-setter-writable.js │ │ │ ├── duktape-isfastint.js │ │ │ ├── global.js │ │ │ ├── object-assign.js │ │ │ ├── object-prototype-definegetter.js │ │ │ ├── object-prototype-definesetter.js │ │ │ ├── performance-now.js │ │ │ └── promise.js │ │ ├── src-input │ │ │ ├── SpecialCasing-8bit.txt │ │ │ ├── SpecialCasing.txt │ │ │ ├── UnicodeData-8bit.txt │ │ │ ├── UnicodeData.txt │ │ │ ├── builtins.yaml │ │ │ ├── duk_alloc_default.c │ │ │ ├── duk_api_buffer.c │ │ │ ├── duk_api_bytecode.c │ │ │ ├── duk_api_call.c │ │ │ ├── duk_api_codec.c │ │ │ ├── duk_api_compile.c │ │ │ ├── duk_api_debug.c │ │ │ ├── duk_api_heap.c │ │ │ ├── duk_api_inspect.c │ │ │ ├── duk_api_internal.h │ │ │ ├── duk_api_memory.c │ │ │ ├── duk_api_object.c │ │ │ ├── duk_api_random.c │ │ │ ├── duk_api_stack.c │ │ │ ├── duk_api_string.c │ │ │ ├── duk_api_time.c │ │ │ ├── duk_bi_array.c │ │ │ ├── duk_bi_boolean.c │ │ │ ├── duk_bi_buffer.c │ │ │ ├── duk_bi_cbor.c │ │ │ ├── duk_bi_date.c │ │ │ ├── duk_bi_date_unix.c │ │ │ ├── duk_bi_date_windows.c │ │ │ ├── duk_bi_duktape.c │ │ │ ├── duk_bi_encoding.c │ │ │ ├── duk_bi_error.c │ │ │ ├── duk_bi_function.c │ │ │ ├── duk_bi_global.c │ │ │ ├── duk_bi_json.c │ │ │ ├── duk_bi_math.c │ │ │ ├── duk_bi_number.c │ │ │ ├── duk_bi_object.c │ │ │ ├── duk_bi_performance.c │ │ │ ├── duk_bi_pointer.c │ │ │ ├── duk_bi_promise.c │ │ │ ├── duk_bi_protos.h │ │ │ ├── duk_bi_proxy.c │ │ │ ├── duk_bi_reflect.c │ │ │ ├── duk_bi_regexp.c │ │ │ ├── duk_bi_string.c │ │ │ ├── duk_bi_symbol.c │ │ │ ├── duk_bi_thread.c │ │ │ ├── duk_bi_thrower.c │ │ │ ├── duk_dblunion.h │ │ │ ├── duk_debug.h │ │ │ ├── duk_debug_fixedbuffer.c │ │ │ ├── duk_debug_macros.c │ │ │ ├── duk_debug_vsnprintf.c │ │ │ ├── duk_debugger.c │ │ │ ├── duk_debugger.h │ │ │ ├── duk_error.h │ │ │ ├── duk_error_augment.c │ │ │ ├── duk_error_longjmp.c │ │ │ ├── duk_error_macros.c │ │ │ ├── duk_error_misc.c │ │ │ ├── duk_error_throw.c │ │ │ ├── duk_exception.h │ │ │ ├── duk_fltunion.h │ │ │ ├── duk_forwdecl.h │ │ │ ├── duk_harray.h │ │ │ ├── duk_hboundfunc.h │ │ │ ├── duk_hbuffer.h │ │ │ ├── duk_hbuffer_alloc.c │ │ │ ├── duk_hbuffer_assert.c │ │ │ ├── duk_hbuffer_ops.c │ │ │ ├── duk_hbufobj.h │ │ │ ├── duk_hbufobj_misc.c │ │ │ ├── duk_hcompfunc.h │ │ │ ├── duk_heap.h │ │ │ ├── duk_heap_alloc.c │ │ │ ├── duk_heap_finalize.c │ │ │ ├── duk_heap_hashstring.c │ │ │ ├── duk_heap_markandsweep.c │ │ │ ├── duk_heap_memory.c │ │ │ ├── duk_heap_misc.c │ │ │ ├── duk_heap_refcount.c │ │ │ ├── duk_heap_stringcache.c │ │ │ ├── duk_heap_stringtable.c │ │ │ ├── duk_heaphdr.h │ │ │ ├── duk_heaphdr_assert.c │ │ │ ├── duk_henv.h │ │ │ ├── duk_hnatfunc.h │ │ │ ├── duk_hobject.h │ │ │ ├── duk_hobject_alloc.c │ │ │ ├── duk_hobject_assert.c │ │ │ ├── duk_hobject_class.c │ │ │ ├── duk_hobject_enum.c │ │ │ ├── duk_hobject_misc.c │ │ │ ├── duk_hobject_pc2line.c │ │ │ ├── duk_hobject_props.c │ │ │ ├── duk_hproxy.h │ │ │ ├── duk_hstring.h │ │ │ ├── duk_hstring_assert.c │ │ │ ├── duk_hstring_misc.c │ │ │ ├── duk_hthread.h │ │ │ ├── duk_hthread_alloc.c │ │ │ ├── duk_hthread_builtins.c │ │ │ ├── duk_hthread_misc.c │ │ │ ├── duk_hthread_stacks.c │ │ │ ├── duk_internal.h │ │ │ ├── duk_jmpbuf.h │ │ │ ├── duk_js.h │ │ │ ├── duk_js_arith.c │ │ │ ├── duk_js_bytecode.h │ │ │ ├── duk_js_call.c │ │ │ ├── duk_js_compiler.c │ │ │ ├── duk_js_compiler.h │ │ │ ├── duk_js_executor.c │ │ │ ├── duk_js_ops.c │ │ │ ├── duk_js_var.c │ │ │ ├── duk_json.h │ │ │ ├── duk_lexer.c │ │ │ ├── duk_lexer.h │ │ │ ├── duk_numconv.c │ │ │ ├── duk_numconv.h │ │ │ ├── duk_refcount.h │ │ │ ├── duk_regexp.h │ │ │ ├── duk_regexp_compiler.c │ │ │ ├── duk_regexp_executor.c │ │ │ ├── duk_replacements.c │ │ │ ├── duk_replacements.h │ │ │ ├── duk_selftest.c │ │ │ ├── duk_selftest.h │ │ │ ├── duk_strings.h │ │ │ ├── duk_tval.c │ │ │ ├── duk_tval.h │ │ │ ├── duk_unicode.h │ │ │ ├── duk_unicode_support.c │ │ │ ├── duk_unicode_tables.c │ │ │ ├── duk_util.h │ │ │ ├── duk_util_bitdecoder.c │ │ │ ├── duk_util_bitencoder.c │ │ │ ├── duk_util_bufwriter.c │ │ │ ├── duk_util_cast.c │ │ │ ├── duk_util_double.c │ │ │ ├── duk_util_hashbytes.c │ │ │ ├── duk_util_memory.c │ │ │ ├── duk_util_memrw.c │ │ │ ├── duk_util_misc.c │ │ │ ├── duk_util_tinyrandom.c │ │ │ ├── duktape.h.in │ │ │ └── strings.yaml │ │ ├── src-noline │ │ │ ├── duk_config.h │ │ │ ├── duk_source_meta.json │ │ │ ├── duktape.c │ │ │ └── duktape.h │ │ ├── src-separate │ │ │ ├── duk_alloc_default.c │ │ │ ├── duk_api_buffer.c │ │ │ ├── duk_api_bytecode.c │ │ │ ├── duk_api_call.c │ │ │ ├── duk_api_codec.c │ │ │ ├── duk_api_compile.c │ │ │ ├── duk_api_debug.c │ │ │ ├── duk_api_heap.c │ │ │ ├── duk_api_inspect.c │ │ │ ├── duk_api_internal.h │ │ │ ├── duk_api_memory.c │ │ │ ├── duk_api_object.c │ │ │ ├── duk_api_random.c │ │ │ ├── duk_api_stack.c │ │ │ ├── duk_api_string.c │ │ │ ├── duk_api_time.c │ │ │ ├── duk_bi_array.c │ │ │ ├── duk_bi_boolean.c │ │ │ ├── duk_bi_buffer.c │ │ │ ├── duk_bi_cbor.c │ │ │ ├── duk_bi_date.c │ │ │ ├── duk_bi_date_unix.c │ │ │ ├── duk_bi_date_windows.c │ │ │ ├── duk_bi_duktape.c │ │ │ ├── duk_bi_encoding.c │ │ │ ├── duk_bi_error.c │ │ │ ├── duk_bi_function.c │ │ │ ├── duk_bi_global.c │ │ │ ├── duk_bi_json.c │ │ │ ├── duk_bi_math.c │ │ │ ├── duk_bi_number.c │ │ │ ├── duk_bi_object.c │ │ │ ├── duk_bi_performance.c │ │ │ ├── duk_bi_pointer.c │ │ │ ├── duk_bi_promise.c │ │ │ ├── duk_bi_protos.h │ │ │ ├── duk_bi_proxy.c │ │ │ ├── duk_bi_reflect.c │ │ │ ├── duk_bi_regexp.c │ │ │ ├── duk_bi_string.c │ │ │ ├── duk_bi_symbol.c │ │ │ ├── duk_bi_thread.c │ │ │ ├── duk_bi_thrower.c │ │ │ ├── duk_builtins.c │ │ │ ├── duk_builtins.h │ │ │ ├── duk_config.h │ │ │ ├── duk_dblunion.h │ │ │ ├── duk_debug.h │ │ │ ├── duk_debug_fixedbuffer.c │ │ │ ├── duk_debug_macros.c │ │ │ ├── duk_debug_vsnprintf.c │ │ │ ├── duk_debugger.c │ │ │ ├── duk_debugger.h │ │ │ ├── duk_error.h │ │ │ ├── duk_error_augment.c │ │ │ ├── duk_error_longjmp.c │ │ │ ├── duk_error_macros.c │ │ │ ├── duk_error_misc.c │ │ │ ├── duk_error_throw.c │ │ │ ├── duk_exception.h │ │ │ ├── duk_fltunion.h │ │ │ ├── duk_forwdecl.h │ │ │ ├── duk_harray.h │ │ │ ├── duk_hboundfunc.h │ │ │ ├── duk_hbuffer.h │ │ │ ├── duk_hbuffer_alloc.c │ │ │ ├── duk_hbuffer_assert.c │ │ │ ├── duk_hbuffer_ops.c │ │ │ ├── duk_hbufobj.h │ │ │ ├── duk_hbufobj_misc.c │ │ │ ├── duk_hcompfunc.h │ │ │ ├── duk_heap.h │ │ │ ├── duk_heap_alloc.c │ │ │ ├── duk_heap_finalize.c │ │ │ ├── duk_heap_hashstring.c │ │ │ ├── duk_heap_markandsweep.c │ │ │ ├── duk_heap_memory.c │ │ │ ├── duk_heap_misc.c │ │ │ ├── duk_heap_refcount.c │ │ │ ├── duk_heap_stringcache.c │ │ │ ├── duk_heap_stringtable.c │ │ │ ├── duk_heaphdr.h │ │ │ ├── duk_heaphdr_assert.c │ │ │ ├── duk_henv.h │ │ │ ├── duk_hnatfunc.h │ │ │ ├── duk_hobject.h │ │ │ ├── duk_hobject_alloc.c │ │ │ ├── duk_hobject_assert.c │ │ │ ├── duk_hobject_class.c │ │ │ ├── duk_hobject_enum.c │ │ │ ├── duk_hobject_misc.c │ │ │ ├── duk_hobject_pc2line.c │ │ │ ├── duk_hobject_props.c │ │ │ ├── duk_hproxy.h │ │ │ ├── duk_hstring.h │ │ │ ├── duk_hstring_assert.c │ │ │ ├── duk_hstring_misc.c │ │ │ ├── duk_hthread.h │ │ │ ├── duk_hthread_alloc.c │ │ │ ├── duk_hthread_builtins.c │ │ │ ├── duk_hthread_misc.c │ │ │ ├── duk_hthread_stacks.c │ │ │ ├── duk_internal.h │ │ │ ├── duk_jmpbuf.h │ │ │ ├── duk_js.h │ │ │ ├── duk_js_arith.c │ │ │ ├── duk_js_bytecode.h │ │ │ ├── duk_js_call.c │ │ │ ├── duk_js_compiler.c │ │ │ ├── duk_js_compiler.h │ │ │ ├── duk_js_executor.c │ │ │ ├── duk_js_ops.c │ │ │ ├── duk_js_var.c │ │ │ ├── duk_json.h │ │ │ ├── duk_lexer.c │ │ │ ├── duk_lexer.h │ │ │ ├── duk_numconv.c │ │ │ ├── duk_numconv.h │ │ │ ├── duk_refcount.h │ │ │ ├── duk_regexp.h │ │ │ ├── duk_regexp_compiler.c │ │ │ ├── duk_regexp_executor.c │ │ │ ├── duk_replacements.c │ │ │ ├── duk_replacements.h │ │ │ ├── duk_selftest.c │ │ │ ├── duk_selftest.h │ │ │ ├── duk_source_meta.json │ │ │ ├── duk_strings.h │ │ │ ├── duk_tval.c │ │ │ ├── duk_tval.h │ │ │ ├── duk_unicode.h │ │ │ ├── duk_unicode_support.c │ │ │ ├── duk_unicode_tables.c │ │ │ ├── duk_util.h │ │ │ ├── duk_util_bitdecoder.c │ │ │ ├── duk_util_bitencoder.c │ │ │ ├── duk_util_bufwriter.c │ │ │ ├── duk_util_cast.c │ │ │ ├── duk_util_double.c │ │ │ ├── duk_util_hashbytes.c │ │ │ ├── duk_util_memory.c │ │ │ ├── duk_util_memrw.c │ │ │ ├── duk_util_misc.c │ │ │ ├── duk_util_tinyrandom.c │ │ │ └── duktape.h │ │ ├── src │ │ │ ├── duk_config.h │ │ │ ├── duk_source_meta.json │ │ │ ├── duktape.c │ │ │ └── duktape.h │ │ └── tools │ │ │ ├── combine_src.py │ │ │ ├── configure.py │ │ │ ├── create_spdx_license.py │ │ │ ├── duk_meta_to_strarray.py │ │ │ ├── dukutil.py │ │ │ ├── dump_bytecode.py │ │ │ ├── extract_caseconv.py │ │ │ ├── extract_chars.py │ │ │ ├── extract_unique_options.py │ │ │ ├── genbuiltins.py │ │ │ ├── genconfig.py │ │ │ ├── json2yaml.py │ │ │ ├── merge_debug_meta.py │ │ │ ├── prepare_unicode_data.py │ │ │ ├── resolve_combined_lineno.py │ │ │ ├── scan_strings.py │ │ │ ├── scan_used_stridx_bidx.py │ │ │ └── yaml2json.py │ ├── esp32adc │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── esp32adc.cpp │ │ │ └── esp32adc.h │ ├── esp32bluetooth │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── esp32bluetooth.cpp │ │ │ ├── esp32bluetooth.h │ │ │ ├── esp32bluetooth_app_console.cpp │ │ │ ├── esp32bluetooth_app_console.h │ │ │ ├── esp32bluetooth_app_device.cpp │ │ │ ├── esp32bluetooth_app_device.h │ │ │ ├── esp32bluetooth_app_metrics.cpp │ │ │ ├── esp32bluetooth_app_metrics.h │ │ │ ├── esp32bluetooth_console.cpp │ │ │ ├── esp32bluetooth_console.h │ │ │ ├── esp32bluetooth_gap.cpp │ │ │ ├── esp32bluetooth_gap.h │ │ │ ├── esp32bluetooth_gatts.cpp │ │ │ └── esp32bluetooth_gatts.h │ ├── esp32can │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── component.mk │ │ └── src │ │ │ ├── esp32can.cpp │ │ │ ├── esp32can.h │ │ │ └── esp32can_regdef.h │ ├── esp32system │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── esp32system.cpp │ │ └── esp32system.h │ ├── esp32wifi │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── esp32wifi.cpp │ │ │ └── esp32wifi.h │ ├── ext12v │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ext12v.cpp │ │ │ └── ext12v.h │ ├── gpio_maps │ │ ├── Readme.md │ │ ├── component.mk │ │ ├── lilygo_tc_v10.h │ │ ├── lilygo_tc_v10_a.h │ │ └── lilygo_tc_v11.h │ ├── id_filter │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── id_filter.cpp │ │ │ ├── id_filter.h │ │ │ ├── id_include_exclude_filter.cpp │ │ │ └── id_include_exclude_filter.h │ ├── libtelnet │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── libtelnet.h │ │ └── src │ │ │ └── libtelnet.c │ ├── max7317 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── max7317.cpp │ │ │ └── max7317.h │ ├── mcp2515 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── src │ │ │ ├── mcp2515.cpp │ │ │ ├── mcp2515.h │ │ │ └── mcp2515_regdef.h │ │ └── utils │ │ │ └── MCP2515Calc-50kbit.ods │ ├── microrl │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── microrl.c │ │ ├── microrl.h │ │ └── microrl_config.h │ ├── mongoose │ │ ├── .mbedignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── Makefile.projbuild │ │ ├── component.mk │ │ ├── include │ │ │ ├── .gitignore │ │ │ └── mg_locals.h │ │ ├── mg_version.h.in │ │ └── project_include.cmake │ ├── obd2ecu │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── obd2ecu.cpp │ │ │ └── obd2ecu.h │ ├── ovms_buffer │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_buffer.cpp │ │ │ └── ovms_buffer.h │ ├── ovms_cellular │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── gsmmux.cpp │ │ │ ├── gsmmux.h │ │ │ ├── gsmnmea.cpp │ │ │ ├── gsmnmea.h │ │ │ ├── gsmpppos.cpp │ │ │ ├── gsmpppos.h │ │ │ ├── ovms_cellular.cpp │ │ │ ├── ovms_cellular.h │ │ │ ├── ovms_cellular_modem_driver.cpp │ │ │ └── ovms_cellular_modem_factory.cpp │ ├── ovms_http │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_http.cpp │ │ │ ├── ovms_http.h │ │ │ ├── ovms_net.cpp │ │ │ └── ovms_net.h │ ├── ovms_location │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_location.cpp │ │ │ └── ovms_location.h │ ├── ovms_mdns │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_mdns.cpp │ │ │ └── ovms_mdns.h │ ├── ovms_netlib │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_netconns.cpp │ │ │ ├── ovms_netconns.h │ │ │ ├── ovms_nethttp.cpp │ │ │ └── ovms_nethttp.h │ ├── ovms_ota │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_ota.cpp │ │ │ └── ovms_ota.h │ ├── ovms_plugins │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_plugins.cpp │ │ │ └── ovms_plugins.h │ ├── ovms_script │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── foglight.rst │ │ │ ├── foglight │ │ │ │ ├── foglight.htm.txt │ │ │ │ ├── foglight.js.txt │ │ │ │ └── foglight.png │ │ │ └── index.rst │ │ ├── jsmodembed │ │ │ ├── json.js │ │ │ └── pubsub.js │ │ ├── jsmodsrc │ │ │ ├── json.js │ │ │ └── pubsub.js │ │ ├── src │ │ │ ├── ovms_script.cpp │ │ │ └── ovms_script.h │ │ ├── srcduk │ │ │ ├── ovms_duk_http.cpp │ │ │ ├── ovms_duk_util.cpp │ │ │ ├── ovms_duk_vfs.cpp │ │ │ ├── ovms_duktape.cpp │ │ │ └── ovms_duktape.h │ │ └── umm │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── umm_info.c │ │ │ ├── umm_integrity.c │ │ │ ├── umm_malloc.c │ │ │ ├── umm_malloc.h │ │ │ ├── umm_malloc_cfg.h │ │ │ ├── umm_malloc_cfgport.h │ │ │ └── umm_poison.c │ ├── ovms_server │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_server.cpp │ │ │ └── ovms_server.h │ ├── ovms_server_v2 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_server_v2.cpp │ │ │ └── ovms_server_v2.h │ ├── ovms_server_v3 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_server_v3.cpp │ │ │ └── ovms_server_v3.h │ ├── ovms_tls │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── src │ │ │ ├── ovms_tls.cpp │ │ │ └── ovms_tls.h │ │ └── trustedca │ │ │ ├── baltimore_cybertrust.crt │ │ │ ├── digicert_g2.crt │ │ │ ├── digicert_global.crt │ │ │ ├── isrg_x1.crt │ │ │ ├── starfield_class2.crt │ │ │ └── usertrust.crt │ ├── ovms_tpms │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── ovms_tpms.cpp │ │ │ └── ovms_tpms.h │ ├── ovms_webserver │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── assets │ │ │ ├── README.bootstrap │ │ │ ├── README.cbor │ │ │ ├── README.datatables │ │ │ ├── README.highcharts │ │ │ ├── README.jquery │ │ │ ├── README.zones │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.js │ │ │ ├── cbor.js │ │ │ ├── charts.js │ │ │ ├── charts.js.gz │ │ │ ├── datatables.min.css │ │ │ ├── datatables.min.js │ │ │ ├── datatables.ovms.css │ │ │ ├── favicon.png │ │ │ ├── favicon.svg │ │ │ ├── hc-modules │ │ │ │ ├── bullet.js │ │ │ │ ├── solid-gauge.js │ │ │ │ ├── streamgraph.js │ │ │ │ └── xrange.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts.css │ │ │ ├── highcharts.js │ │ │ ├── intro.css │ │ │ ├── jquery.min.js │ │ │ ├── ovms.css │ │ │ ├── ovms.js │ │ │ ├── script.js │ │ │ ├── script.js.gz │ │ │ ├── style.css │ │ │ ├── style.css.gz │ │ │ ├── tables.js │ │ │ ├── tables.js.gz │ │ │ ├── zones.json │ │ │ └── zones.json.gz │ │ ├── component.mk │ │ ├── dev │ │ │ ├── README.md │ │ │ ├── assets │ │ │ ├── btn-longtouch.htm │ │ │ ├── commands.htm │ │ │ ├── dashboard.htm │ │ │ ├── dialogtest.htm │ │ │ ├── filebrowser.htm │ │ │ ├── filedialog.htm │ │ │ ├── home │ │ │ ├── home.htm │ │ │ ├── hooks.htm │ │ │ ├── index.htm │ │ │ ├── input-slider.htm │ │ │ ├── loadcmd.htm │ │ │ ├── metrics-table.htm │ │ │ ├── metrics.htm │ │ │ ├── notifications.htm │ │ │ ├── plugin-twizy │ │ │ │ ├── dashboard-tuneslider.htm │ │ │ │ ├── drivemode-config.htm │ │ │ │ └── profile-editor.htm │ │ │ ├── regenmon.htm │ │ │ └── solidgauge.htm │ │ ├── docs │ │ │ ├── bms-cell-info.odg │ │ │ ├── bms-cell-info.png │ │ │ ├── bms-cell-monitor.png │ │ │ ├── bms-cell-monitor.rst │ │ │ ├── btn-longtouch.rst │ │ │ ├── commands.rst │ │ │ ├── dashboard.png │ │ │ ├── dashboard.rst │ │ │ ├── dialogtest.rst │ │ │ ├── fileapi.rst │ │ │ ├── filebrowser.rst │ │ │ ├── filedialog.rst │ │ │ ├── hooks.rst │ │ │ ├── index.rst │ │ │ ├── input-slider.rst │ │ │ ├── loadcmd.rst │ │ │ ├── metrics-table.png │ │ │ ├── metrics.png │ │ │ ├── metrics.rst │ │ │ ├── notifications.rst │ │ │ ├── plugin-twizy │ │ │ │ ├── dashboard-tuneslider.png │ │ │ │ ├── dashboard-tuneslider.rst │ │ │ │ ├── drivemode-config.png │ │ │ │ ├── drivemode-config.rst │ │ │ │ ├── profile-editor.png │ │ │ │ └── profile-editor.rst │ │ │ ├── regenmon.png │ │ │ ├── regenmon.rst │ │ │ └── solidgauge.rst │ │ ├── src │ │ │ ├── ovms_commandstream.cpp │ │ │ ├── ovms_webserver.cpp │ │ │ ├── ovms_webserver.h │ │ │ ├── ovms_websockethandler.cpp │ │ │ ├── web_cfg.cpp │ │ │ ├── web_cfg_autostart.cpp │ │ │ ├── web_cfg_backup.cpp │ │ │ ├── web_cfg_cellular.cpp │ │ │ ├── web_cfg_climate.cpp │ │ │ ├── web_cfg_firmware.cpp │ │ │ ├── web_cfg_init.cpp │ │ │ ├── web_cfg_locations.cpp │ │ │ ├── web_cfg_logging.cpp │ │ │ ├── web_cfg_notifications.cpp │ │ │ ├── web_cfg_pushover.cpp │ │ │ ├── web_cfg_server_v2.cpp │ │ │ ├── web_cfg_server_v3.cpp │ │ │ ├── web_cfg_status.cpp │ │ │ ├── web_cfg_vehicle.cpp │ │ │ ├── web_cfg_webserver.cpp │ │ │ ├── web_cfg_wifi.cpp │ │ │ ├── web_displays.cpp │ │ │ └── web_framework.cpp │ │ └── tools │ │ │ ├── mksrc │ │ │ └── mksrcf │ ├── pcp │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── pcp.cpp │ │ └── pcp.h │ ├── poller │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── API.rst │ │ │ ├── Commands.rst │ │ │ ├── Intro.rst │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_poller.cpp │ │ │ ├── vehicle_poller.h │ │ │ ├── vehicle_poller_isotp.cpp │ │ │ └── vehicle_poller_vwtp.cpp │ ├── powermgmt │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── powermgmt.cpp │ │ ├── powermgmt.h │ │ └── powermgmt_web.cpp │ ├── pushover │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── pushover.cpp │ │ │ └── pushover.h │ ├── retools │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── src │ │ │ ├── retools.cpp │ │ │ └── retools.h │ │ └── tools │ │ │ └── crtdreplay.c │ ├── retools_pidscan │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── retools_pid.cpp │ │ │ └── retools_pid.h │ ├── retools_testerpresent │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── retools_testerpresent.cpp │ │ │ └── retools_testerpresent.h │ ├── sdcard │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── sdcard.cpp │ │ │ └── sdcard.h │ ├── simcom │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── simcom_5360.cpp │ │ │ ├── simcom_5360.h │ │ │ ├── simcom_7000.cpp │ │ │ ├── simcom_7000.h │ │ │ ├── simcom_7600.cpp │ │ │ ├── simcom_7600.h │ │ │ ├── simcom_7670.cpp │ │ │ ├── simcom_7670.h │ │ │ ├── simcom_powering.cpp │ │ │ └── simcom_powering.h │ ├── spi │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── spi.cpp │ │ └── spi.h │ ├── strverscmp │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── strverscmp.c │ │ │ └── strverscmp.h │ ├── swcan │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── swcan.cpp │ │ │ └── swcan.h │ ├── vehicle │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── VW-TP-2.0.txt │ │ ├── vehicle.cpp │ │ ├── vehicle.h │ │ ├── vehicle_bms.cpp │ │ ├── vehicle_common.h │ │ ├── vehicle_duktape.cpp │ │ └── vehicle_shell.cpp │ ├── vehicle_bmwi3 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── dev │ │ │ ├── README │ │ │ ├── amphhb20.json │ │ │ ├── atm.json │ │ │ ├── bdc.json │ │ │ ├── dsc_i1.json │ │ │ ├── edmei1.json │ │ │ ├── eme_i01.json │ │ │ ├── eps_i1.json │ │ │ ├── fzd_f15.json │ │ │ ├── gws_i01.json │ │ │ ├── icam_f15.json │ │ │ ├── ihx_i1.json │ │ │ ├── kafas20.json │ │ │ ├── komb25.json │ │ │ ├── lim_i1.json │ │ │ ├── nbtevo.json │ │ │ ├── pma_15.json │ │ │ ├── sas_i1.json │ │ │ ├── sme_i1.json │ │ │ ├── test.json │ │ │ ├── ucx2_i01.json │ │ │ ├── vsg_i01.json │ │ │ └── zbe6.json │ │ ├── docs │ │ │ └── index.rst │ │ ├── ecu_definitions │ │ │ ├── README │ │ │ ├── ecu_bdc_code.cpp │ │ │ ├── ecu_bdc_defines.h │ │ │ ├── ecu_bdc_extra_defines.h │ │ │ ├── ecu_bdc_polls.cpp │ │ │ ├── ecu_dsc_code.cpp │ │ │ ├── ecu_dsc_defines.h │ │ │ ├── ecu_dsc_polls.cpp │ │ │ ├── ecu_edm_code.cpp │ │ │ ├── ecu_edm_defines.h │ │ │ ├── ecu_edm_extra_defines.h │ │ │ ├── ecu_edm_polls.cpp │ │ │ ├── ecu_eme_code.cpp │ │ │ ├── ecu_eme_defines.h │ │ │ ├── ecu_eme_polls.cpp │ │ │ ├── ecu_eps_code.cpp │ │ │ ├── ecu_eps_defines.h │ │ │ ├── ecu_eps_polls.cpp │ │ │ ├── ecu_fzd_code.cpp │ │ │ ├── ecu_fzd_defines.h │ │ │ ├── ecu_fzd_polls.cpp │ │ │ ├── ecu_ihx_code.cpp │ │ │ ├── ecu_ihx_defines.h │ │ │ ├── ecu_ihx_polls.cpp │ │ │ ├── ecu_kaf_code.cpp │ │ │ ├── ecu_kaf_defines.h │ │ │ ├── ecu_kaf_polls.cpp │ │ │ ├── ecu_kle_code.cpp │ │ │ ├── ecu_kle_defines.h │ │ │ ├── ecu_kle_polls.cpp │ │ │ ├── ecu_kom_code.cpp │ │ │ ├── ecu_kom_defines.h │ │ │ ├── ecu_kom_polls.cpp │ │ │ ├── ecu_lim_code.cpp │ │ │ ├── ecu_lim_defines.h │ │ │ ├── ecu_lim_extra_defines.h │ │ │ ├── ecu_lim_polls.cpp │ │ │ ├── ecu_nbt_code.cpp │ │ │ ├── ecu_nbt_defines.h │ │ │ ├── ecu_nbt_polls.cpp │ │ │ ├── ecu_sas_code.cpp │ │ │ ├── ecu_sas_defines.h │ │ │ ├── ecu_sas_polls.cpp │ │ │ ├── ecu_sme_code.cpp │ │ │ ├── ecu_sme_defines.h │ │ │ ├── ecu_sme_polls.cpp │ │ │ ├── ecu_zbe_code.cpp │ │ │ ├── ecu_zbe_defines.h │ │ │ └── ecu_zbe_polls.cpp │ │ ├── src │ │ │ ├── vehicle_bmwi3.cpp │ │ │ └── vehicle_bmwi3.h │ │ └── tools │ │ │ ├── generate_ecu_code.pl │ │ │ ├── generate_ecu_codes.sh │ │ │ └── parseecu.pl │ ├── vehicle_boltev │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── va_ac_preheat.cpp │ │ │ ├── va_notify.cpp │ │ │ ├── va_web.cpp │ │ │ ├── vehicle_boltev.cpp │ │ │ └── vehicle_boltev.h │ ├── vehicle_byd_atto3 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_byd_atto3.cpp │ │ │ └── vehicle_byd_atto3.h │ ├── vehicle_cadillac_c2_cts │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── vehicle_cadillac_c2_cts.cpp │ │ │ └── vehicle_cadillac_c2_cts.h │ ├── vehicle_chevrolet_c6_corvette │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── vehicle_chevrolet_c6_corvette.cpp │ │ │ └── vehicle_chevrolet_c6_corvette.h │ ├── vehicle_dbc │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── dbc-primer.rst │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_dbc.cpp │ │ │ └── vehicle_dbc.h │ ├── vehicle_demo │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_demo.cpp │ │ │ └── vehicle_demo.h │ ├── vehicle_energica │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_energica.cpp │ │ │ ├── vehicle_energica.h │ │ │ └── vehicle_energica_pids.h │ ├── vehicle_fiat500 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_fiat500e.cpp │ │ │ └── vehicle_fiat500e.h │ ├── vehicle_fiatedoblo │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_fiatedoblo.cpp │ │ │ └── vehicle_fiatedoblo.h │ ├── vehicle_hyundai_ioniq5 │ │ ├── .editorconfig │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── .astylerc │ │ │ ├── hif_can_poll.cpp │ │ │ ├── hif_can_send.cpp │ │ │ ├── hif_commands.cpp │ │ │ ├── hif_incoming_c_can.cpp │ │ │ ├── hif_web.cpp │ │ │ ├── vehicle_hyundai_ioniq5.cpp │ │ │ └── vehicle_hyundai_ioniq5.h │ ├── vehicle_hyundai_ioniqvfl │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── Charge-Curve.ods │ │ │ ├── PIDs.txt │ │ │ └── index.rst │ │ └── src │ │ │ ├── ioniqvfl_web.cpp │ │ │ ├── vehicle_hyundai_ioniqvfl.cpp │ │ │ └── vehicle_hyundai_ioniqvfl.h │ ├── vehicle_jaguaripace │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── ipace_can_handler.cpp │ │ │ ├── ipace_obd_pids.h │ │ │ ├── ipace_poll_bcm.cpp │ │ │ ├── ipace_poll_becm.cpp │ │ │ ├── ipace_poll_hvac.cpp │ │ │ ├── ipace_poll_states.h │ │ │ ├── ipace_poll_tcu.cpp │ │ │ ├── ipace_poll_tpms.cpp │ │ │ ├── vehicle_jaguaripace.cpp │ │ │ └── vehicle_jaguaripace.h │ ├── vehicle_kianiroev │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── kn_can_poll.cpp │ │ │ ├── kn_can_send.cpp │ │ │ ├── kn_commands.cpp │ │ │ ├── kn_incoming_c_can.cpp │ │ │ ├── kn_web.cpp │ │ │ ├── vehicle_kianiroev.cpp │ │ │ └── vehicle_kianiroev.h │ ├── vehicle_kiasoulev │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── kia_common.cpp │ │ │ ├── kia_common.h │ │ │ ├── ks_can_poll.cpp │ │ │ ├── ks_can_send.cpp │ │ │ ├── ks_commands.cpp │ │ │ ├── ks_incoming_c_can.cpp │ │ │ ├── ks_incoming_m_can.cpp │ │ │ ├── ks_web.cpp │ │ │ ├── vehicle_kiasoulev.cpp │ │ │ └── vehicle_kiasoulev.h │ ├── vehicle_maple60s │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── vehicle_maple_60s.cpp │ │ │ └── vehicle_maple_60s.h │ ├── vehicle_maxus_edeliver3 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── med3_pids.h │ │ │ ├── med3_web.cpp │ │ │ ├── vehicle_med3.cpp │ │ │ └── vehicle_med3.h │ ├── vehicle_maxus_euniq56 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── me56_pids.h │ │ │ ├── me56_web.cpp │ │ │ ├── vehicle_me56.cpp │ │ │ └── vehicle_me56.h │ ├── vehicle_maxus_euniq6 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── vehicle_me6.cpp │ │ │ └── vehicle_me6.h │ ├── vehicle_maxus_t90 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_maxt90.cpp │ │ │ └── vehicle_maxt90.h │ ├── vehicle_mercedesb250e │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── index.rst │ │ │ └── metrics.rst │ │ └── src │ │ │ ├── vehicle_mercedesb250e.cpp │ │ │ └── vehicle_mercedesb250e.h │ ├── vehicle_mgev │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── mg_auth.cpp │ │ │ ├── mg_auth.h │ │ │ ├── mg_bcm.cpp │ │ │ ├── mg_can_handler.cpp │ │ │ ├── mg_configuration.cpp │ │ │ ├── mg_gwm.cpp │ │ │ ├── mg_obd_pids.h │ │ │ ├── mg_poll_atc.cpp │ │ │ ├── mg_poll_bcm.cpp │ │ │ ├── mg_poll_bms.cpp │ │ │ ├── mg_poll_dcdc.cpp │ │ │ ├── mg_poll_evcc.cpp │ │ │ ├── mg_poll_gwm.cpp │ │ │ ├── mg_poll_peps.cpp │ │ │ ├── mg_poll_states.h │ │ │ ├── mg_poll_tpms.cpp │ │ │ ├── mg_poll_vcu.cpp │ │ │ ├── mg_software_versions.cpp │ │ │ ├── mg_web.cpp │ │ │ ├── vehicle_mg4.cpp │ │ │ ├── vehicle_mg4.hpp │ │ │ ├── vehicle_mg5.cpp │ │ │ ├── vehicle_mg5.hpp │ │ │ ├── vehicle_mgev.cpp │ │ │ ├── vehicle_mgev.h │ │ │ ├── vehicle_mgev_a.cpp │ │ │ ├── vehicle_mgev_a.h │ │ │ ├── vehicle_mgev_b.cpp │ │ │ ├── vehicle_mgev_b.h │ │ │ ├── vehicle_mgzsev2.cpp │ │ │ └── vehicle_mgzsev2.hpp │ ├── vehicle_minise │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── dev │ │ │ ├── README │ │ │ ├── amphhb20.json │ │ │ ├── atm.json │ │ │ ├── bdc.json │ │ │ ├── dsc_i1.json │ │ │ ├── edmei1.json │ │ │ ├── eme_i01.json │ │ │ ├── eps_i1.json │ │ │ ├── fzd_f15.json │ │ │ ├── gws_i01.json │ │ │ ├── icam_f15.json │ │ │ ├── ihx_i1.json │ │ │ ├── kafas20.json │ │ │ ├── komb25.json │ │ │ ├── lim_i1.json │ │ │ ├── nbtevo.json │ │ │ ├── pma_15.json │ │ │ ├── sas_i1.json │ │ │ ├── sme_i1.json │ │ │ ├── test.json │ │ │ ├── ucx2_i01.json │ │ │ ├── vsg_i01.json │ │ │ └── zbe6.json │ │ ├── docs │ │ │ └── index.rst │ │ ├── ecu_definitions │ │ │ ├── README │ │ │ ├── ecu_bdc_code.cpp │ │ │ ├── ecu_bdc_defines.h │ │ │ ├── ecu_bdc_extra_defines.h │ │ │ ├── ecu_bdc_polls.cpp │ │ │ ├── ecu_dsc_code.cpp │ │ │ ├── ecu_dsc_defines.h │ │ │ ├── ecu_dsc_polls.cpp │ │ │ ├── ecu_edm_code.cpp │ │ │ ├── ecu_edm_defines.h │ │ │ ├── ecu_edm_extra_defines.h │ │ │ ├── ecu_edm_polls.cpp │ │ │ ├── ecu_eme_code.cpp │ │ │ ├── ecu_eme_defines.h │ │ │ ├── ecu_eme_polls.cpp │ │ │ ├── ecu_eps_code.cpp │ │ │ ├── ecu_eps_defines.h │ │ │ ├── ecu_eps_polls.cpp │ │ │ ├── ecu_fzd_code.cpp │ │ │ ├── ecu_fzd_defines.h │ │ │ ├── ecu_fzd_polls.cpp │ │ │ ├── ecu_ihx_code.cpp │ │ │ ├── ecu_ihx_defines.h │ │ │ ├── ecu_ihx_polls.cpp │ │ │ ├── ecu_kaf_code.cpp │ │ │ ├── ecu_kaf_defines.h │ │ │ ├── ecu_kaf_polls.cpp │ │ │ ├── ecu_kle_code.cpp │ │ │ ├── ecu_kle_defines.h │ │ │ ├── ecu_kle_polls.cpp │ │ │ ├── ecu_kom_code.cpp │ │ │ ├── ecu_kom_defines.h │ │ │ ├── ecu_kom_polls.cpp │ │ │ ├── ecu_lim_code.cpp │ │ │ ├── ecu_lim_defines.h │ │ │ ├── ecu_lim_extra_defines.h │ │ │ ├── ecu_lim_polls.cpp │ │ │ ├── ecu_nbt_code.cpp │ │ │ ├── ecu_nbt_defines.h │ │ │ ├── ecu_nbt_polls.cpp │ │ │ ├── ecu_sas_code.cpp │ │ │ ├── ecu_sas_defines.h │ │ │ ├── ecu_sas_polls.cpp │ │ │ ├── ecu_sme_code.cpp │ │ │ ├── ecu_sme_defines.h │ │ │ ├── ecu_sme_polls.cpp │ │ │ ├── ecu_zbe_code.cpp │ │ │ ├── ecu_zbe_defines.h │ │ │ └── ecu_zbe_polls.cpp │ │ ├── src │ │ │ ├── vehicle_minise.cpp │ │ │ └── vehicle_minise.h │ │ └── tools │ │ │ ├── generate_ecu_code.pl │ │ │ ├── generate_ecu_codes.sh │ │ │ └── parseecu.pl │ ├── vehicle_mitsubishi │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── index.rst │ │ │ ├── trio1.png │ │ │ └── trio2.png │ │ └── src │ │ │ ├── mi_can_poll.cpp │ │ │ ├── mi_commands.cpp │ │ │ ├── mi_web.cpp │ │ │ ├── vehicle_mitsubishi.cpp │ │ │ └── vehicle_mitsubishi.h │ ├── vehicle_nissanleaf │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── images │ │ │ │ ├── Leaf-CAN-Tap.jpg │ │ │ │ ├── Leaf-ZE1-CAN-Tap-Wiring.pdf │ │ │ │ ├── SchematicLEAF.png │ │ │ │ ├── TCU.png │ │ │ │ ├── soc-and-soh-display-settings.jpg │ │ │ │ ├── ze1-can-gateway-behind-instrument-cluster.jpg │ │ │ │ ├── ze1-can-gateway-module.jpg │ │ │ │ ├── ze1-error-codes-after-tcu-disconnected.jpg │ │ │ │ ├── ze1-gps-and-gms-antennas.jpg │ │ │ │ ├── ze1-tcu-connector.jpg │ │ │ │ ├── ze1-tcu-location.jpg │ │ │ │ ├── ze1-tcu-unpin1.jpg │ │ │ │ ├── ze1-tcu-unpin2.jpg │ │ │ │ └── ze1-tcu-unpin3.jpg │ │ │ └── index.rst │ │ └── src │ │ │ ├── nl_types.h │ │ │ ├── nl_web.cpp │ │ │ ├── vehicle_nissanleaf.cpp │ │ │ └── vehicle_nissanleaf.h │ ├── vehicle_niu_gtevo │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── nevo_commands.cpp │ │ │ ├── nevo_web.cpp │ │ │ ├── vehicle_niu_gtevo.cpp │ │ │ └── vehicle_niu_gtevo.h │ ├── vehicle_none │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── vehicle_none.cpp │ │ │ └── vehicle_none.h │ ├── vehicle_obdii │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_obdii.cpp │ │ │ └── vehicle_obdii.h │ ├── vehicle_renaulttwizy │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── doc │ │ │ └── CAN-Test-Frames.txt │ │ ├── docs │ │ │ ├── aux-charge-fan.rst │ │ │ ├── aux-charger.rst │ │ │ ├── brakehack.rst │ │ │ ├── brakehack1.png │ │ │ ├── brakehack2.jpg │ │ │ ├── brakehack3.jpg │ │ │ ├── brakehack4.jpg │ │ │ ├── brakehack5.jpg │ │ │ ├── brakehack6.png │ │ │ ├── brakehack7.png │ │ │ ├── commands.rst │ │ │ ├── configuration.rst │ │ │ ├── events.rst │ │ │ ├── index.rst │ │ │ ├── metrics.rst │ │ │ └── notifications.rst │ │ ├── src │ │ │ ├── rt_battmon.cpp │ │ │ ├── rt_battmon.h │ │ │ ├── rt_can.cpp │ │ │ ├── rt_charge.cpp │ │ │ ├── rt_notify.cpp │ │ │ ├── rt_obd2.cpp │ │ │ ├── rt_obd2.h │ │ │ ├── rt_pwrmon.cpp │ │ │ ├── rt_pwrmon.h │ │ │ ├── rt_sevcon.cpp │ │ │ ├── rt_sevcon.h │ │ │ ├── rt_sevcon_faults.cpp │ │ │ ├── rt_sevcon_mon.cpp │ │ │ ├── rt_sevcon_mon.h │ │ │ ├── rt_sevcon_shell.cpp │ │ │ ├── rt_sevcon_tuning.cpp │ │ │ ├── rt_ticker.cpp │ │ │ ├── rt_types.h │ │ │ ├── rt_utils.cpp │ │ │ ├── rt_web.cpp │ │ │ ├── vehicle_renaulttwizy.cpp │ │ │ └── vehicle_renaulttwizy.h │ │ └── tools │ │ │ └── gen_metrics_names.sh │ ├── vehicle_renaultzoe │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── Features.png │ │ │ ├── PIDs_Renault_Zoe.txt │ │ │ └── index.rst │ │ └── src │ │ │ ├── rz_commands.cpp │ │ │ ├── rz_web.cpp │ │ │ ├── vehicle_renaultzoe.cpp │ │ │ └── vehicle_renaultzoe.h │ ├── vehicle_renaultzoe_ph2 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── BCM_pids.cpp │ │ │ ├── EVC_pids.cpp │ │ │ ├── HVAC_pids.cpp │ │ │ ├── INV_pids.cpp │ │ │ ├── LBC_pids.cpp │ │ │ ├── UCM_pids.cpp │ │ │ ├── rz2_commands.cpp │ │ │ ├── rz2_web.cpp │ │ │ ├── vehicle_renaultzoe_ph2.cpp │ │ │ └── vehicle_renaultzoe_ph2.h │ ├── vehicle_smarted │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── bmsdiag.rst │ │ │ ├── commands.rst │ │ │ ├── index.rst │ │ │ └── metrics.rst │ │ └── src │ │ │ ├── ed_can_poll.cpp │ │ │ ├── ed_commands.cpp │ │ │ ├── ed_savestatus.cpp │ │ │ ├── ed_web.cpp │ │ │ ├── vehicle_smarted.cpp │ │ │ └── vehicle_smarted.h │ ├── vehicle_smarteq │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── eq_can.cpp │ │ │ ├── eq_can_poll.cpp │ │ │ ├── eq_commands.cpp │ │ │ ├── eq_ddt4all.cpp │ │ │ ├── eq_features.cpp │ │ │ ├── eq_poller.h │ │ │ ├── eq_ticker.cpp │ │ │ ├── eq_web.cpp │ │ │ ├── vehicle_smarteq.cpp │ │ │ └── vehicle_smarteq.h │ ├── vehicle_teslamodel3 │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_teslamodel3.cpp │ │ │ └── vehicle_teslamodel3.h │ ├── vehicle_teslamodels │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_teslamodels.cpp │ │ │ └── vehicle_teslamodels.h │ ├── vehicle_teslaroadster │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── can_connector.jpg │ │ │ ├── index.rst │ │ │ └── warning.png │ │ ├── msg │ │ │ ├── tr.vece │ │ │ └── vece_to_bin.pl │ │ └── src │ │ │ ├── vehicle_teslaroadster.cpp │ │ │ ├── vehicle_teslaroadster.h │ │ │ ├── vehicle_teslaroadster_ctp.cpp │ │ │ └── vehicle_teslaroadster_ctp.h │ ├── vehicle_thinkcity │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── tc_web.cpp │ │ │ ├── vehicle_thinkcity.cpp │ │ │ └── vehicle_thinkcity.h │ ├── vehicle_toyotarav4ev │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_toyotarav4ev.cpp │ │ │ ├── vehicle_toyotarav4ev.h │ │ │ └── xr4mon.htm │ ├── vehicle_track │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_track.cpp │ │ │ └── vehicle_track.h │ ├── vehicle_voltampera │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── va_ac_preheat.cpp │ │ │ ├── va_notify.cpp │ │ │ ├── va_web.cpp │ │ │ ├── vehicle_voltampera.cpp │ │ │ └── vehicle_voltampera.h │ ├── vehicle_vweup │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── docs │ │ │ ├── 1441200-3.jpeg │ │ │ ├── Charging_Metrics.png │ │ │ ├── Custom_Metrics.png │ │ │ ├── DSC00369_1024.JPG │ │ │ ├── DSC00373_1024.JPG │ │ │ ├── Features.png │ │ │ ├── OCU.jpg │ │ │ ├── T26a-Pins.jpg │ │ │ ├── WebStandardMetrics.html │ │ │ ├── WebStandardMetrics_quote.html │ │ │ ├── app_eup.png │ │ │ ├── cc.png │ │ │ ├── data.png │ │ │ ├── fakra_sma.png │ │ │ ├── grinded_ribbon.png │ │ │ ├── index.rst │ │ │ ├── index_obd.rst │ │ │ ├── index_t26.rst │ │ │ ├── installation │ │ │ │ ├── IMG_8250.JPG │ │ │ │ ├── IMG_8255.JPG │ │ │ │ ├── IMG_8260.JPG │ │ │ │ ├── IMG_8265.JPG │ │ │ │ ├── IMG_8270.JPG │ │ │ │ ├── IMG_8275.JPG │ │ │ │ ├── IMG_8280.JPG │ │ │ │ └── IMG_8285.JPG │ │ │ └── location.png │ │ ├── src │ │ │ ├── .astylerc │ │ │ ├── poll_reply_helper.cpp │ │ │ ├── poll_reply_helper.h │ │ │ ├── vehicle_vweup.cpp │ │ │ ├── vehicle_vweup.h │ │ │ ├── vweup_obd.cpp │ │ │ ├── vweup_obd.h │ │ │ ├── vweup_shell.cpp │ │ │ ├── vweup_t26.cpp │ │ │ ├── vweup_t26.h │ │ │ ├── vweup_utils.h │ │ │ └── vweup_web.cpp │ │ └── utils │ │ │ ├── battsoh.htm │ │ │ ├── cmdmon.htm │ │ │ └── statusmon.htm │ ├── vehicle_zeva │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── vehicle_zeva.cpp │ │ │ └── vehicle_zeva.h │ ├── vehicle_zombie_vcu │ │ ├── component.mk │ │ ├── docs │ │ │ └── index.rst │ │ └── src │ │ │ ├── vehicle_zombie_vcu.cpp │ │ │ └── vehicle_zombie_vcu.h │ ├── vfsedit │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── src │ │ │ ├── openemacs.c │ │ │ ├── openemacs.h │ │ │ ├── vfsedit.cpp │ │ │ └── vfsedit.h │ ├── wolfssh │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── component.mk │ ├── wolfssl │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── component.mk │ │ └── port │ │ │ ├── FreeRTOS.h │ │ │ ├── semphr.h │ │ │ ├── task.h │ │ │ └── user_settings.h │ └── zip │ │ ├── .editorconfig │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── component_objs.mk │ │ ├── include │ │ ├── config.h │ │ ├── zip_archive.h │ │ └── zipconf.h │ │ └── src │ │ └── zip_archive.cpp ├── dependencies.lock ├── html │ ├── bc_s.png │ ├── bdwn.png │ ├── closed.png │ ├── doc.png │ ├── doxygen.css │ ├── doxygen.png │ ├── dynsections.js │ ├── folderclosed.png │ ├── folderopen.png │ ├── graph_legend.dot │ ├── graph_legend.html │ ├── graph_legend.md5 │ ├── index.html │ ├── jquery.js │ ├── menu.js │ ├── menudata.js │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── open.png │ ├── search │ │ ├── close.png │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ └── searchdata.js │ ├── splitbar.png │ ├── sync_off.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ └── tabs.css ├── knownissues.txt ├── latex │ ├── Makefile │ ├── doxygen.sty │ └── refman.tex ├── main │ ├── CMakeLists.txt │ ├── Kconfig │ ├── buffered_shell.cpp │ ├── buffered_shell.h │ ├── component.mk │ ├── console_async.cpp │ ├── console_async.h │ ├── glob_match.cpp │ ├── glob_match.h │ ├── idf_component.yml │ ├── log_buffers.cpp │ ├── log_buffers.h │ ├── metrics_standard.cpp │ ├── metrics_standard.h │ ├── ovms.cpp │ ├── ovms.h │ ├── ovms_boot.cpp │ ├── ovms_boot.h │ ├── ovms_boot.ld │ ├── ovms_command.cpp │ ├── ovms_command.h │ ├── ovms_config.cpp │ ├── ovms_config.h │ ├── ovms_console.cpp │ ├── ovms_console.h │ ├── ovms_events.cpp │ ├── ovms_events.h │ ├── ovms_housekeeping.cpp │ ├── ovms_housekeeping.h │ ├── ovms_led.cpp │ ├── ovms_led.h │ ├── ovms_log.h │ ├── ovms_main.cpp │ ├── ovms_malloc.c │ ├── ovms_malloc.h │ ├── ovms_metrics.cpp │ ├── ovms_metrics.h │ ├── ovms_module.cpp │ ├── ovms_module.h │ ├── ovms_mutex.cpp │ ├── ovms_mutex.h │ ├── ovms_netmanager.cpp │ ├── ovms_netmanager.h │ ├── ovms_notify.cpp │ ├── ovms_notify.h │ ├── ovms_peripherals.cpp │ ├── ovms_peripherals.h │ ├── ovms_semaphore.cpp │ ├── ovms_semaphore.h │ ├── ovms_shell.cpp │ ├── ovms_shell.h │ ├── ovms_time.cpp │ ├── ovms_time.h │ ├── ovms_timer.cpp │ ├── ovms_timer.h │ ├── ovms_utils.cpp │ ├── ovms_utils.h │ ├── ovms_version.cpp │ ├── ovms_version.h │ ├── ovms_vfs.cpp │ ├── ovms_vfs.h │ ├── string_writer.cpp │ ├── string_writer.h │ ├── task_base.cpp │ ├── task_base.h │ ├── terminal.cpp │ ├── terminal.h │ ├── test_framework.cpp │ └── test_framework.h ├── partitions.csv ├── production │ ├── fasttech │ │ ├── fasttech.skus.txt │ │ ├── harmonised.txt │ │ └── stock.pl │ └── qc │ │ └── production_notes.txt ├── support │ ├── a2l │ ├── buildplugins.pl │ ├── partitions16M.csv │ ├── partitions4M.csv │ ├── partitions8M.csv │ ├── sdkconfig.bluetooth.hw31 │ ├── sdkconfig.default.hw30 │ ├── sdkconfig.default.hw31 │ └── sdkconfig.lilygo_tc ├── tests │ └── sim_voltampera.pl ├── todo.txt └── tools │ └── duktape │ ├── component.mk │ ├── configure.sh │ └── ovms-duktape-config.yaml └── hardware ├── Electrical ├── Connector_OBD2.png ├── Connector_TeslaModelS_X437.txt ├── Connector_TeslaModelS_X437A.jpg ├── Connector_TeslaModelS_X437A.txt ├── Connector_TeslaModelS_X437A_numbered.jpg ├── Connector_TeslaRoadster.txt ├── HUD.pdf ├── HUD.txt ├── KS.jpg ├── KS.txt ├── NL.jpg ├── NL.txt ├── OB-L.jpg ├── OB-L.txt ├── OB-R.jpg ├── OB-R.txt ├── OVT1.jpg ├── OVT1.pdf ├── OVT1.txt ├── OVT2.pdf └── OVT2.txt ├── Prototyping ├── BOTTOM.pdf └── TOP.pdf ├── v3.1 ├── Mainboard_PCB_v3.1_20180305.pdf ├── Mainboard_SCH_v3.1_20180305.pdf ├── Modem_PCB_v1.1_20180305.pdf └── Modem_SCH_v1.1_20180305.pdf ├── v3.2 ├── Mainboard_PCB_v3.2_20190610.pdf ├── Mainboard_SCH_v3.2_20190610.pdf ├── Modem_PCB_v3.2_20190610.pdf └── Modem_SCH_v3.2_20190610.pdf └── v3.3 ├── Mainboard_PCB_bottom_v3.3_20211213.pdf ├── Mainboard_PCB_top_v3.3_20211213.pdf ├── Mainboard_SCH_v3.3_20211213.pdf ├── Modem_PCB_bottom_v3.3_20211213.pdf ├── Modem_PCB_top_v3.3_20211213.pdf └── Modem_SCH_v3.3_20211213.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/README.md -------------------------------------------------------------------------------- /client/ovms_v3shell.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/client/ovms_v3shell.pl -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/_static/clipboard.min.js -------------------------------------------------------------------------------- /docs/source/_static/copy-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/_static/copy-button.svg -------------------------------------------------------------------------------- /docs/source/_static/copybutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/_static/copybutton.css -------------------------------------------------------------------------------- /docs/source/_static/copybutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/_static/copybutton.js -------------------------------------------------------------------------------- /docs/source/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/source/cli/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/cli/index.rst -------------------------------------------------------------------------------- /docs/source/components: -------------------------------------------------------------------------------- 1 | ../../vehicle/OVMS.V3/components -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/crtd/can_logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/crtd/can_logging.rst -------------------------------------------------------------------------------- /docs/source/crtd/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/crtd/index.rst -------------------------------------------------------------------------------- /docs/source/docs: -------------------------------------------------------------------------------- 1 | .. -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../README.md 2 | -------------------------------------------------------------------------------- /docs/source/plugin: -------------------------------------------------------------------------------- 1 | ../../plugin -------------------------------------------------------------------------------- /docs/source/protocol_httpapi/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_httpapi/authentication.rst -------------------------------------------------------------------------------- /docs/source/protocol_httpapi/format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_httpapi/format.rst -------------------------------------------------------------------------------- /docs/source/protocol_httpapi/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_httpapi/index.rst -------------------------------------------------------------------------------- /docs/source/protocol_httpapi/requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_httpapi/requests.rst -------------------------------------------------------------------------------- /docs/source/protocol_httpapi/welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_httpapi/welcome.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/auto_provisioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/auto_provisioning.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/backwards_compatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/backwards_compatibility.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/commands.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/encryption_scheme_0x30.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/encryption_scheme_0x30.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/encryption_scheme_0x31.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/encryption_scheme_0x31.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/index.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/messages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/messages.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/startup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/startup.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/terms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/terms.rst -------------------------------------------------------------------------------- /docs/source/protocol_v2/welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/protocol_v2/welcome.rst -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/requirements.txt -------------------------------------------------------------------------------- /docs/source/server/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/server/index.rst -------------------------------------------------------------------------------- /docs/source/server/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/server/installation.rst -------------------------------------------------------------------------------- /docs/source/server/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/server/plugins.rst -------------------------------------------------------------------------------- /docs/source/server/welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/server/welcome.rst -------------------------------------------------------------------------------- /docs/source/userguide/boot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/boot.rst -------------------------------------------------------------------------------- /docs/source/userguide/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/commands.rst -------------------------------------------------------------------------------- /docs/source/userguide/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/components.rst -------------------------------------------------------------------------------- /docs/source/userguide/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/configuration.rst -------------------------------------------------------------------------------- /docs/source/userguide/console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/console.rst -------------------------------------------------------------------------------- /docs/source/userguide/da26-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/da26-pinout.png -------------------------------------------------------------------------------- /docs/source/userguide/ecu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/ecu.rst -------------------------------------------------------------------------------- /docs/source/userguide/egpio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/egpio.rst -------------------------------------------------------------------------------- /docs/source/userguide/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/events.rst -------------------------------------------------------------------------------- /docs/source/userguide/factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/factory.rst -------------------------------------------------------------------------------- /docs/source/userguide/factoryreset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/factoryreset.png -------------------------------------------------------------------------------- /docs/source/userguide/homeassistant.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/homeassistant.rst -------------------------------------------------------------------------------- /docs/source/userguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/index.rst -------------------------------------------------------------------------------- /docs/source/userguide/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/installation.rst -------------------------------------------------------------------------------- /docs/source/userguide/kline-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/kline-1.jpg -------------------------------------------------------------------------------- /docs/source/userguide/kline-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/kline-2.jpg -------------------------------------------------------------------------------- /docs/source/userguide/kline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/kline.rst -------------------------------------------------------------------------------- /docs/source/userguide/locations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/locations.rst -------------------------------------------------------------------------------- /docs/source/userguide/logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/logging.png -------------------------------------------------------------------------------- /docs/source/userguide/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/logging.rst -------------------------------------------------------------------------------- /docs/source/userguide/metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/metrics.rst -------------------------------------------------------------------------------- /docs/source/userguide/module1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/module1.jpg -------------------------------------------------------------------------------- /docs/source/userguide/module2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/module2.jpg -------------------------------------------------------------------------------- /docs/source/userguide/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/notifications.rst -------------------------------------------------------------------------------- /docs/source/userguide/ota.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/ota.rst -------------------------------------------------------------------------------- /docs/source/userguide/ovms-intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/ovms-intro.jpg -------------------------------------------------------------------------------- /docs/source/userguide/prototyping-pcb-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/prototyping-pcb-top.png -------------------------------------------------------------------------------- /docs/source/userguide/prototyping-pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/prototyping-pcb.jpg -------------------------------------------------------------------------------- /docs/source/userguide/scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/scripting.rst -------------------------------------------------------------------------------- /docs/source/userguide/setup1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/setup1.jpg -------------------------------------------------------------------------------- /docs/source/userguide/setup2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/setup2.jpg -------------------------------------------------------------------------------- /docs/source/userguide/setup3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/setup3.jpg -------------------------------------------------------------------------------- /docs/source/userguide/setup4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/setup4.jpg -------------------------------------------------------------------------------- /docs/source/userguide/setup5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/setup5.jpg -------------------------------------------------------------------------------- /docs/source/userguide/setup6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/setup6.jpg -------------------------------------------------------------------------------- /docs/source/userguide/setup7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/setup7.png -------------------------------------------------------------------------------- /docs/source/userguide/slide-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/slide-image-1.jpg -------------------------------------------------------------------------------- /docs/source/userguide/slide-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/slide-image-2.jpg -------------------------------------------------------------------------------- /docs/source/userguide/slide-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/slide-image-3.jpg -------------------------------------------------------------------------------- /docs/source/userguide/slide-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/slide-image-4.jpg -------------------------------------------------------------------------------- /docs/source/userguide/ssltls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/ssltls.rst -------------------------------------------------------------------------------- /docs/source/userguide/time.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/time.rst -------------------------------------------------------------------------------- /docs/source/userguide/tpms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/tpms.rst -------------------------------------------------------------------------------- /docs/source/userguide/vfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/vfs.rst -------------------------------------------------------------------------------- /docs/source/userguide/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/warning.png -------------------------------------------------------------------------------- /docs/source/userguide/warnings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/warnings.rst -------------------------------------------------------------------------------- /docs/source/userguide/webui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/webui.rst -------------------------------------------------------------------------------- /docs/source/userguide/wifi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi.rst -------------------------------------------------------------------------------- /docs/source/userguide/wifi/access-point.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/access-point.rst -------------------------------------------------------------------------------- /docs/source/userguide/wifi/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/client.rst -------------------------------------------------------------------------------- /docs/source/userguide/wifi/wifi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/wifi-1.png -------------------------------------------------------------------------------- /docs/source/userguide/wifi/wifi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/wifi-2.png -------------------------------------------------------------------------------- /docs/source/userguide/wifi/wifi-autostart-ap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/wifi-autostart-ap-1.png -------------------------------------------------------------------------------- /docs/source/userguide/wifi/wifi-autostart-ap-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/wifi-autostart-ap-2.png -------------------------------------------------------------------------------- /docs/source/userguide/wifi/wifi-autostart-client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/wifi-autostart-client-1.png -------------------------------------------------------------------------------- /docs/source/userguide/wifi/wifi-autostart-client-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/docs/source/userguide/wifi/wifi-autostart-client-2.png -------------------------------------------------------------------------------- /flyer/OVMS-A5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/flyer/OVMS-A5.pdf -------------------------------------------------------------------------------- /flyer/OVMS-A5.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/flyer/OVMS-A5.xcf -------------------------------------------------------------------------------- /flyer/OVMS-minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/flyer/OVMS-minimal.png -------------------------------------------------------------------------------- /flyer/OVMS-supported-vehicles .ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/flyer/OVMS-supported-vehicles .ods -------------------------------------------------------------------------------- /flyer/Quickstart-Info.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/flyer/Quickstart-Info.odt -------------------------------------------------------------------------------- /flyer/Quickstart-Info.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/flyer/Quickstart-Info.pdf -------------------------------------------------------------------------------- /logo/OVMS_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_icon.png -------------------------------------------------------------------------------- /logo/OVMS_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_icon.svg -------------------------------------------------------------------------------- /logo/OVMS_logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo.eps -------------------------------------------------------------------------------- /logo/OVMS_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo2.png -------------------------------------------------------------------------------- /logo/OVMS_logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo2.svg -------------------------------------------------------------------------------- /logo/OVMS_logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo3.png -------------------------------------------------------------------------------- /logo/OVMS_logo3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo3.svg -------------------------------------------------------------------------------- /logo/OVMS_logo_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo_1024.png -------------------------------------------------------------------------------- /logo/OVMS_logo_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo_114.png -------------------------------------------------------------------------------- /logo/OVMS_logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo_512.png -------------------------------------------------------------------------------- /logo/OVMS_logo_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo_57.png -------------------------------------------------------------------------------- /logo/OVMS_logo_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logo_72.png -------------------------------------------------------------------------------- /logo/OVMS_logob_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logob_1024.png -------------------------------------------------------------------------------- /logo/OVMS_logob_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logob_114.png -------------------------------------------------------------------------------- /logo/OVMS_logob_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logob_512.png -------------------------------------------------------------------------------- /logo/OVMS_logob_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logob_57.png -------------------------------------------------------------------------------- /logo/OVMS_logob_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logob_72.png -------------------------------------------------------------------------------- /logo/OVMS_logobaw_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logobaw_1024.png -------------------------------------------------------------------------------- /logo/OVMS_logobaw_1024.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/logo/OVMS_logobaw_1024.pxm -------------------------------------------------------------------------------- /plugin/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/README.rst -------------------------------------------------------------------------------- /plugin/abrp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/abrp/README.rst -------------------------------------------------------------------------------- /plugin/auxbatmon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/auxbatmon/README.rst -------------------------------------------------------------------------------- /plugin/auxbatmon/auxbatmon-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/auxbatmon/auxbatmon-screenshot.png -------------------------------------------------------------------------------- /plugin/auxbatmon/auxbatmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/auxbatmon/auxbatmon.htm -------------------------------------------------------------------------------- /plugin/auxbatmon/auxbatmon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/auxbatmon/auxbatmon.js -------------------------------------------------------------------------------- /plugin/chgind/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/chgind/README.rst -------------------------------------------------------------------------------- /plugin/chgind/chgind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/chgind/chgind.js -------------------------------------------------------------------------------- /plugin/edimax/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/edimax/README.rst -------------------------------------------------------------------------------- /plugin/edimax/edimax-status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/edimax/edimax-status.htm -------------------------------------------------------------------------------- /plugin/edimax/edimax.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/edimax/edimax.htm -------------------------------------------------------------------------------- /plugin/edimax/edimax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/edimax/edimax.js -------------------------------------------------------------------------------- /plugin/foglight/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/foglight/README.rst -------------------------------------------------------------------------------- /plugin/foglight/foglight.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/foglight/foglight.htm -------------------------------------------------------------------------------- /plugin/foglight/foglight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/foglight/foglight.js -------------------------------------------------------------------------------- /plugin/pwrmon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/pwrmon/README.rst -------------------------------------------------------------------------------- /plugin/pwrmon/pwrmon-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/pwrmon/pwrmon-screenshot.png -------------------------------------------------------------------------------- /plugin/pwrmon/pwrmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/pwrmon/pwrmon.htm -------------------------------------------------------------------------------- /plugin/pwrmon/pwrmon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/pwrmon/pwrmon.js -------------------------------------------------------------------------------- /plugin/regenmon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/regenmon/README.rst -------------------------------------------------------------------------------- /plugin/regenmon/regenmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/regenmon/regenmon.htm -------------------------------------------------------------------------------- /plugin/repidscan/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/repidscan/README.rst -------------------------------------------------------------------------------- /plugin/repidscan/repidscan-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/repidscan/repidscan-screenshot.png -------------------------------------------------------------------------------- /plugin/repidscan/repidscan.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/repidscan/repidscan.htm -------------------------------------------------------------------------------- /plugin/tasmotasp: -------------------------------------------------------------------------------- 1 | ../plugins/tasmotasp -------------------------------------------------------------------------------- /plugin/v-twizy/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/README.rst -------------------------------------------------------------------------------- /plugin/v-twizy/dashboard-tuneslider/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/dashboard-tuneslider/README.rst -------------------------------------------------------------------------------- /plugin/v-twizy/edriverbms/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/edriverbms/README.rst -------------------------------------------------------------------------------- /plugin/v-twizy/edriverbms/edrvmon-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/edriverbms/edrvmon-screenshot.png -------------------------------------------------------------------------------- /plugin/v-twizy/edriverbms/edrvmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/edriverbms/edrvmon.htm -------------------------------------------------------------------------------- /plugin/v-twizy/page-command/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/page-command/README.rst -------------------------------------------------------------------------------- /plugin/v-twizy/page-command/page-command-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/page-command/page-command-screenshot.jpg -------------------------------------------------------------------------------- /plugin/v-twizy/page-command/page-command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/page-command/page-command.html -------------------------------------------------------------------------------- /plugin/v-twizy/wificonsole/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/wificonsole/README.rst -------------------------------------------------------------------------------- /plugin/v-twizy/wificonsole/WifiConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-twizy/wificonsole/WifiConsole.js -------------------------------------------------------------------------------- /plugin/v-vweup/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-vweup/README.rst -------------------------------------------------------------------------------- /plugin/v-vweup/ecutoolkit/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-vweup/ecutoolkit/README.rst -------------------------------------------------------------------------------- /plugin/v-vweup/ecutoolkit/ecutoolkit-coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-vweup/ecutoolkit/ecutoolkit-coding.png -------------------------------------------------------------------------------- /plugin/v-vweup/ecutoolkit/ecutoolkit-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-vweup/ecutoolkit/ecutoolkit-scan.png -------------------------------------------------------------------------------- /plugin/v-vweup/ecutoolkit/xvu-ecu-tool.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-vweup/ecutoolkit/xvu-ecu-tool.htm -------------------------------------------------------------------------------- /plugin/v-vweup/ecutoolkit/xvu-ecu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugin/v-vweup/ecutoolkit/xvu-ecu.js -------------------------------------------------------------------------------- /plugins/abrp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/abrp/README.rst -------------------------------------------------------------------------------- /plugins/auxbatmon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/auxbatmon/README.rst -------------------------------------------------------------------------------- /plugins/auxbatmon/auxbatmon-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/auxbatmon/auxbatmon-screenshot.png -------------------------------------------------------------------------------- /plugins/auxbatmon/auxbatmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/auxbatmon/auxbatmon.htm -------------------------------------------------------------------------------- /plugins/auxbatmon/auxbatmon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/auxbatmon/auxbatmon.js -------------------------------------------------------------------------------- /plugins/auxbatmon/auxbatmon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/auxbatmon/auxbatmon.json -------------------------------------------------------------------------------- /plugins/chgind/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/chgind/README.rst -------------------------------------------------------------------------------- /plugins/chgind/chgind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/chgind/chgind.js -------------------------------------------------------------------------------- /plugins/chgind/chgind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/chgind/chgind.json -------------------------------------------------------------------------------- /plugins/chgthrottle/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/chgthrottle/README.rst -------------------------------------------------------------------------------- /plugins/chgthrottle/chgthrottle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/chgthrottle/chgthrottle.js -------------------------------------------------------------------------------- /plugins/chgthrottle/chgthrottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/chgthrottle/chgthrottle.json -------------------------------------------------------------------------------- /plugins/edimax/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/edimax/README.rst -------------------------------------------------------------------------------- /plugins/edimax/edimax-status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/edimax/edimax-status.htm -------------------------------------------------------------------------------- /plugins/edimax/edimax.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/edimax/edimax.htm -------------------------------------------------------------------------------- /plugins/edimax/edimax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/edimax/edimax.js -------------------------------------------------------------------------------- /plugins/edimax/edimax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/edimax/edimax.json -------------------------------------------------------------------------------- /plugins/foglight/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/foglight/README.rst -------------------------------------------------------------------------------- /plugins/foglight/foglight.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/foglight/foglight.htm -------------------------------------------------------------------------------- /plugins/foglight/foglight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/foglight/foglight.js -------------------------------------------------------------------------------- /plugins/foglight/foglight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/foglight/foglight.json -------------------------------------------------------------------------------- /plugins/helloworld/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/helloworld/helloworld.js -------------------------------------------------------------------------------- /plugins/helloworld/helloworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/helloworld/helloworld.json -------------------------------------------------------------------------------- /plugins/pwrmon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/pwrmon/README.rst -------------------------------------------------------------------------------- /plugins/pwrmon/pwrmon-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/pwrmon/pwrmon-screenshot.png -------------------------------------------------------------------------------- /plugins/pwrmon/pwrmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/pwrmon/pwrmon.htm -------------------------------------------------------------------------------- /plugins/pwrmon/pwrmon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/pwrmon/pwrmon.js -------------------------------------------------------------------------------- /plugins/pwrmon/pwrmon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/pwrmon/pwrmon.json -------------------------------------------------------------------------------- /plugins/regenmon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/regenmon/README.rst -------------------------------------------------------------------------------- /plugins/regenmon/regenmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/regenmon/regenmon.htm -------------------------------------------------------------------------------- /plugins/regenmon/regenmon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/regenmon/regenmon.json -------------------------------------------------------------------------------- /plugins/repidscan/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/repidscan/README.rst -------------------------------------------------------------------------------- /plugins/repidscan/repidscan-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/repidscan/repidscan-screenshot.png -------------------------------------------------------------------------------- /plugins/repidscan/repidscan.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/repidscan/repidscan.htm -------------------------------------------------------------------------------- /plugins/repidscan/repidscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/repidscan/repidscan.json -------------------------------------------------------------------------------- /plugins/retools/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/retools/README.rst -------------------------------------------------------------------------------- /plugins/retools/retools-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/retools/retools-screenshot.png -------------------------------------------------------------------------------- /plugins/retools/retools.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/retools/retools.htm -------------------------------------------------------------------------------- /plugins/retools/retools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/retools/retools.json -------------------------------------------------------------------------------- /plugins/tasmotasp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/tasmotasp/README.rst -------------------------------------------------------------------------------- /plugins/tasmotasp/tasmotasp-status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/tasmotasp/tasmotasp-status.htm -------------------------------------------------------------------------------- /plugins/tasmotasp/tasmotasp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/tasmotasp/tasmotasp.htm -------------------------------------------------------------------------------- /plugins/tasmotasp/tasmotasp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/tasmotasp/tasmotasp.js -------------------------------------------------------------------------------- /plugins/tasmotasp/tasmotasp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/plugins/tasmotasp/tasmotasp.json -------------------------------------------------------------------------------- /vehicle/OVMS.V3/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/.cproject -------------------------------------------------------------------------------- /vehicle/OVMS.V3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/.gitignore -------------------------------------------------------------------------------- /vehicle/OVMS.V3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/Makefile -------------------------------------------------------------------------------- /vehicle/OVMS.V3/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/changes.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/can.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/can.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/can.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_canswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_canswitch.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_crtd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_crtd.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_crtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_crtd.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_gvret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_gvret.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_gvret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_gvret.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_lawicel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_lawicel.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_lawicel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_lawicel.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_panda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_panda.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_panda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_panda.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_pcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_pcap.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_pcap.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_raw.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canformat_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canformat_raw.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_monitor.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_monitor.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_tcpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_tcpclient.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_tcpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_tcpclient.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_tcpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_tcpserver.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_tcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_tcpserver.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_udpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_udpclient.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_udpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_udpclient.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_udpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_udpserver.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_udpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_udpserver.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_vfs.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canlog_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canlog_vfs.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canplay.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canplay.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canplay_vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canplay_vfs.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canplay_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canplay_vfs.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canutils.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/can/src/canutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/can/src/canutils.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/docs/API.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/docs/API.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/docs/Commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/docs/Commands.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/docs/Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/docs/Commands.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/docs/Intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/docs/Intro.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/docs/Test-Frames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/docs/Test-Frames.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/docs/Usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/docs/Usage.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/docs/index.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/src/canopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/src/canopen.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/src/canopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/src/canopen.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/canopen/src/canopen_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/canopen/src/canopen_shell.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/argtable3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/argtable3/LICENSE -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/argtable3/argtable3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/argtable3/argtable3.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/argtable3/argtable3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/argtable3/argtable3.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/commands.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/esp_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/esp_console.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/linenoise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/linenoise/LICENSE -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/linenoise/linenoise.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/linenoise/linenoise.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console/split_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console/split_argv.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console_ssh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console_ssh/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console_ssh/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console_ssh/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console_ssh/src/console_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console_ssh/src/console_ssh.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console_telnet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console_telnet/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/console_telnet/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/console_telnet/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_base64.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_base64.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_crc.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_crc.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_hmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_hmac.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_hmac.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_md5.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_md5.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_rc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_rc4.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/crypto/crypt_rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/crypto/crypt_rc4.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/.gitignore: -------------------------------------------------------------------------------- 1 | yacclex/dbc* 2 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc_app.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc_app.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc_number.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc_number.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc_parser.y -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/src/dbc_tokeniser.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/src/dbc_tokeniser.l -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/dbc/yacclex/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/dbc/yacclex/readme.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/AUTHORS.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/LICENSE.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.cmdline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.cmdline -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.codepage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.codepage -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.coffee -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.dukdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.dukdebug -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.eval -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.eventloop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.eventloop -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.hello -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.jsoncbor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.jsoncbor -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.jxpretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.jxpretty -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/Makefile.sandbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/Makefile.sandbox -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/README.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/config/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/config/README.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/config/compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/config/compilers.yaml -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/config/examples/enable_fastint.yaml: -------------------------------------------------------------------------------- 1 | # Enable fastint support. 2 | 3 | DUK_USE_FASTINT: true 4 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/config/header-snippets/architecture_fillins.h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/config/platforms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/config/platforms.yaml -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/config/tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/config/tags.yaml -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/debugger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/debugger/Makefile -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/debugger/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/debugger/README.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/debugger/duk_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/debugger/duk_debug.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/debugger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/debugger/package.json -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/duk_dist_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/duk_dist_meta.json -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/examples/README.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/examples/eval/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/examples/eval/eval.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/examples/guide/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/examples/guide/fib.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/extras/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/extras/README.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/extras/cbor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/extras/cbor/Makefile -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/extras/console/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/extras/console/test.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/extras/logging/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/extras/logging/test.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/licenses/commonjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/licenses/commonjs.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/licenses/lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/licenses/lua.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/mandel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/mandel.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/polyfills/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/polyfills/global.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/polyfills/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/polyfills/promise.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_debug.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_error.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_heap.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_henv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_henv.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_js.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_json.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_lexer.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_lexer.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_tval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_tval.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_tval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_tval.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-input/duk_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-input/duk_util.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-noline/duktape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-noline/duktape.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-noline/duktape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-noline/duktape.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src-separate/duk_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src-separate/duk_js.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src/duk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src/duk_config.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src/duktape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src/duktape.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/src/duktape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/src/duktape.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/combine_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/combine_src.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/configure.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/dukutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/dukutil.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/genbuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/genbuiltins.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/genconfig.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/json2yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/json2yaml.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/scan_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/scan_strings.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/duktape/tools/yaml2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/duktape/tools/yaml2json.py -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32adc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32adc/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32adc/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32adc/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32adc/src/esp32adc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32adc/src/esp32adc.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32adc/src/esp32adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32adc/src/esp32adc.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32bluetooth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32bluetooth/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32bluetooth/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32bluetooth/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32can/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32can/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32can/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32can/Kconfig -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32can/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32can/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32can/src/esp32can.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32can/src/esp32can.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32can/src/esp32can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32can/src/esp32can.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32system/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32system/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32system/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32system/esp32system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32system/esp32system.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32system/esp32system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32system/esp32system.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32wifi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32wifi/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32wifi/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32wifi/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32wifi/src/esp32wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32wifi/src/esp32wifi.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/esp32wifi/src/esp32wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/esp32wifi/src/esp32wifi.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ext12v/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ext12v/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ext12v/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ext12v/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ext12v/src/ext12v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ext12v/src/ext12v.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ext12v/src/ext12v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ext12v/src/ext12v.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/gpio_maps/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/gpio_maps/Readme.md -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/gpio_maps/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/gpio_maps/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/gpio_maps/lilygo_tc_v10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/gpio_maps/lilygo_tc_v10.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/gpio_maps/lilygo_tc_v10_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/gpio_maps/lilygo_tc_v10_a.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/gpio_maps/lilygo_tc_v11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/gpio_maps/lilygo_tc_v11.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/id_filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/id_filter/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/id_filter/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/id_filter/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/id_filter/src/id_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/id_filter/src/id_filter.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/id_filter/src/id_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/id_filter/src/id_filter.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/libtelnet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/libtelnet/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/libtelnet/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/libtelnet/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/libtelnet/include/libtelnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/libtelnet/include/libtelnet.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/libtelnet/src/libtelnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/libtelnet/src/libtelnet.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/max7317/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/max7317/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/max7317/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/max7317/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/max7317/src/max7317.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/max7317/src/max7317.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/max7317/src/max7317.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/max7317/src/max7317.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mcp2515/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mcp2515/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mcp2515/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mcp2515/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mcp2515/src/mcp2515.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mcp2515/src/mcp2515.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mcp2515/src/mcp2515.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mcp2515/src/mcp2515.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mcp2515/src/mcp2515_regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mcp2515/src/mcp2515_regdef.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/microrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/microrl/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/microrl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/microrl/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/microrl/microrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/microrl/microrl.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/microrl/microrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/microrl/microrl.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/microrl/microrl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/microrl/microrl_config.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/.mbedignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mongoose/.mbedignore -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mongoose/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mongoose/LICENSE -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/Makefile.projbuild: -------------------------------------------------------------------------------- 1 | CFLAGS += -mlongcalls -DMG_LOCALS -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mongoose/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/include/.gitignore: -------------------------------------------------------------------------------- 1 | mg_version.h 2 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/include/mg_locals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mongoose/include/mg_locals.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/mongoose/mg_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/mongoose/mg_version.h.in -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/obd2ecu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/obd2ecu/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/obd2ecu/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/obd2ecu/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/obd2ecu/src/obd2ecu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/obd2ecu/src/obd2ecu.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/obd2ecu/src/obd2ecu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/obd2ecu/src/obd2ecu.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_buffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_buffer/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_buffer/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_buffer/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_buffer/src/ovms_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_buffer/src/ovms_buffer.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_cellular/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_cellular/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_cellular/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_cellular/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_cellular/src/gsmmux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_cellular/src/gsmmux.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_cellular/src/gsmmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_cellular/src/gsmmux.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_cellular/src/gsmnmea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_cellular/src/gsmnmea.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_cellular/src/gsmnmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_cellular/src/gsmnmea.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_cellular/src/gsmpppos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_cellular/src/gsmpppos.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_http/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_http/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_http/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_http/src/ovms_http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_http/src/ovms_http.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_http/src/ovms_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_http/src/ovms_http.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_http/src/ovms_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_http/src/ovms_net.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_http/src/ovms_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_http/src/ovms_net.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_location/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_location/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_location/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_location/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_mdns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_mdns/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_mdns/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_mdns/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_mdns/src/ovms_mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_mdns/src/ovms_mdns.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_mdns/src/ovms_mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_mdns/src/ovms_mdns.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_netlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_netlib/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_netlib/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_netlib/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_ota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_ota/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_ota/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_ota/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_ota/src/ovms_ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_ota/src/ovms_ota.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_ota/src/ovms_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_ota/src/ovms_ota.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_plugins/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_plugins/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_plugins/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/docs/foglight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/docs/foglight.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/docs/index.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/jsmodsrc/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/jsmodsrc/json.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/src/ovms_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/src/ovms_script.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/umm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/umm/LICENSE -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/umm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/umm/README.md -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/umm/umm_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/umm/umm_info.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/umm/umm_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/umm/umm_malloc.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/umm/umm_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/umm/umm_malloc.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_script/umm/umm_poison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_script/umm/umm_poison.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_server/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_server/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_server/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_server/src/ovms_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_server/src/ovms_server.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_tls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_tls/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_tls/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_tls/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_tls/src/ovms_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_tls/src/ovms_tls.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_tls/src/ovms_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_tls/src/ovms_tls.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_tpms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_tpms/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_tpms/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_tpms/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_tpms/src/ovms_tpms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_tpms/src/ovms_tpms.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_webserver/.gitignore: -------------------------------------------------------------------------------- 1 | src/ovms_webserver_mtimes.h 2 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_webserver/assets/README.zones: -------------------------------------------------------------------------------- 1 | MIT License 2 | Source: https://github.com/nayarsystems/posix_tz_db 3 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_webserver/assets/intro.css: -------------------------------------------------------------------------------- 1 | /* Combined CSS Assets Intro */ 2 | @charset "utf-8"; 3 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_webserver/dev/assets: -------------------------------------------------------------------------------- 1 | ../assets -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_webserver/dev/home: -------------------------------------------------------------------------------- 1 | home.htm -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/ovms_webserver/tools/mksrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/ovms_webserver/tools/mksrc -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pcp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pcp/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pcp/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pcp/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pcp/pcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pcp/pcp.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pcp/pcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pcp/pcp.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/poller/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/poller/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/poller/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/poller/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/poller/docs/API.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/poller/docs/API.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/poller/docs/Commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/poller/docs/Commands.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/poller/docs/Intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/poller/docs/Intro.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/poller/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/poller/docs/index.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/powermgmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/powermgmt/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/powermgmt/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/powermgmt/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/powermgmt/powermgmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/powermgmt/powermgmt.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/powermgmt/powermgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/powermgmt/powermgmt.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pushover/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pushover/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pushover/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pushover/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pushover/src/pushover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pushover/src/pushover.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/pushover/src/pushover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/pushover/src/pushover.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/retools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/retools/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/retools/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/retools/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/retools/src/retools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/retools/src/retools.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/retools/src/retools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/retools/src/retools.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/retools/tools/crtdreplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/retools/tools/crtdreplay.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/sdcard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/sdcard/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/sdcard/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/sdcard/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/sdcard/src/sdcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/sdcard/src/sdcard.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/sdcard/src/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/sdcard/src/sdcard.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_5360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_5360.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_5360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_5360.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_7000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_7000.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_7000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_7000.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_7600.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_7600.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_7600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_7600.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_7670.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_7670.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/simcom/src/simcom_7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/simcom/src/simcom_7670.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/spi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/spi/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/spi/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/spi/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/spi/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/spi/spi.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/spi/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/spi/spi.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/strverscmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/strverscmp/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/strverscmp/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/strverscmp/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/swcan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/swcan/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/swcan/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/swcan/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/swcan/src/swcan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/swcan/src/swcan.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/swcan/src/swcan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/swcan/src/swcan.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/docs/VW-TP-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/docs/VW-TP-2.0.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/vehicle.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/vehicle.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/vehicle_bms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/vehicle_bms.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/vehicle_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/vehicle_common.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle/vehicle_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle/vehicle_shell.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_bmwi3/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_bmwi3/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_bmwi3/dev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_bmwi3/dev/README -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_bmwi3/dev/atm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_bmwi3/dev/atm.json -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_bmwi3/dev/bdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_bmwi3/dev/bdc.json -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_dbc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_dbc/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_dbc/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_dbc/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_dbc/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_dbc/docs/index.rst -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_demo/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_demo/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_energica/.gitignore: -------------------------------------------------------------------------------- 1 | # QtCreator project files 2 | ovms_energica.* 3 | .qtc_clangd/ 4 | mk 5 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_mgev/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_mgev/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_mgev/src/mg_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_mgev/src/mg_auth.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_minise/dev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_minise/dev/README -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_none/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_none/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_obdii/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_obdii/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_track/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_track/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_vweup/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_vweup/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_vweup/docs/OCU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_vweup/docs/OCU.jpg -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_vweup/docs/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_vweup/docs/cc.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vehicle_zeva/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vehicle_zeva/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vfsedit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vfsedit/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vfsedit/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vfsedit/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vfsedit/src/openemacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vfsedit/src/openemacs.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vfsedit/src/openemacs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vfsedit/src/openemacs.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vfsedit/src/vfsedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vfsedit/src/vfsedit.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/vfsedit/src/vfsedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/vfsedit/src/vfsedit.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/wolfssh/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/wolfssh/README.md -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssh/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/wolfssh/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/wolfssl/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/wolfssl/README.md -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/wolfssl/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssl/port/FreeRTOS.h: -------------------------------------------------------------------------------- 1 | #include "freertos/FreeRTOS.h" 2 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssl/port/semphr.h: -------------------------------------------------------------------------------- 1 | #include "freertos/semphr.h" 2 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/wolfssl/port/task.h: -------------------------------------------------------------------------------- 1 | #include "freertos/task.h" 2 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/.editorconfig -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/component_objs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/component_objs.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/include/config.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/include/zip_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/include/zip_archive.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/include/zipconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/include/zipconf.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/components/zip/src/zip_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/components/zip/src/zip_archive.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/dependencies.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/dependencies.lock -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/bc_s.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/bdwn.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/closed.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/doc.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/doxygen.css -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/doxygen.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/dynsections.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/folderclosed.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/folderopen.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/graph_legend.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/graph_legend.dot -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/graph_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/graph_legend.html -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/index.html -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/jquery.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/menu.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/menudata.js: -------------------------------------------------------------------------------- 1 | var menudata={children:[ 2 | {text:"Main Page",url:"index.html"}]} 3 | -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/nav_f.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/nav_g.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/nav_h.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/open.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/close.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/mag_sel.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/nomatches.html -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/search.css -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/search.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/search_l.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/search_m.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/search_r.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/search/searchdata.js -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/splitbar.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/sync_off.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/sync_on.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/tab_a.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/tab_b.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/tab_h.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/tab_s.png -------------------------------------------------------------------------------- /vehicle/OVMS.V3/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/html/tabs.css -------------------------------------------------------------------------------- /vehicle/OVMS.V3/knownissues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/knownissues.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/latex/Makefile -------------------------------------------------------------------------------- /vehicle/OVMS.V3/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/latex/doxygen.sty -------------------------------------------------------------------------------- /vehicle/OVMS.V3/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/latex/refman.tex -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/CMakeLists.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/Kconfig -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/buffered_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/buffered_shell.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/buffered_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/buffered_shell.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/console_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/console_async.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/console_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/console_async.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/glob_match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/glob_match.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/glob_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/glob_match.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/idf_component.yml -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/log_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/log_buffers.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/log_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/log_buffers.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/metrics_standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/metrics_standard.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/metrics_standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/metrics_standard.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_boot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_boot.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_boot.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_boot.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_boot.ld -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_command.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_command.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_config.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_config.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_console.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_console.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_events.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_events.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_housekeeping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_housekeeping.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_housekeeping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_housekeeping.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_led.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_led.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_log.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_main.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_malloc.c -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_malloc.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_metrics.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_metrics.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_module.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_module.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_mutex.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_mutex.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_netmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_netmanager.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_netmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_netmanager.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_notify.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_notify.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_peripherals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_peripherals.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_peripherals.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_semaphore.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_semaphore.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_shell.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_shell.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_time.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_time.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_timer.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_timer.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_utils.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_utils.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_version.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_version.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_vfs.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/ovms_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/ovms_vfs.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/string_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/string_writer.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/string_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/string_writer.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/task_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/task_base.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/task_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/task_base.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/terminal.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/terminal.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/test_framework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/test_framework.cpp -------------------------------------------------------------------------------- /vehicle/OVMS.V3/main/test_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/main/test_framework.h -------------------------------------------------------------------------------- /vehicle/OVMS.V3/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/partitions.csv -------------------------------------------------------------------------------- /vehicle/OVMS.V3/production/fasttech/fasttech.skus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/production/fasttech/fasttech.skus.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/production/fasttech/harmonised.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/production/fasttech/harmonised.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/production/fasttech/stock.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/production/fasttech/stock.pl -------------------------------------------------------------------------------- /vehicle/OVMS.V3/production/qc/production_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/production/qc/production_notes.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/a2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/a2l -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/buildplugins.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/buildplugins.pl -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/partitions16M.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/partitions16M.csv -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/partitions4M.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/partitions4M.csv -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/partitions8M.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/partitions8M.csv -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/sdkconfig.bluetooth.hw31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/sdkconfig.bluetooth.hw31 -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/sdkconfig.default.hw30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/sdkconfig.default.hw30 -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/sdkconfig.default.hw31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/sdkconfig.default.hw31 -------------------------------------------------------------------------------- /vehicle/OVMS.V3/support/sdkconfig.lilygo_tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/support/sdkconfig.lilygo_tc -------------------------------------------------------------------------------- /vehicle/OVMS.V3/tests/sim_voltampera.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/tests/sim_voltampera.pl -------------------------------------------------------------------------------- /vehicle/OVMS.V3/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/todo.txt -------------------------------------------------------------------------------- /vehicle/OVMS.V3/tools/duktape/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/tools/duktape/component.mk -------------------------------------------------------------------------------- /vehicle/OVMS.V3/tools/duktape/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/OVMS.V3/tools/duktape/configure.sh -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/Connector_OBD2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/Connector_OBD2.png -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/HUD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/HUD.pdf -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/HUD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/HUD.txt -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/KS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/KS.jpg -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/KS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/KS.txt -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/NL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/NL.jpg -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/NL.txt -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OB-L.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OB-L.jpg -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OB-L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OB-L.txt -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OB-R.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OB-R.jpg -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OB-R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OB-R.txt -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OVT1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OVT1.jpg -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OVT1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OVT1.pdf -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OVT1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OVT1.txt -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OVT2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OVT2.pdf -------------------------------------------------------------------------------- /vehicle/hardware/Electrical/OVT2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Electrical/OVT2.txt -------------------------------------------------------------------------------- /vehicle/hardware/Prototyping/BOTTOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Prototyping/BOTTOM.pdf -------------------------------------------------------------------------------- /vehicle/hardware/Prototyping/TOP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/Prototyping/TOP.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.1/Mainboard_PCB_v3.1_20180305.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.1/Mainboard_PCB_v3.1_20180305.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.1/Mainboard_SCH_v3.1_20180305.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.1/Mainboard_SCH_v3.1_20180305.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.1/Modem_PCB_v1.1_20180305.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.1/Modem_PCB_v1.1_20180305.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.1/Modem_SCH_v1.1_20180305.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.1/Modem_SCH_v1.1_20180305.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.2/Mainboard_PCB_v3.2_20190610.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.2/Mainboard_PCB_v3.2_20190610.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.2/Mainboard_SCH_v3.2_20190610.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.2/Mainboard_SCH_v3.2_20190610.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.2/Modem_PCB_v3.2_20190610.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.2/Modem_PCB_v3.2_20190610.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.2/Modem_SCH_v3.2_20190610.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.2/Modem_SCH_v3.2_20190610.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.3/Mainboard_SCH_v3.3_20211213.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.3/Mainboard_SCH_v3.3_20211213.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.3/Modem_PCB_top_v3.3_20211213.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.3/Modem_PCB_top_v3.3_20211213.pdf -------------------------------------------------------------------------------- /vehicle/hardware/v3.3/Modem_SCH_v3.3_20211213.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-Monitoring-System-3/HEAD/vehicle/hardware/v3.3/Modem_SCH_v3.3_20211213.pdf --------------------------------------------------------------------------------