Skip to content

Commit

Permalink
Merge pull request #88 from openxc/Openxc_protofile
Browse files Browse the repository at this point in the history
Openxc protofile
  • Loading branch information
RanjaniOS authored May 9, 2022
2 parents b1be1a5 + e97ed04 commit b05248c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 20 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.mkd
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# OpenXC iOS App Demo Changelog
# OpenXC iOS App Demo Change log

## v7.0.0

* Feature: Integrated Apple protobuf .
* Feature: Integrated protobuf 3 which is latest protobuf .
* Feature: Integrated Getvin command .
* Feature: Integrated Diagnostic stitch messages for JSON mode.
* UI: Added GET VIN UI on landing page as well as on the control command page.
* UI: Support the UI for multiple Device.
* Improvement: Code refactor and bug fixes.
* Improvement: Support for iOS 15.
* Improvement: Support for Xcode 13.3.
* Improvement: Support for swift 5.

Known Issue: Diagnostic messages currently do not work in protobuf mode .


## v6.2.0

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ This framework is part of the OpenXC project. This iOS framework contains the to
OpenXC iOS framework for use with the C5 BLE device. To run the example project, clone the repo, and run `pod install` from the Example directory first.

## OpenXC-iOS-Library-Version
* V6.0.0
* V7.0.0

## Supported versions:
* iOS - up to 13.3
* XCode - up to 11.4
* Swift - Swift5
* iOS - up to 15.0
* XCode - up to 13.3
* Swift - Swift 5

Note: TravisCI build run will work only till XCode 10.2 -iOS 12.0 (https://github.com/travis-ci/travis-ci/issues/7031) but the framework supports XCode 10.2 and iOS 12

Expand Down
Binary file modified StepsToBuildOpenXCiOSFrameworkAndDemoApp.docx
Binary file not shown.
16 changes: 1 addition & 15 deletions openxcframework/VehicleManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -800,21 +800,7 @@ open class VehicleManager: NSObject {
rsp.event = msg.simpleMessage.event.numericValue as AnyObject
}
}
/*if msg.simpleMessage.value.stringValue.hasStringValue {
rsp.value = msg.simpleMessage.value.stringValue as AnyObject}
if msg.simpleMessage.value.hasBooleanValue {
rsp.value = msg.simpleMessage.value.booleanValue as AnyObject}
if msg.simpleMessage.value.hasNumericValue {
rsp.value = msg.simpleMessage.value.numericValue as AnyObject}
if msg.simpleMessage.hasEvent {
rsp.isEvented = true
if msg.simpleMessage.event.hasStringValue {
rsp.event = msg.simpleMessage.event.stringValue as AnyObject}
if msg.simpleMessage.event.hasBooleanValue {
rsp.event = msg.simpleMessage.event.booleanValue as AnyObject}
if msg.simpleMessage.event.hasNumericValue {
rsp.event = msg.simpleMessage.event.numericValue as AnyObject}
}*/

self.protoSimpleMsgCheck(rsp:rsp,name:name)

}
Expand Down

0 comments on commit b05248c

Please sign in to comment.