]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - apps/tidep0084.git/blobdiff - example/collector/llc.proto
Updated Sensor To Cloud design to have an easy to use setup GUI on the
[apps/tidep0084.git] / example / collector / llc.proto
diff --git a/example/collector/llc.proto b/example/collector/llc.proto
deleted file mode 100644 (file)
index 042db4c..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-/******************************************************************************
-
- @file llc.proto
-
- @brief TIMAC 2.0 - Protobuf definition for items in the llc.h file
-
- Group: WCS LPC
- $Target Devices: Linux: AM335x, Embedded Devices: CC1310, CC1350$
-
- ******************************************************************************
- $License: BSD3 2016 $
-  
-   Copyright (c) 2015, Texas Instruments Incorporated
-   All rights reserved.
-  
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions
-   are met:
-  
-   *  Redistributions of source code must retain the above copyright
-      notice, this list of conditions and the following disclaimer.
-  
-   *  Redistributions in binary form must reproduce the above copyright
-      notice, this list of conditions and the following disclaimer in the
-      documentation and/or other materials provided with the distribution.
-  
-   *  Neither the name of Texas Instruments Incorporated nor the names of
-      its contributors may be used to endorse or promote products derived
-      from this software without specific prior written permission.
-  
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-   THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-   PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
-   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-   OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-   OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-   EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- ******************************************************************************
- $Release Name: TI-15.4Stack Linux x64 SDK ENG$
- $Release Date: Mar 08, 2017 (2.01.00.10)$
- *****************************************************************************/
-
-syntax = "proto2";
-
-import "api_mac.proto";
-
-/*! Network Information */
-message Llc_netInfo
-{
-    /*! true if network is frequency hopping */
-       required     uint32 fh = 1;
-    /*! Channel - non FH */
-    required uint32 channel = 2;
-    /* Address information */
-    required     ApiMac_deviceDescriptor devInfo = 3;
-}
-
-/* Structure to store a device list entry in NV */
-message Llc_deviceListItem
-{
-    /* Address information */
-    required ApiMac_deviceDescriptor devInfo = 1;
-    /* Device capability */
-    required ApiMac_capabilityInfo capInfo = 2;
-    /* RX frame counter */
-    required uint32 rxFrameCounter = 3;
-}
-
-//  ========================================
-//  Texas Instruments Micro Controller Style
-//  ========================================
-//  Local Variables:
-//  mode: protobuf
-//  tab-width: 4
-//  c-basic-offset: 4
-//  indent-tabs-mode: nil
-//  End:
-//  vim:set  tabstop=4 shiftwidth=4 expandtab=true
-