You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
is there a documentation on the mkfw tool? Just from the source:
usage: %s description tile type subtype length label binary [...]
Its not so selfexplaining. Also from the Wiki, you have two "examples" without any comments what you are doing there:
./mkfw test tile.raw 0 16 1048576 app Hello_World.ino.bin
and
./mkfw test tile.raw 0 16 1048576 app Weather_Station.ino.bin 1 130 1048576 "spiffs" spiffs.bin
It would be nice if these question could be easily answered on the wiki:
What is the purpose of mkfw? (And please not a short sentence like: mkfw is for making a firmware (.fw) file)
Is the length fixed? in both examples you use the value 1048576
What is type/subtype for?
What is label for?
Maybe a whole new page on the wiki explaining your "bootloader/firmware", what it does, how the memory map is looking like and what you do with the mkfw tool and how you integrae yourself next to the bootloader/freertos of the ESP32 SDK. This would be awesome for anyone using the odroid-go platform to develop some stuff. Better than reverse engeneering all stuff.
The text was updated successfully, but these errors were encountered:
Also from the Wiki, you have two "examples" without any comments what you are doing there:
The wiki is owned and maintained by HardKernel (HK).
What is the purpose of mkfw?
The 'mkfw' tool allows an ESP32 esp-idf application to be packaged for use with the odroid-go-firmware (this repo). It encapsulates the program binary and flash partition metadata into a single file allowing the ODROID-GO to "self flash" without an external PC.
Is the length fixed?
The length specifies the partition size required by the application. It may be larger than the program binary and must be a 64K aligned size due to flash page requirements. It is limited by the amount of free flash space available (15MB on ODROID-GO).
The label is the text description displayed by the odroid-go-firmware (this repo) when the .fw file is selected.
Maybe a whole new page on the wiki explaining your "bootloader/firmware", what it does, how the memory map is looking like and what you do with the mkfw tool and how you integrae yourself next to the bootloader/freertos of the ESP32 SDK.
The odroid-go-firmware uses the esp-idf provided bootloader unmodified. Its purpose is to self flash the device. It is not active or resident in memory when an application is in use.
Hi,
is there a documentation on the mkfw tool? Just from the source:
usage: %s description tile type subtype length label binary [...]
Its not so selfexplaining. Also from the Wiki, you have two "examples" without any comments what you are doing there:
./mkfw test tile.raw 0 16 1048576 app Hello_World.ino.bin
and
./mkfw test tile.raw 0 16 1048576 app Weather_Station.ino.bin 1 130 1048576 "spiffs" spiffs.bin
It would be cool if there was a little bit more explaination on the wiki:
https://wiki.odroid.com/odroid_go/arduino_app
It would be nice if these question could be easily answered on the wiki:
Maybe a whole new page on the wiki explaining your "bootloader/firmware", what it does, how the memory map is looking like and what you do with the mkfw tool and how you integrae yourself next to the bootloader/freertos of the ESP32 SDK. This would be awesome for anyone using the odroid-go platform to develop some stuff. Better than reverse engeneering all stuff.
The text was updated successfully, but these errors were encountered: