OpenXC : Any updates on plans for IOS?

Hi Thomas,

We're actively investigating this as we'd love to able to support all platforms,
but I can't say for sure what will be possible or when yet.

Actually, this would be a great place for some help and advice from the community.
Are there any iOS experts in the group?
What do you think would need to happen to make the OpenXC vehicle interface compatible with iOS?

Namely, these are the problems and questions we have:

Bluetooth and USB I/O (besides the A/V protocol stuff)
requires support for the iPod Accessory Protocol (iAP),
and that requires an Apple authentication chip on the vehicle interface.

It's currently difficult to impossible to do this even for hobbyist-oriented parts
without an expensive and proprietary license agreement with Apple (the MFi program).

Bluetooth low energy doesn't require iAP,
but it would require a completely different Bluetooth module on the vehicle interface
(from either SparkFun's BlueSMIRF RN-42 based board that we recommend right now
for the chipKIT vehicle interface, or the RN-41 that we're using in the prototype
of a streamlined kit that we just unveiled).

There are very few (or no?) Android devices that support Bluetooth 4.0 or BLE right now, too,
so it would effectively mean the vehicle interface would fork to support iOS.

Lastly, the max throughput over BLE is much less than Bluetooth or USB,
so we would have to add throttling to the data stream to intelligently decide
which data elements should be allowed through.

A vehicle that implements every OpenXC data point at the frequencies specified
on the OpenXC site right now runs at ~38KB/s.

Granted, some of the frequencies could be decreased without too much practical effect
on applications (torque at 60Hz is likely more than most applications need),
but restricting data is counter to our goals of opening up as much as possible.

We are trying to add more signals all of the time, and if we're fighting a ~35KB/s max throughput
on BLE it would be unfortunate (but not a dealbreaker).

If we were somehow able to get the data into iOS (e.g. over wifi, since the chipKIT-translator does
have an Ethernet port and could be hooked up to wifi router),
it's not clear what is the best way to keep the data stream alive and present the data to applications.

The Android library for OpenXC depends quite a bit on Android's freedom and flexibility
with background services.

We have one background service running in a remote process to manage the connection to the vehicle,
and the data stream is multiplex to any and all OpenXC-enabled apps running on the device.

With iOS the focus on foreground app performance means that background apps are significantly
restricted and killed off after a relatively short time.

From our own iOS experience and from our consultations with a few other experts,
the best suggestion seems to be that each OpenXC application in iOS would need
to manage its own connection to the vehicle interface,
and no more than 1 could be running at any time.

As soon as you switch away from an OpenXC data logging application,
for example to check an e-mail or switch music tracks, the data stream would stop.

That's a significant blocker for many applications.
That said, we have been focused almost exclusively on Android for the last year,
and there seem to be some applications out there that manage
to keep a data stream going in the background - if anyone has ideas on that, please speak up!

Chris

Thanks for clarifying the challenges in bringing OpenXC to the iOS platform.
I think you're okay with iOS background processes (there are a few ways
to bypass the 10-minute limit on running in the background)
so perhaps a possible way to work it would be the Ethernet/Wifi method,
but I agree that's a kludge at best.

As for the iPod Accessory Protocol (iAP), I don't think the license agreement
is expensive as you think, especially for an OpenSource project.

And even so... aren't you partially funded by Ford Motor Company?!? :)

There's a team of students at Carnegie Mellon University's Silicon Valley campus
who are working on an iOS port at the moment (hi Mari and Albert!)
and they recently hit a stumbling block - it seems that
even if you have iAP enabled Bluetooth hardware, there is no facility to use
the Serial Port Profile (SPP) from iOS!

That's what the current VI uses and without some sort of workaround,
it seems like Bluetooth 3.0 on iOS is a dead end.
Anyone have any insight?
Can we jam data through the HID profile at a reasonable data rate?

Chris

In terms of iOS, the best method would be Bluetooth low energy,
as this doesn't require the hardware to have an apple auth chip.
Data rates aren't great but you probably don't need much.
Thanks.

Do "Wireless interface" of BT and BLE support SPP?
Would you explain how to inquiry OBDII status by bluetooth protocol?
If we can achieve this by sending JSON format diagnostic request?

BLE does not support SPP as a standard. SPP is BT classic.
We use SPP on BT Classic. We use a generic GATT on BLE.
Both use the openxc-message-format to send/receive commands/data.

