| 123456789101112131415161718192021222324252627282930313233 |
- //
- // TransmitterCommand.swift
- // xDrip5
- //
- // Created by Nathan Racklyeft on 11/22/15.
- // Copyright © 2015 Nathan Racklyeft. All rights reserved.
- //
- import Foundation
- /// A data sequence written to the transmitter
- protocol TransmitterTxMessage {
- /// The data to write
- var data: Data { get }
- }
- protocol RespondableMessage: TransmitterTxMessage {
- associatedtype Response: TransmitterRxMessage
- }
- /// A data sequence received by the transmitter
- protocol TransmitterRxMessage {
- init?(data: Data)
- }
|