I'm working on a project with esp32 microcontroller and I have a specific requirement.
I need to flash two separate application binaries on the device:
Producer Binary: Created by the product owner, providing essential APIs.
Consumer Binary: Developed by the client, utilizing the APIs provided by the producer.
The idea is for the producer to generate a binary with the necessary APIs and share it with the consumer. The consumer will then develop their application, which consumes these APIs, and generate their own binary.
My questions are:
Is it possible to flash two separate application binaries on esp32.
If so, what would be the best approach to achieve this? Should we use a bootloader or some other mechanism to manage the binaries?
Are there any specific configurations or considerations we need to keep in mind to ensure the two binaries can coexist and interact properly?
Any guidance or examples on how to set this up would be greatly appreciated!
Flashing Two Application Binaries on ESP32 and intract with each other.
-
- Posts: 4
- Joined: Mon Jul 17, 2023 4:41 pm
-
- Posts: 9715
- Joined: Thu Nov 26, 2015 4:08 am
Re: Flashing Two Application Binaries on ESP32 and intract with each other.
Not in such a way that they interact: applications will always be separate in that you can boot into one or the other, but they can never have code running at the same time, and you need a reboot to switch.
Generally, people get around this by having one party produce a (binary) library and have the 2nd party statically link with that. I've also seen solutions where the consumer code runs on a VM, e.g. in webassembly.
Generally, people get around this by having one party produce a (binary) library and have the 2nd party statically link with that. I've also seen solutions where the consumer code runs on a VM, e.g. in webassembly.
-
- Posts: 4
- Joined: Mon Jul 17, 2023 4:41 pm
Re: Flashing Two Application Binaries on ESP32 and intract with each other.
Thanks for the response,
I didn't get your poiont here "I've also seen solutions where the consumer code runs on a VM, e.g. in webassembly."
Do we have any existing examples to achive this other then "esp-idf/examples/build_system/cmake/import_prebuilt"
I didn't get your poiont here "I've also seen solutions where the consumer code runs on a VM, e.g. in webassembly."
Do we have any existing examples to achive this other then "esp-idf/examples/build_system/cmake/import_prebuilt"
-
- Posts: 9715
- Joined: Thu Nov 26, 2015 4:08 am
Re: Flashing Two Application Binaries on ESP32 and intract with each other.
The manufacturer delivers a full binary with their drivers and OTA stuff and otherwise magic stuff including a WebAssembly VM interpreter. The consumer then writes their app in any language that compiles to WebAssembly, uploads it, and it gets run in the VM. The bindings within WebAssembly can make it interact with the producers drivers etc.srikanth.palvai95 wrote: ↑Wed Jul 03, 2024 8:14 amI didn't get your poiont here "I've also seen solutions where the consumer code runs on a VM, e.g. in webassembly."
We do not. In what way do you think this example is incomplete?Do we have any existing examples to achive this other then "esp-idf/examples/build_system/cmake/import_prebuilt"
Who is online
Users browsing this forum: No registered users and 76 guests