OpenXC : Any updates on plans for IOS?的更多相关文章

  1. App Store审核被拒的23个理由

    原文地址 iOS 应用提交审核要持续一周或者更久,在提交之前,我们一定要进行「自我审查」,避免被拒.ASO100 为大家收集整理了2015年 App Store 审核被拒的23个理由,并且附上官方拒绝 ...

  2. AppStore审核

    应用被拒分为两种:Binary Rejected 和 Metadata Rejected.前者需要重新上传应用并且重新排队,后者只需要修改信息,不需要重新上传应用. 1.应用内包含检查更新功能 iOS ...

  3. 提交AppStore被拒原因总结

    (1)Information Needed We began the review of your app but aren’t able to continue because we need ad ...

  4. 苹果拒绝App内部使用版本检测功能

    10.6 - Apple and our customers place a high value on simple, refined, creative, well thought through ...

  5. Expo大作战(四)--快速用expo构建一个app,expo中的关键术语

    简要:本系列文章讲会对expo进行全面的介绍,本人从2017年6月份接触expo以来,对expo的研究断断续续,一路走来将近10个月,废话不多说,接下来你看到内容,讲全部来与官网 我猜去全部机翻+个人 ...

  6. 新提交审核app保留检查更新入口将被拒绝

    3月起要求关闭所有App内的检查更新功能,苹果App Store将向用户自动提示更新,新提交审核版本如果保留检查更新入口审核时将被拒绝,请各产品团队重点关注. 10.6 - Apple and our ...

  7. 关于iOS后台问题( 一 )(ios后台刷新,后台定位,后台下载,真后台)

    关于iOS的后台,以下引用一些文段进行一下脑补,请同学们大致看一下,有个基础,原文出处 -------------------------------------------------------- ...

  8. iOS开发之表视图爱上CoreData

    在接触到CoreData时,感觉就是苹果封装的一个ORM.CoreData负责在Model的实体和sqllite建立关联,数据模型的实体类就相当于Java中的JavaBean, 而CoreData的功 ...

  9. 那些年一起用过的iOS开发利器之Parse

    阅读此文章需要对Objective-C和iOS有一定的了解,完全没有基础的朋友请先阅读<让不懂编程的人爱上iPhone开发>系列教程. 什么是后台服务(back-end service)? ...

随机推荐

  1. Python_面向对象_类2

    类的几个装饰器方法: @classmethod (类方法):使之无法访问实例变量 class Animal(object): def __init__(self, name): self.name = ...

  2. OPENSSL生成SSL自签证书

    OPENSSL生成SSL自签证书 目前,有许多重要的公网可以访问的网站系统(如网银系统)都在使用自签SSL证书,即自建PKI系统颁发的SSL证书,而不是部署支持浏览器的SSL证书. 支持浏览器的SSL ...

  3. BZOJ3622 已经没有什么好害怕的了 动态规划 容斥原理 组合数学

    原文链接https://www.cnblogs.com/zhouzhendong/p/9276479.html 题目传送门 - BZOJ3622 题意 给定两个序列 $a,b$ ,各包含 $n$ 个数 ...

  4. BZOJ1066 [SCOI2007]蜥蜴 网络流 最大流 SAP

    由于本题和HDU2732几乎相同,所以读者可以看-> HDU2732题解传送门: http://www.cnblogs.com/zhouzhendong/p/8362002.html

  5. PAT (Basic Level) Practise - 换个格式输出整数

    题目链接:https://www.patest.cn/contests/pat-b-practise/1006 1006. 换个格式输出整数 (15) 时间限制 400 ms 内存限制 65536 k ...

  6. springboot拦截器中获取配置文件值

    package com.zhx.web.interceptor; import com.zhx.util.other.IpUtil; import org.slf4j.Logger; import o ...

  7. win10安装Oracle11g,出现INS-13001环境不满足最低要求问题

    今天安装Oracle11g,出现INS-13001环境不满足最低要求问题: 解决方法 在安装时点击setup.exe之后,出现了:[INS-13001]环境不满足最低要求 这时,打开你的解压后的dat ...

  8. Django之setting文件

    Django之setting文件 转载:https://www.jb51.net/article/128678.htm 目录 设置语言.时区 app路径 数据库配置 静态文件配置 中间件 sessio ...

  9. jarvis OJ WEB题目writeup

    0x00前言 发现一个很好的ctf平台,题目感觉很有趣,学习了一波并记录一下 https://www.jarvisoj.com 0x01 Port51 题目要求是用51端口去访问该网页,注意下,要用具 ...

  10. notepad++ 注释

    在用notepad++进行代码编辑的过程中,总感觉还是有keil那样可以进行多行注释的快捷方式方便,其实notepad++也可以进行单行.多行.区块注释和取消注释的....... 快捷键如下: 单行. ...