Questions tagged [ota]

Over-the-air wireless communication

427 questions
0
votes
1 answer

Customization in OTA flow between IOT device and IOT HUB service

I am working on device update or OTA implementation with azure. Azure has device update feature with IOT hub. I am utilizing same service for my task. I want to customized the IOT device update code for OTA operation. Normally IOT HUB Service…
0
votes
1 answer

expo OTA contains .env secrets React-Native

Problem: expo OTA bundle contains plain secrets. I have a question regarding "what is the right way to fix it". We have a expo react-native app written in typescript. This app call an API endpoints, after initial auth and OAuth2 token retrival (not…
morf
  • 125
  • 11
0
votes
1 answer

Is there a way to set the HTTP Header values for an esp_https_ota call?

I'm trying to download a firmware.bin file that is produced in a private GitHub repository. I have the code that is finding the right asset URL to download the file and per GitHub instructions the accept header needs to be set to accept:…
0
votes
1 answer

Can I share ipa files OTA without collecting UDIDs through a 99$ publisher account

I want to know can ipa files be shared through a 99$ publisher account without demanding the UDID of your testers, as in an enterprise account.
0
votes
1 answer

Dispaching on STM32

I want to update my mcu firmware on the air.The method I choose is Delta Firmware Update which find differences between old firmware & new one then a patch file is generated which can use for constructing new firmware on the mcu side. I can build…
0
votes
1 answer

Do we need CRC check while downloading file from server in esp8266 nodeMCU using arduino IDE?

I want to download a bin file from server for OTA process. But how I can download the whole file without any error. I am using esp8266 on Arduino IDE core. For OTA, I am using updater class of esp8266 core library. Is it good to use error checking…
0
votes
0 answers

ESP32 OTA via ETH

I have an running and working system which is an ESP32 with an LAN8720 to communicate over the internet. Now just plane HTTP requests (via the WiFiClientSecure client) work like a charm. But I also need (over https) to update the device. Now I…
Robin
  • 1,567
  • 3
  • 25
  • 67
0
votes
0 answers

How to enable the server to automatically download OTA bin files from remote IP server in ESP32 WebServer and initiate OTA process

I was trying to understand if it is possible(if yes how) to continue the OTA process after downloading the bin file hosted in a remote IP (within the network) ? The code is to be running on ESP32. (Edit) i am trying to introduce a method of self…
Shariq Azim
  • 136
  • 16
0
votes
2 answers

Trying to understand ESP32 OTA over the GSM code

I am performing ESP32 OTA over the GSM. I have found some example code online, modified it slightly based on my board connections and was able to sucesfully perform a firmware update. I use lilygo ESP32 GSM development board. However, it frustrates…
Lukas Petrikas
  • 65
  • 2
  • 11
0
votes
1 answer

Which eUICC capabilities and how should SMSR use to segment SCP03t script?

From section 5.4.4 of SGP.02-v4.2: The SM-SR has the responsibility to build the final Command script, depending on eUICC capabilities and selected protocol It is clear that in some cases SM-SR should split the command script that it received in…
0
votes
1 answer

AWS IoT Jobs and OTA Updates when device is in sleep mode

What happens if I send an OTA Update and the device is in deep sleep mode? It wakes up immediately, waits for the next wake up and then runs automatically or it does not run at all on it?
0
votes
1 answer

Issue in compiling bootloader (ATMEGA2560) using make command

From last week i am working OTA system for arduino mega. I got one bootloader which flashes firmware from SD card. Here is the link of the github repository…
0
votes
0 answers

AOSP: where to store factory data?

I am working on a custom device for which I customized the Android port of a TechNexion i.MX8 SOM. During production, our factory requires that production data (order number, serial number, and other production related information for traceability)…
0
votes
2 answers

Is it possible to "capture/intercept" and download the stock firmware file during an OTA update?

My Goal: Extract my phones stock firmware (specifically boot/recovery image) during an OTA update from manufacturer. Why I Want To: I've been trying to get root access or flash a custom recovery on another phone I recently got. Its a UMX Model…
0
votes
1 answer

How to update many mobile applications from one place?

I'm using React-Native. I have a mobile app and in near future I'll copy-paste it for many customers. All features will be same except colour, logo and etc. Let's assume that I have 100 mobile Apps and when there are some bugs or errors on my api or…