//***************************************************************************** // (C) Automotive Lighting Reutlingen GmbH // Tuebinger Strasse 123, 72762 Reutlingen, Germany // // Automotive Lighting Reutlingen GmbH owns all the rights to this work. // This work shall not be copied, reproduced, used, modified, transferred // or its information shall not be disclosed without the prior written // authorization of Automotive Lighting Reutlingen GmbH. //***************************************************************************** //----------------------------------------------------------------------------- /// \file ShaData.c /// /// \brief /// /// \descr /// /// \author Cosmin Cojocaru (f11501c) /// mailTo:constantin-cosmin.cojocaru(at)marelli.com //----------------------------------------------------------------------------- //============================================================================= // includes //============================================================================= #include #include "ShaData.h" //============================================================================= // constants //============================================================================= const tEcuMountingSide EcuMountingSide_LEFT = { { 0x01, 0x01, 0xFE, 0xFE } }; const tEcuMountingSide EcuMountingSide_RIGHT = { { 0x02, 0x02, 0xFD, 0xFD } }; const tEcuMountingSide EcuMountingSide_UNKNOWN = { { 0x03, 0x03, 0xFC, 0xFC } }; //============================================================================= // shared data (commonly used by Bootmanager, Bootloader, Application) //============================================================================= // PRQA S 851 1 // tShaData __attribute__ ((section (".SHA_DATA_LR"))) ShaData; tShaDataWD __attribute__((section(".SHA_DATA_WD"))) ShaDataWD;