Skip to content

Commit

Permalink
added a Version String to Plat Info
Browse files Browse the repository at this point in the history
  • Loading branch information
Haerteleric committed Feb 2, 2024
1 parent 34767bd commit 0977ee5
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/openthread-core-r21-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#define OPENTHREAD_CORE_SAMR21_CONFIG_H_

#include <stdint.h>
#include "platformVersion.h"

extern uint32_t __d_nv_mem_start;
extern uint32_t __d_nv_mem_end;
Expand All @@ -52,7 +53,7 @@ extern uint32_t __d_nv_mem_end;
* The platform-specific string to insert into the OpenThread version string.
*
*/
#define OPENTHREAD_CONFIG_PLATFORM_INFO "CONBEE2_RASPBEE2"
#define OPENTHREAD_CONFIG_PLATFORM_INFO "CONBEE2_RASPBEE2_0x" STR(OT_SAMR21_PLATFORM_VERSION_MAJOR) STR(OT_SAMR21_PLATFORM_VERSION_MAJOR) "0900"

/**
* @def OPENTHREAD_CONFIG_PLATFORM_FLASH_API_ENABLE
Expand Down
34 changes: 34 additions & 0 deletions src/platformVersion.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Copyright (c) 2017, The OpenThread Authors.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. Neither the name of the copyright holder 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 HOLDER 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.
*/

// this converts to string
#define STR_(X) #X
#define STR(X) STR_(X)

#define OT_SAMR21_PLATFORM_VERSION_MAJOR 01
#define OT_SAMR21_PLATFORM_VERSION_MINOR 02

0 comments on commit 0977ee5

Please sign in to comment.