I want the latest SUOTA app source code for both Android and iOS.
https://itunes.apple.com/jp/app/dialog-suota/id953141262?mt=8
https://play.google.com/store/apps/details?id=com.dialog.suota.
以下页面上发布的源代码似乎是旧的。
https://support.dialog-semiconductor.com/connectivity/product/da14583?qt...
Android, iOS 両方の最新の SUOTA app のソースコードが欲しいです。
https://itunes.apple.com/jp/app/dialog-suota/id953141262?mt=8
https://play.google.com/store/apps/details?id=com.dialog.suota.
下载页面で公开されているソースは古いようですようです。
https://support.dialog-semiconductor.com/connectivity/product/da14583?qt...
Keywords:
Device:
Hi Sean666,
您想要Souta还是刚刚APK的源代码?您应该能够直接从Google Play下载APK。
谢谢mt_dialog.
Hi MT_dialog,
我想要Android和iOS的最新“源代码”。(不是apk)
They are for SUOTA app.
The following links is old.
https://support.dialog-semiconductor.com/connectivity/product/da14583?qt...
Best regards,
肖恩
旧的文件名?
suota-ios-3.200.6.3-src.tar.gz
SUOTA-Android-3.190.10.3-src.tar.gz
Hi MT_dialog,
我对以下线程评论了。
How can I get the SUOTA source code for both Android & IOS
https://support.dialog-semicondiondiondum/how-can-i-get-suota-source-code ...
Best regards,
肖恩
Hi Sean666,
The link that your are mentioning that is old is just the APK, the source code isn't provided directly via the support site only via request.
因此,发送了一个带有SLA的邮件将发送已注册的电子邮件地址。
谢谢mt_dialog.
Hi MT_dialog
I would like to get the source code for the latest SUOTA app.
Thanks
Hi MT_dialog
非常感谢你。
I mailed you.
Regards,
肖恩
Hi MT_dialog
I would like to get the source code for the latest SUOTA app.
Thanks
嗨ankitdaf,
A mail is sent to the registered email address.
谢谢mt_dialog.
Suota Code.
Hi xjyriia,
请转到580产品页面并选择“软件和工具”选项卡,检查移动部分,以及您将能够找到Suota源代码。
谢谢mt_dialog.
嗨,目前我们是developing the SUOTA function for Android mobile application. And I would like to find out can I get the source code for Android ? If yes, so how?
我找到了这样的链接https://support.dialog-semiconductor.com/resource/suota-source-code-soft..., but I didn't understand how to get the source code for Android SDK.
artus91,
If you go in the Software and Tools tab in the Mobile section you will be able to find the SUOTA source code for iOS and Android, all you have to do is just to accept the licencing and you will be able to download the Source code.
谢谢mt_dialog.
Hi MT_dialog
我也想获取最新的Suota应用程序的源代码。
Thanks!
Hi zwffcb,
源代码在支持站点上上传,您可以遵循上面所示的路径以便获得它。
谢谢mt_dialog.
Hi ,
I am developing iOS application where I need to update my ble firmware from iOS app
I am working on swift version please give me the access to source code. please help Me in this ...
Thanks a lot in advance
Hi siva sandeep1812,
您可以在我们的支持页面中找到Android / IOS设备的Souta源代码。如需下载它,请访问我们的Portal页面https://support.dialog-semiconductor.com/然后输入“连接:蓝牙低能量和802.15.4”。从顶部菜单栏单击“产品”,然后选择“DA14580”。雷电竞官网登录在“软件和工具”窗口中,点击“Mobile”标签,然后您将能够找到所有可用的移动应用程序。雷竞技安卓下载请转到OTA应用程序,您会发现雷竞技安卓下载SUOTA - Source Code (Software update over the air) - Android。请注意,您必须先接受软件许可协议(SLA)。请尝试下载它并击中下载中出现的挂锁。之后,您将不得不同意许可协议,并且您应该等到您的访问权限。如果您发现描述的程序有用,请将答案标记为已接受。
谢谢,PM_DIALOG.
Hi Team,
Thanks a lot I got it ..... Thanks for your support
大家好 ,
我正在使用我所有蓝牙类开发SWIFT中的iOS应用程序。如何使用Suota模块(目标C代码)来更新Swift App的固件。通过仅选中所需的类(所有设备管理器类都是由我们开发的,现在我想使用Suota实现固件更新[.img]文件)。请帮帮我。
喋喋不休
嗨Fitz,
很高兴您能够下载Suota Mobile应用程序的源代码。如果您发现描述的程序有用,请将答案标记为已接受。
谢谢,PM_DIALOG.
Hi siva sandeep1812,
这不是一项直截了当的任务,因为我们的iOS应用程序中的Suota实现与相应的UI元素以及我们自己的蓝牙连接逻辑实现。您需要从我们的实现中提取相关代码并将其插入到您的(如果您不想重用我们的应用UI)并将所需的苏格达逻辑添加到蓝牙连接管理器。
相关课程如下:
- BluetoothManager: Implements the scan and connection/disconnection logic (central manager delegate). Since you have your own implementation, the main thing to replicate is the notifications it sends on various events (e.g. BluetoothManagerDisconnectedFromDevice).
- GenericServiceManager, SUOTAServiceManager: Implement the peripheral communication logic (initiate operations and peripheral delegate). If you use your own implementation, you need to replicate the notifications it sends (e.g. GenericServiceManagerDidReceiveValue) and the operation API it provides (e.g. read/write value). It also implements some of the SUOTA initialization logic, like checking the SUOTA service and reading device info and SUOTA features.
- FiletableViewController:实现文件选择逻辑。存储所选文件以便通过上载过程使用,因此必须复制这一点。
- GenericParamsViewController, SUOTAParamsViewController: Implement the SUOTA configuration logic. These may be skipped entirely by using default options, but the configuration must be set like in the prepareForSegue method of SUOTAParamsViewController.
- SUOTAViewController: Implements the upload procedure. If you don't want to use the view controller, you need to extract the SUOTA logic from it. The basic method here is the doStep (and the methods it calls), which implements the SUOTA upload procedure. The implementation depends on notifications about BLE events from SUOTAServiceManager/BluetoothManager and on the SUOTAServiceManager operation API. It also depends on configuration options set by previous components like the firmware file, flash parameters, block size.
谢谢,PM_DIALOG.
我还希望获得最新的Suota iOS应用程序的源代码。
Thanks!
你好,
应遵循该过程以下载iOS苏格达iOS移动应用程序的源代码:
Visit our portal pagehttps://support.dialog-semiconductor.com/然后输入“连接:蓝牙低能量和802.15.4”。从顶部菜单栏单击“产品”,然后选择“DA14580”。雷电竞官网登录在“软件和工具”窗口中,点击“Mobile”标签,然后您将能够找到所有可用的移动应用程序。雷竞技安卓下载请转到OTA应用程序,您会发现雷竞技安卓下载SUOTA - Source Code (Software update over the air) - Android. Be aware that you have to accept the Software License Agreement (SLA) first. Please, try to download it and hit into the padlock that will appear from the download. After that you will have to agree with the License Agreement and the you should wait until your access will be granted. If you found the procedure described useful, please mark the answer as accepted.
谢谢,PM_DIALOG.