Skip to content

Commit

Permalink
Relocate the register based schemas.
Browse files Browse the repository at this point in the history
Indicate the correct mimetype and namespace for the register based 
schemas.
  • Loading branch information
timrulebosch committed Sep 7, 2021
1 parent da1a57e commit 4eca694
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,13 @@
// SPDX-License-Identifier: Apache-2.0
//***************************************************************************
//
// Interface Description for VDA Interface - Network Model - CAN
// Network Model Can - NMC - NMCA (flatbuffers file identifier)
// IDL for Automotive Bus - Register Interface - CAN
//
// IDL for Open Simulation Interface - Network Model - CAN
//
// Network Model Can - NMC - NMCA (flatbuffers file identifier)
// MIME type : application/x-open-simulation-interface-network-model; type=CAN;
//

namespace NetworkModels.CAN;
// MIME type : application/x-automotive-bus; interface=register; type=CAN;
// Flatbuffers file identifier : RICA


// FlatBuffers Types:
// 8 bit: byte ubyte bool
// 16 bit: short ushort
// 32 bit: int uint float
// 64 bit: long ulong double
namespace AutomotiveBus.RegisterInterface.CAN;


// L2 CAN Bus Model
Expand Down Expand Up @@ -118,5 +108,5 @@ table RegisterFile {


root_type RegisterFile;
file_identifier "NMCA";
file_identifier "RICA";
file_extension "can";
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,13 @@
// SPDX-License-Identifier: Apache-2.0
//***************************************************************************
//
// Interface Description for VDA Interface - Network Model - CAN
// Network Model Can - NMC - NMCA (flatbuffers file identifier)
//
// IDL for Open Simulation Interface - Network Model - Ethernet
//
// Network Model Ethernet - NMEN - NMEN (flatbuffers file identifier)
// MIME type : application/x-open-simulation-interface-network-model; type=Ethernet;
// IDL for Automotive Bus - Register Interface - Ethernet
//
// MIME type : application/x-automotive-bus; interface=register; type=Ethernet;
// Flatbuffers file identifier : RIEN

namespace NetworkModels.Ethernet;

namespace AutomotiveBus.RegisterInterface.Ethernet;


// Ethernet Bus Model
Expand Down Expand Up @@ -75,5 +71,5 @@ table RegisterFile {


root_type RegisterFile;
file_identifier "NMEN";
file_identifier "RIEN";
file_extension "ethernet";
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,13 @@
// SPDX-License-Identifier: Apache-2.0
//***************************************************************************
//
// Interface Description for VDA Interface - Network Model - CAN
// Network Model Can - NMC - NMCA (flatbuffers file identifier)
// IDL for Automotive Bus - Register Interface - FlexRay
//
// IDL for Open Simulation Interface - Network Model - FlexRay
//
// Network Model FlexRay - NMF - NMFR (flatbuffers file identifier)
// MIME type : application/x-open-simulation-interface-network-model; type=FlexRay;
//
// TODO: Refine to match FlexRay Transceiver/Chipset Specifications.
// MIME type : application/x-automotive-bus; interface=register; type=FlexRay;
// Flatbuffers file identifier : RIFR

namespace NetworkModels.FlexRay;

namespace AutomotiveBus.RegisterInterface.FlexRay;


// L2 FlexRay Bus Model
Expand Down Expand Up @@ -53,5 +48,5 @@ table RegisterFile {


root_type RegisterFile;
file_identifier "NMFR";
file_identifier "RIFR";
file_extension "flexray";

0 comments on commit 4eca694

Please sign in to comment.