This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
152 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
* @brief Device name used to register at the LwM2M server | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_NAME | ||
#define CONFIG_LWM2M_DEVICE_NAME "urn:t8i:dev:<SOMETHING>" | ||
#endif | ||
|
||
/** | ||
* @brief Device object manufacturer string | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_MANUFACTURER | ||
#define CONFIG_LWM2M_DEVICE_MANUFACTURER "Sose 2024" | ||
#endif | ||
|
||
/** | ||
* @brief Device object model. | ||
* | ||
* @note Defaults to the board name | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_MODEL | ||
#define CONFIG_LWM2M_DEVICE_MODEL RIOT_BOARD | ||
#endif | ||
|
||
/** | ||
* @brief Device object serial number | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_SERIAL | ||
#define CONFIG_LWM2M_DEVICE_SERIAL "000000" | ||
#endif | ||
|
||
/** | ||
* @brief Device object firmware version | ||
* | ||
* @note Defaults to the running RIOT version | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_FW_VERSION | ||
#define CONFIG_LWM2M_DEVICE_FW_VERSION RIOT_VERSION | ||
#endif | ||
|
||
/** | ||
* @brief Device object device type | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_TYPE | ||
#define CONFIG_LWM2M_DEVICE_TYPE "Teamagotchi" | ||
#endif | ||
|
||
/** | ||
* @brief Device object hardware version | ||
* | ||
* @note Defaults to the board name | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_HW_VERSION | ||
#define CONFIG_LWM2M_DEVICE_HW_VERSION RIOT_BOARD | ||
#endif | ||
|
||
/** | ||
* @brief Device object software version | ||
* | ||
* @note Defaults to the running RIOT version | ||
*/ | ||
#ifndef CONFIG_LWM2M_DEVICE_SW_VERSION | ||
#define CONFIG_LWM2M_DEVICE_SW_VERSION RIOT_VERSION | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters