@mikrojs/firmware 0.20.0-next.20260904225731 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/mikrojs/mik_main.cpp +8 -0
- package/package.json +3 -3
- package/prebuilds/esp32/bootloader/bootloader.bin +0 -0
- package/prebuilds/esp32/mikrojs.bin +0 -0
- package/prebuilds/esp32c3/bootloader/bootloader.bin +0 -0
- package/prebuilds/esp32c3/mikrojs.bin +0 -0
- package/prebuilds/esp32c5/bootloader/bootloader.bin +0 -0
- package/prebuilds/esp32c5/mikrojs.bin +0 -0
- package/prebuilds/esp32c6/bootloader/bootloader.bin +0 -0
- package/prebuilds/esp32c6/mikrojs.bin +0 -0
- package/prebuilds/esp32s3/bootloader/bootloader.bin +0 -0
- package/prebuilds/esp32s3/mikrojs.bin +0 -0
|
@@ -606,6 +606,14 @@ void MIK_Main(void) {
|
|
|
606
606
|
transport.session_end = platform_session_end;
|
|
607
607
|
transport.session_end_ctx = nullptr;
|
|
608
608
|
|
|
609
|
+
/* Record the memory the app starts from, taken here rather than at the
|
|
610
|
+
* first runtime attach: in test mode that attach comes after the test path
|
|
611
|
+
* list, the supervisor's scratch buffer, the test helper globals and a
|
|
612
|
+
* runtime free/create cycle, so the reading would describe the harness
|
|
613
|
+
* instead of the app. Nothing below this line has run yet in either mode,
|
|
614
|
+
* so both report the same figure. */
|
|
615
|
+
MIK_CaptureBootMemory(mik_rt);
|
|
616
|
+
|
|
609
617
|
/* Test-harness mode: if package.json carries a non-empty "tests" array,
|
|
610
618
|
* run each listed file in its own fresh runtime through one transport
|
|
611
619
|
* session. The test runtime calls __testFileDone after emitting its
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikrojs/firmware",
|
|
3
|
-
"version": "0.20.0
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "Mikro.js ESP32 firmware: ESP-IDF component, build tools, and project template",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"esp-idf",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"esbuild": "^0.28.0",
|
|
50
|
-
"@mikrojs/native": "0.20.0
|
|
51
|
-
"@mikrojs/quickjs": "0.20.0
|
|
50
|
+
"@mikrojs/native": "0.20.0",
|
|
51
|
+
"@mikrojs/quickjs": "0.20.0"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">=24.0.0"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|