2
2
<a name =" DeviceInfo_Plugin " ></a >
3
3
# DeviceInfo Plugin
4
4
5
- ** Version: [ 1.0 .0] ( ) **
5
+ ** Version: [ 1.1 .0] ( https://github.com/rdkcentral/rdkservices/blob/main/DeviceInfo/CHANGELOG.md ) **
6
6
7
7
A DeviceInfo plugin for Thunder framework.
8
8
@@ -17,7 +17,7 @@ A DeviceInfo plugin for Thunder framework.
17
17
<a name =" Abbreviation,_Acronyms_and_Terms " ></a >
18
18
# Abbreviation, Acronyms and Terms
19
19
20
- [[ Refer to this link] ( overview /aat.md)]
20
+ [[ Refer to this link] ( userguide /aat.md)]
21
21
22
22
<a name =" Description " ></a >
23
23
# Description
@@ -417,6 +417,8 @@ DeviceInfo interface properties:
417
417
| [ socketinfo] ( #socketinfo ) <sup >RO</sup > | Socket information |
418
418
| [ firmwareversion] ( #firmwareversion ) <sup >RO</sup > | Versions maintained in version |
419
419
| [ serialnumber] ( #serialnumber ) <sup >RO</sup > | Serial number set by manufacturer |
420
+ | [ releaseversion] ( #releaseversion ) <sup >RO</sup > | Release version of Image |
421
+ | [ chipset] ( #chipset ) <sup >RO</sup > | Chipset used for this device |
420
422
| [ modelid] ( #modelid ) <sup >RO</sup > | Device model number or SKU |
421
423
| [ make] ( #make ) <sup >RO</sup > | Device manufacturer |
422
424
| [ modelname] ( #modelname ) <sup >RO</sup > | Friendly device model name |
@@ -703,6 +705,102 @@ No Events
703
705
}
704
706
```
705
707
708
+ <a name =" releaseversion " ></a >
709
+ ## * releaseversion*
710
+
711
+ Provides access to the release version of Image. If unable to find the Release version default value is 99.99.0.0.
712
+
713
+ > This property is ** read-only** .
714
+
715
+ ### Events
716
+
717
+ No Events
718
+
719
+ ### Value
720
+
721
+ | Name | Type | Description |
722
+ | :-------- | :-------- | :-------- |
723
+ | (property) | object | Release version of Image. If unable to find the Release version default value is 99.99.0.0 |
724
+ | (property).releaseversion | string | |
725
+
726
+ ### Errors
727
+
728
+ | Code | Message | Description |
729
+ | :-------- | :-------- | :-------- |
730
+ | 1 | ``` ERROR_GENERAL ``` | General error |
731
+
732
+ ### Example
733
+
734
+ #### Get Request
735
+
736
+ ``` json
737
+ {
738
+ "jsonrpc" : " 2.0" ,
739
+ "id" : 42 ,
740
+ "method" : " DeviceInfo.releaseversion"
741
+ }
742
+ ```
743
+
744
+ #### Get Response
745
+
746
+ ``` json
747
+ {
748
+ "jsonrpc" : " 2.0" ,
749
+ "id" : 42 ,
750
+ "result" : {
751
+ "releaseversion" : " 8.2.0.0"
752
+ }
753
+ }
754
+ ```
755
+
756
+ <a name =" chipset " ></a >
757
+ ## * chipset*
758
+
759
+ Provides access to the chipset used for this device.
760
+
761
+ > This property is ** read-only** .
762
+
763
+ ### Events
764
+
765
+ No Events
766
+
767
+ ### Value
768
+
769
+ | Name | Type | Description |
770
+ | :-------- | :-------- | :-------- |
771
+ | (property) | object | Chipset used for this device |
772
+ | (property).chipset | string | |
773
+
774
+ ### Errors
775
+
776
+ | Code | Message | Description |
777
+ | :-------- | :-------- | :-------- |
778
+ | 1 | ``` ERROR_GENERAL ``` | General error |
779
+
780
+ ### Example
781
+
782
+ #### Get Request
783
+
784
+ ``` json
785
+ {
786
+ "jsonrpc" : " 2.0" ,
787
+ "id" : 42 ,
788
+ "method" : " DeviceInfo.chipset"
789
+ }
790
+ ```
791
+
792
+ #### Get Response
793
+
794
+ ``` json
795
+ {
796
+ "jsonrpc" : " 2.0" ,
797
+ "id" : 42 ,
798
+ "result" : {
799
+ "chipset" : " T962X3"
800
+ }
801
+ }
802
+ ```
803
+
706
804
<a name =" modelid " ></a >
707
805
## * modelid*
708
806
0 commit comments